2006-11-02 23:48:01 +01:00
|
|
|
# This Nix expression builds the script that performs the first stage
|
|
|
|
# of booting the system: it loads the modules necessary to mount the
|
|
|
|
# root file system, then calls /init in the root file system to start
|
|
|
|
# the second boot stage. The closure of the result of this expression
|
|
|
|
# is supposed to be put into an initial RAM disk (initrd).
|
|
|
|
|
2006-12-10 23:29:44 +01:00
|
|
|
{ substituteAll, staticShell, staticTools
|
2006-11-03 14:35:02 +01:00
|
|
|
, module_init_tools, extraUtils, modules
|
2006-11-12 19:48:47 +01:00
|
|
|
|
|
|
|
, # Whether to find root device automatically using its label.
|
|
|
|
autoDetectRootDevice
|
|
|
|
|
|
|
|
, # If not scanning, the root must be specified explicitly.
|
|
|
|
rootDevice
|
|
|
|
|
|
|
|
# If scanning, we need a disk label.
|
|
|
|
, rootLabel
|
2006-11-13 12:41:27 +01:00
|
|
|
|
|
|
|
, # The path of the stage 2 init to call once we've mounted the root
|
|
|
|
# device.
|
|
|
|
stage2Init ? "/init"
|
2006-11-03 01:36:08 +01:00
|
|
|
}:
|
2006-11-02 23:48:01 +01:00
|
|
|
|
2006-12-10 23:29:44 +01:00
|
|
|
substituteAll {
|
2006-11-02 23:48:01 +01:00
|
|
|
src = ./boot-stage-1-init.sh;
|
|
|
|
isExecutable = true;
|
2006-12-10 23:29:44 +01:00
|
|
|
inherit staticShell modules;
|
2006-12-11 17:10:23 +01:00
|
|
|
inherit autoDetectRootDevice;
|
|
|
|
rootDevice = if !autoDetectRootDevice then rootDevice else "";
|
|
|
|
rootLabel = if autoDetectRootDevice then rootLabel else "";
|
2006-11-02 23:48:01 +01:00
|
|
|
path = [
|
|
|
|
staticTools
|
2006-11-03 01:36:08 +01:00
|
|
|
module_init_tools
|
2006-11-03 14:35:02 +01:00
|
|
|
extraUtils
|
2006-11-02 23:48:01 +01:00
|
|
|
];
|
2006-11-03 00:58:06 +01:00
|
|
|
makeDevices = ./make-devices.sh;
|
2006-11-13 12:41:27 +01:00
|
|
|
|
|
|
|
# We only want the path of the stage 2 init, we don't want it as a
|
|
|
|
# dependency (since then it the stage 2 init would end up in the
|
|
|
|
# initrd).
|
|
|
|
stage2Init = toString stage2Init; # !!! doesn't work
|
2006-11-02 23:48:01 +01:00
|
|
|
}
|