3514c5658b
virtual consoles 0 and 1. To shutdown, do `init 0' (`halt' and `shutdown' don't work because they call /sbin/init). svn path=/nixu/trunk/; revision=803
12 lines
298 B
Nix
12 lines
298 B
Nix
{stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs, nix}:
|
|
|
|
derivation {
|
|
name = "boot";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
boot = ./boot.sh;
|
|
halt = ./halt.sh;
|
|
login = ./login.sh;
|
|
inherit stdenv bash coreutils findutils utillinux sysvinit e2fsprogs nix;
|
|
}
|