Skip to content

Commit

Permalink
Revert "mdadm: 3.3 -> 3.3.2".
Browse files Browse the repository at this point in the history
This reverts commit 7719f7f, again!

It prevents systems from booting, for two reasons:

  * The initrd size is going to explode, but I think this is not the
    REAL issue. We had that in 666cf99 already, which reverted this
    update already.
  * Another reason I don't yet know, which is the REAL issue. We need to
    investigate and fix that before attempting another update.

Because of that I've also added a small comment before the src attribute
to prevent further updates like this.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
  • Loading branch information
aszlig committed Apr 1, 2015
1 parent 1c39a47 commit 8664aea
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pkgs/os-specific/linux/mdadm/default.nix
@@ -1,11 +1,20 @@
{ stdenv, fetchurl, groff }:

stdenv.mkDerivation rec {
name = "mdadm-3.3.2";
name = "mdadm-3.3";

# WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
# Do NOT update this if you're not ABSOLUTELY certain that it will work.
# Please check the update using the NixOS VM test, BEFORE pushing:
# nix-build nixos/release.nix -A tests.installer.swraid.x86_64-linux
# Discussion:
# https://github.com/NixOS/nixpkgs/commit/7719f7f
# https://github.com/NixOS/nixpkgs/commit/666cf99
# https://github.com/NixOS/nixpkgs/pull/6006
# WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
src = fetchurl {
url = "mirror://kernel/linux/utils/raid/mdadm/${name}.tar.xz";
sha256 = "132vdvh3myjgcjn6i9w90ck16ddjxjcszklzkyvr4f5ifqd7wfhg";
url = "mirror://kernel/linux/utils/raid/mdadm/${name}.tar.bz2";
sha256 = "0igdqflihiq1dp5qlypzw0xfl44f4n3bckl7r2x2wfgkplcfa1ww";
};

nativeBuildInputs = [ groff ];
Expand Down

0 comments on commit 8664aea

Please sign in to comment.