nixpkgs/test/boot-stage-2.nix
Eelco Dolstra 624fe3f2d4 * Automatically bring up the network devices and start dhclient on
them.

svn path=/nixu/trunk/; revision=6976
2006-11-07 22:45:42 +00:00

23 lines
434 B
Nix

{ genericSubstituter, shell, coreutils, findutils
, utillinux, kernel, sysklogd, mingetty, udev
, module_init_tools, nettools, dhcp
, path ? []
}:
genericSubstituter {
src = ./boot-stage-2-init.sh;
isExecutable = true;
inherit shell kernel sysklogd mingetty;
path = [
coreutils
findutils
utillinux
udev
module_init_tools
nettools
dhcp
];
extraPath = path;
makeDevices = ./make-devices.sh;
}