1cec62ba5d
at the end of stage 2. * Stage 2: set MODULE_DIR to point at a full module tree. svn path=/nixu/trunk/; revision=6954
16 lines
275 B
Nix
16 lines
275 B
Nix
{ genericSubstituter, shell, coreutils
|
|
, utillinux, kernel, path ? []
|
|
}:
|
|
|
|
genericSubstituter {
|
|
src = ./boot-stage-2-init.sh;
|
|
isExecutable = true;
|
|
inherit shell kernel;
|
|
path = [
|
|
coreutils
|
|
utillinux
|
|
];
|
|
extraPath = path;
|
|
makeDevices = ./make-devices.sh;
|
|
}
|