* No longer needed - folded into the mingetty Upstart job.

svn path=/nixpkgs/trunk/; revision=7301
This commit is contained in:
Eelco Dolstra 2006-12-11 00:51:39 +00:00
parent 7dfbf0eba7
commit 52241b5b0f
3 changed files with 0 additions and 27 deletions

View File

@ -1,12 +0,0 @@
source $stdenv/setup
#. $makeWrapper
ensureDir "$(dirname $out)"
ensureDir "$(dirname $out/sbin/mingetty)"
cat > $out/sbin/mingetty << END
#! $SHELL -e
exec $mingetty/sbin/mingetty --loginprog=$shadowutils/bin/login "\$@"
END
chmod +x $out/sbin/mingetty

View File

@ -1,11 +0,0 @@
{stdenv, mingetty, shadowutils}:
stdenv.mkDerivation {
name = mingetty.name;
builder = ./builder.sh;
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
inherit mingetty shadowutils;
}

View File

@ -2160,10 +2160,6 @@ rec {
inherit fetchurl stdenv;
};
mingettyWrapper = import ../os-specific/linux/mingetty-wrapper {
inherit stdenv mingetty shadowutils;
};
mkinitrd = import ../os-specific/linux/mkinitrd {
inherit fetchurl stdenv;
popt = popt110;