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:
parent
50dca38b26
commit
d37b642769
|
@ -256,6 +256,7 @@ import ./generic.nix (
|
|||
|
||||
features.iwlwifi = true;
|
||||
features.efiBootStub = true;
|
||||
features.needsCifsUtils = true;
|
||||
}
|
||||
|
||||
// removeAttrs args ["extraConfig"]
|
||||
|
|
|
@ -257,6 +257,7 @@ import ./generic.nix (
|
|||
|
||||
features.iwlwifi = true;
|
||||
features.efiBootStub = true;
|
||||
features.needsCifsUtils = true;
|
||||
}
|
||||
|
||||
// removeAttrs args ["extraConfig"]
|
||||
|
|
Loading…
Reference in a new issue