2007-03-06 00:45:33 +00:00
|
|
|
{ substituteAll, writeText, coreutils
|
2006-12-10 22:29:44 +00:00
|
|
|
, utillinux, kernel, udev, upstart
|
2006-12-09 19:25:23 +00:00
|
|
|
, activateConfiguration
|
2006-11-13 11:41:27 +00:00
|
|
|
|
2008-01-24 16:56:09 +00:00
|
|
|
, # Whether the root device is read-only and should be made writable
|
|
|
|
# through a unionfs.
|
|
|
|
isLiveCD
|
2006-12-10 22:29:44 +00:00
|
|
|
|
|
|
|
, # Path for Upstart jobs. Should be quite minimal.
|
|
|
|
upstartPath
|
2007-03-06 00:45:33 +00:00
|
|
|
|
|
|
|
, # User-supplied command to be run just before Upstart is started.
|
|
|
|
bootLocal ? ""
|
2006-11-04 00:01:13 +00:00
|
|
|
}:
|
|
|
|
|
2006-12-11 00:52:36 +00:00
|
|
|
substituteAll {
|
|
|
|
src = ./boot-stage-2-init.sh;
|
|
|
|
isExecutable = true;
|
2008-01-24 16:56:09 +00:00
|
|
|
inherit kernel upstart isLiveCD activateConfiguration upstartPath;
|
2006-12-11 00:52:36 +00:00
|
|
|
path = [
|
2006-11-04 00:01:13 +00:00
|
|
|
coreutils
|
|
|
|
utillinux
|
2006-11-07 22:05:27 +00:00
|
|
|
udev
|
2006-11-19 18:16:29 +00:00
|
|
|
upstart
|
2006-11-04 00:01:13 +00:00
|
|
|
];
|
2007-05-24 15:50:17 +01:00
|
|
|
bootLocal = writeText "local-cmds" bootLocal;
|
2006-11-04 00:01:13 +00:00
|
|
|
}
|