Minor reorganization

This commit is contained in:
Shea Levy 2012-08-07 18:09:08 -04:00
parent d9c03b6447
commit c39f493ebb
2 changed files with 2 additions and 1 deletions

View File

@ -228,8 +228,8 @@ let kernel = config.boot.kernelPackages.kernel; in
# The config options that all modules can depend upon # The config options that all modules can depend upon
system.requiredKernelConfig = with config.lib.kernelConfig; [ system.requiredKernelConfig = with config.lib.kernelConfig; [
# !!! Should this really be needed?
(isYes "MODULES") (isYes "MODULES")
(isYes "BLK_DEV_INITRD")
(isYes "BINFMT_ELF") (isYes "BINFMT_ELF")
]; ];

View File

@ -323,5 +323,6 @@ in {
system.requiredKernelConfig = with config.lib.kernelConfig; [ system.requiredKernelConfig = with config.lib.kernelConfig; [
(isYes "TMPFS") (isYes "TMPFS")
(isYes "BLK_DEV_INITRD")
]; ];
} }