2007-03-05 16:45:33 -08:00
|
|
|
{ substituteAll, writeText, coreutils
|
2006-12-10 14:29:44 -08:00
|
|
|
, utillinux, kernel, udev, upstart
|
2006-12-09 11:25:23 -08:00
|
|
|
, activateConfiguration
|
2006-11-13 03:41:27 -08:00
|
|
|
|
|
|
|
, # Whether the root device is root only. If so, we'll mount a
|
|
|
|
# ramdisk on /etc, /var and so on.
|
|
|
|
readOnlyRoot
|
2006-12-10 14:29:44 -08:00
|
|
|
|
|
|
|
, # Path for Upstart jobs. Should be quite minimal.
|
|
|
|
upstartPath
|
2007-03-05 16:45:33 -08:00
|
|
|
|
|
|
|
, # User-supplied command to be run just before Upstart is started.
|
|
|
|
bootLocal ? ""
|
2006-11-03 16:01:13 -08:00
|
|
|
}:
|
|
|
|
|
2006-12-10 16:52:36 -08:00
|
|
|
substituteAll {
|
|
|
|
src = ./boot-stage-2-init.sh;
|
|
|
|
isExecutable = true;
|
|
|
|
inherit kernel upstart readOnlyRoot activateConfiguration upstartPath;
|
|
|
|
path = [
|
2006-11-03 16:01:13 -08:00
|
|
|
coreutils
|
|
|
|
utillinux
|
2006-11-07 14:05:27 -08:00
|
|
|
udev
|
2006-11-19 10:16:29 -08:00
|
|
|
upstart
|
2006-11-03 16:01:13 -08:00
|
|
|
];
|
2007-05-24 07:50:17 -07:00
|
|
|
bootLocal = writeText "local-cmds" bootLocal;
|
2006-11-03 16:01:13 -08:00
|
|
|
}
|