nixpkgs/test/boot-stage-2.nix
Eelco Dolstra da8cec4795 * Use udevtrigger to create device nodes for all known devices.
* Plug and play: load kernel modules for all supported PCI devices
  automatically.

svn path=/nixu/trunk/; revision=6975
2006-11-07 22:05:27 +00:00

21 lines
396 B
Nix

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