mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
8a43fcd57c
to /). * Stage 2: use sysvinit to create a bunch of mingetty's on virtual consoles 1-6. Show a nice welcoming message. Start syslogd and log everything to tty10. svn path=/nixu/trunk/; revision=6963
16 lines
314 B
Nix
16 lines
314 B
Nix
{ genericSubstituter, shell, coreutils
|
|
, utillinux, kernel, sysklogd, mingetty
|
|
, path ? []
|
|
}:
|
|
|
|
genericSubstituter {
|
|
src = ./boot-stage-2-init.sh;
|
|
isExecutable = true;
|
|
inherit shell kernel sysklogd mingetty;
|
|
path = [
|
|
coreutils
|
|
utillinux
|
|
];
|
|
extraPath = path;
|
|
makeDevices = ./make-devices.sh;
|
|
}
|