From: Michael Tremer Date: Sun, 17 May 2009 08:04:18 +0000 (+0200) Subject: We do not need the dev nodes created here... images-core will do that. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddd0c4ac76a88c1eb15baf80c0ad787ed650e5f8;p=ipfire-3.x.git We do not need the dev nodes created here... images-core will do that. --- diff --git a/lfs/stage2 b/lfs/stage2 index 3aebd2578..0576b1f32 100644 --- a/lfs/stage2 +++ b/lfs/stage2 @@ -91,20 +91,6 @@ $(OBJECT): $(objects) # Creating an empty mtab touch /etc/mtab - # This trick is necessary in order to create two devices in the target /dev - # rather than in the host /dev - mkdir -p /dev1 - mount --move /dev /dev1 - - # Make /dev/null and /dev/console - cd /dev && rm -f null console - cd /dev && mknod -m 0666 null c 1 3 - cd /dev && mknod -m 0600 console c 5 1 - - # Now move the target /dev to point back to the host /dev - mount --move /dev1 /dev - rm -fr /dev1 - # Config files for i in $$(find $(DIR_SRC)/config/etc/ -type f); do \ cp -vf $$i /etc; \