diff options
-rw-r--r-- | bootscripts/ChangeLog | 3 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/mountvirtfs | 7 | ||||
-rw-r--r-- | chapter01/changelog.xml | 5 | ||||
-rw-r--r-- | packages.ent | 2 |
4 files changed, 12 insertions, 5 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index 752d41733..a2eb6c439 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,6 @@ +2012-05-30 Bruce Dubbs <bdubbs@linuxfromscratch.org> + * Copy all entries in /lib/udev/devices to /dev in mounvirtfs + 2012-05-24 Bruce Dubbs <bdubbs@linuxfromscratch.org> * Remove mkdir from mountvirtfs because fs is read only diff --git a/bootscripts/lfs/init.d/mountvirtfs b/bootscripts/lfs/init.d/mountvirtfs index 456e62479..fab73d5b6 100644 --- a/bootscripts/lfs/init.d/mountvirtfs +++ b/bootscripts/lfs/init.d/mountvirtfs @@ -53,12 +53,11 @@ case "${1}" in mount -n -o mode=0755,nosuid /dev || failed=1 fi + # Copy devices that Udev >= 155 doesn't handle to /dev + cp -a /lib/udev/devices/* /dev + ln -s /run/shm /dev/shm - # Copy the only static device node that Udev >= 155 doesn't - # handle to /dev - cp -a /lib/udev/devices/null /dev - (exit ${failed}) evaluate_retval exit $failed diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 02d0484c6..b44e0c75d 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,11 @@ <para>2012-05-30</para> <itemizedlist> <listitem> + <para>[bdubbs] - Copy all entries in /lib/udev/devices to + /dev in mountvirtfs. Fixes + <ulink url="&lfs-ticket-root;3102">#3102</ulink>.</para> + </listitem> + <listitem> <para>[matthew] - Correct the location of various package's man pages. Fixes <ulink url="&lfs-ticket-root;3097">#3097</ulink>.</para> </listitem> diff --git a/packages.ent b/packages.ent index 68b1141c5..e1eafa6f1 100644 --- a/packages.ent +++ b/packages.ent @@ -302,7 +302,7 @@ <!ENTITY less-ch6-du "3.5 MB"> <!ENTITY less-ch6-sbu "less than 0.1 SBU"> -<!ENTITY lfs-bootscripts-version "20120524"> <!-- Scripts depend on this format --> +<!ENTITY lfs-bootscripts-version "20120530"> <!-- Scripts depend on this format --> <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB"> <!-- Updated in Makefile --> <!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2"> <!ENTITY lfs-bootscripts-md5 "BOOTSCRIPTS-MD5SUM"> <!-- Updated in Makefile --> |