2006-11-07 22:05:27 +00:00
|
|
|
{ genericSubstituter, shell, coreutils, findutils
|
|
|
|
, utillinux, kernel, sysklogd, mingetty, udev
|
2006-11-07 22:45:42 +00:00
|
|
|
, module_init_tools, nettools, dhcp
|
2006-11-06 22:21:50 +00:00
|
|
|
, path ? []
|
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
|
|
|
}:
|
|
|
|
|
|
|
|
genericSubstituter {
|
|
|
|
src = ./boot-stage-2-init.sh;
|
|
|
|
isExecutable = true;
|
2006-11-13 11:41:27 +00:00
|
|
|
inherit shell kernel sysklogd mingetty readOnlyRoot;
|
2006-11-04 00:01:13 +00:00
|
|
|
path = [
|
|
|
|
coreutils
|
2006-11-07 22:05:27 +00:00
|
|
|
findutils
|
2006-11-04 00:01:13 +00:00
|
|
|
utillinux
|
2006-11-07 22:05:27 +00:00
|
|
|
udev
|
|
|
|
module_init_tools
|
2006-11-07 22:45:42 +00:00
|
|
|
nettools
|
|
|
|
dhcp
|
2006-11-04 00:01:13 +00:00
|
|
|
];
|
2006-11-04 13:25:10 +00:00
|
|
|
extraPath = path;
|
2006-11-04 00:01:13 +00:00
|
|
|
}
|