1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

newer kernels need cifs-utils to mount CIFS filesystems

the kernel itself (and busybox's cifs mount code) are no longer able
to do this in some/most cases and will error out saying:
"CIFS VFS: connecting to DFS root not implemented yet""

Nixos' qemu-vm target is hurt by this, as it wants to mount /nix/store
via cifs very early in the boot process.

this commit just marks the problematic kernels.
An associated commit in nixos will use this info to fix the problem.
This commit is contained in:
Mathijs Kwik 2012-08-30 18:04:55 +02:00
parent 50dca38b26
commit d37b642769
2 changed files with 2 additions and 0 deletions

View file

@ -256,6 +256,7 @@ import ./generic.nix (
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
}
// removeAttrs args ["extraConfig"]

View file

@ -257,6 +257,7 @@ import ./generic.nix (
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
}
// removeAttrs args ["extraConfig"]