2006-12-09 19:25:23 +00:00
|
|
|
{ genericSubstituter, shell, coreutils, findutils
|
|
|
|
, gnugrep, utillinux, kernel, udev, upstart
|
|
|
|
, activateConfiguration
|
2006-11-13 11:41:27 +00:00
|
|
|
|
|
|
|
, # Whether the root device is root only. If so, we'll mount a
|
|
|
|
# ramdisk on /etc, /var and so on.
|
|
|
|
readOnlyRoot
|
2006-11-04 00:01:13 +00:00
|
|
|
}:
|
|
|
|
|
2006-11-28 16:47:14 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
startPath = [
|
2006-11-04 00:01:13 +00:00
|
|
|
coreutils
|
2006-11-07 22:05:27 +00:00
|
|
|
findutils
|
2006-12-09 00:06:18 +00:00
|
|
|
gnugrep
|
2006-11-04 00:01:13 +00:00
|
|
|
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
|
|
|
];
|
2006-11-28 16:47:14 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
genericSubstituter {
|
|
|
|
src = ./boot-stage-2-init.sh;
|
|
|
|
isExecutable = true;
|
2006-12-09 19:25:23 +00:00
|
|
|
inherit shell kernel upstart readOnlyRoot activateConfiguration;
|
2006-11-28 16:47:14 +00:00
|
|
|
inherit startPath;
|
2006-11-04 00:01:13 +00:00
|
|
|
}
|