summary refs log tree commit diff
path: root/nixos/modules/system/boot/stage-1.nix
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-08-27 13:29:38 +0300
committerNikolay Amiantov <ab@fmap.me>2016-08-27 13:38:20 +0300
commit6efcfe03ae4ef426b77a6827243433b5296613a4 (patch)
treed71e9494714de0dd1d4c5e05aedfa2c35d58a9e7 /nixos/modules/system/boot/stage-1.nix
parent3f70fcd4c1512345a5a8a5e41da8a83839a1b16e (diff)
downloadnixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar.gz
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar.bz2
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar.lz
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar.xz
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.tar.zst
nixpkgs-6efcfe03ae4ef426b77a6827243433b5296613a4.zip
nixos filesystems: unify early filesystems handling
A new internal config option `fileSystems.<name>.early` is added to indicate
that the filesystem needs to be loaded very early (i.e. in initrd). They are
transformed to a shell script in `system.build.earlyMountScript` with calls to
an undefined `specialMount` function, which is expected to be caller-specific.
This option is used by stage-1, stage-2 and activation script to set up and
remount those filesystems.  Options for them are updated according to systemd
defaults.
Diffstat (limited to 'nixos/modules/system/boot/stage-1.nix')
-rw-r--r--nixos/modules/system/boot/stage-1.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index a5c05f3dbba..513c121347b 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -190,7 +190,9 @@ let
 
     inherit udevRules extraUtils modulesClosure;
 
-    inherit (config.boot) resumeDevice devSize runSize;
+    inherit (config.boot) resumeDevice;
+
+    inherit (config.system.build) earlyMountScript;
 
     inherit (config.boot.initrd) checkJournalingFS
       preLVMCommands preDeviceCommands postDeviceCommands postMountCommands preFailCommands kernelModules;