From 6c6d40452ff0fc735bc9abd8785cca52f70eebcf Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 19 Feb 2013 16:34:45 -0500 Subject: [PATCH] Stage 1 mounts securityfs, so require that in the kernel --- modules/system/boot/stage-1.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system/boot/stage-1.nix b/modules/system/boot/stage-1.nix index f78a5dda2d3b..92386440dd87 100644 --- a/modules/system/boot/stage-1.nix +++ b/modules/system/boot/stage-1.nix @@ -361,5 +361,6 @@ in { system.requiredKernelConfig = with config.lib.kernelConfig; [ (isYes "TMPFS") (isYes "BLK_DEV_INITRD") + (isYes "SECURITYFS") ]; }