Author: bdubbs
Date: 2012-09-01 09:14:53 -0600 (Sat, 01 Sep 2012)
New Revision: 9975
Added:
tags/7.2/
tags/7.2/aux-file-data.sh
tags/7.2/process-scripts.sh
tags/7.2/udev-lfs/
Removed:
tags/7.2/aux-file-data.sh
tags/7.2/process-scripts.sh
Modified:
tags/7.2/bootscripts/Makefile
tags/7.2/chapter01/changelog.xml
tags/7.2/general.ent
tags/7.2/packages.ent
Log:
Tag LFS-7.2
Deleted: tags/7.2/aux-file-data.sh
===================================================================
--- trunk/BOOK/aux-file-data.sh 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/aux-file-data.sh 2012-09-01 15:14:53 UTC (rev 9975)
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-if [ $# -lt 1 ] ; then
- echo "This script needs the location of the xml file to update"
- exit 1
-fi
-
-FILE=$1
-
-./make-aux-files.sh
-
-# Bootscript data
-bootscripts=$(ls lfs-bootscripts*.bz2)
-base=$(basename $bootscripts .tar.bz2)
-bootsize=$(ls -lk $bootscripts | cut -f5 -d" ")
-bootmd5=$(md5sum $bootscripts | cut -f1 -d" ")
-
-# Figure intalled size of bootscripts
-TOPDIR=$(pwd)
-TMP_DIR=$(mktemp -d /tmp/lfsbootfiles.XXXXXX)
-pushd $TMP_DIR > /dev/null
-tar -xf $TOPDIR/$bootscripts
-bootinstallsize=$(du -sk $TMP_DIR | cut -f1)
-popd > /dev/null
-rm -rf $TMP_DIR
-
-sed -i -e s/BOOTSCRIPTS-SIZE/$bootsize/ \
- -e s/BOOTSCRIPTS-INSTALL-KB/$bootinstallsize/ \
- -e s/BOOTSCRIPTS-MD5SUM/$bootmd5/ $FILE
-
-############
-
-# udev configuration tarball data
-#udevconfig=$(ls udev-config*.bz2)
-#udevsize=$(ls -lk $udevconfig | cut -f5 -d" ")
-#udevmd5=$(md5sum $udevconfig | cut -f1 -d" ")
-
-#sed -i -e s/UDEV-SIZE/$udevsize/ \
-# -e s/UDEV-MD5SUM/$udevmd5/ $FILE
-
Copied: tags/7.2/aux-file-data.sh (from rev 9973, trunk/BOOK/aux-file-data.sh)
===================================================================
--- tags/7.2/aux-file-data.sh (rev 0)
+++ tags/7.2/aux-file-data.sh 2012-09-01 15:14:53 UTC (rev 9975)
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+if [ $# -lt 1 ] ; then
+ echo "This script needs the location of the xml file to update"
+ exit 1
+fi
+
+FILE=$1
+
+./make-aux-files.sh
+
+# Bootscript data
+bootscripts=$(ls lfs-bootscripts*.bz2)
+base=$(basename $bootscripts .tar.bz2)
+bootsize=$(ls -lk $bootscripts | cut -f5 -d" ")
+bootmd5=$(md5sum $bootscripts | cut -f1 -d" ")
+
+# Figure intalled size of bootscripts
+TOPDIR=$(pwd)
+TMP_DIR=$(mktemp -d /tmp/lfsbootfiles.XXXXXX)
+pushd $TMP_DIR > /dev/null
+tar -xf $TOPDIR/$bootscripts
+bootinstallsize=$(du -sk $TMP_DIR | cut -f1)
+popd > /dev/null
+rm -rf $TMP_DIR
+
+sed -i -e s/BOOTSCRIPTS-SIZE/$bootsize/ \
+ -e s/BOOTSCRIPTS-INSTALL-KB/$bootinstallsize/ \
+ -e s/BOOTSCRIPTS-MD5SUM/$bootmd5/ $FILE
+
Modified: tags/7.2/bootscripts/Makefile
===================================================================
--- trunk/BOOK/bootscripts/Makefile 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/bootscripts/Makefile 2012-09-01 15:14:53 UTC (rev 9975)
@@ -64,9 +64,6 @@
if [ ! -f ${EXTDIR}/sysconfig/udev_retry ]; then \
install -m ${CONFMODE} lfs/sysconfig/udev_retry
${EXTDIR}/sysconfig/ ;\
fi
- if [ ! -f ${EXTDIR}/sysconfig/rc ]; then \
- install -m ${CONFMODE} lfs/sysconfig/rc
${EXTDIR}/sysconfig/ ;\
- fi
if [ ! -f ${EXTDIR}/sysconfig/rc.site ]; then \
install -m ${CONFMODE} lfs/sysconfig/rc.site
${EXTDIR}/sysconfig/ ;\
fi
Modified: tags/7.2/chapter01/changelog.xml
===================================================================
--- trunk/BOOK/chapter01/changelog.xml 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/chapter01/changelog.xml 2012-09-01 15:14:53 UTC (rev 9975)
@@ -37,6 +37,15 @@
-->
<listitem>
+ <para>2012-09-01</para>
+ <itemizedlist>
+ <listitem>
+ <para>[bdubbs] - LFS-7.2 released.</para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+
+ <listitem>
<para>2012-08-31</para>
<itemizedlist>
<listitem>
Modified: tags/7.2/general.ent
===================================================================
--- trunk/BOOK/general.ent 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/general.ent 2012-09-01 15:14:53 UTC (rev 9975)
@@ -1,8 +1,8 @@
-<!ENTITY version "SVN-20120831">
-<!ENTITY releasedate "August 31, 2012">
+<!ENTITY version "7.2">
+<!ENTITY releasedate "September 1, 2012">
<!ENTITY copyrightdate "1999-2012"><!-- jhalfs needs a literal dash, not
– -->
<!ENTITY milestone "7.2">
-<!ENTITY generic-version "development"> <!-- Use "development", "testing", or
"x.y[-pre{x}]" -->
+<!ENTITY generic-version "7.2"> <!-- Use "development", "testing", or
"x.y[-pre{x}]" -->
<!ENTITY lfs-root "http://www.linuxfromscratch.org/">
<!ENTITY lfs-ticket-root "http://wiki.linuxfromscratch.org/lfs/ticket/">
Modified: tags/7.2/packages.ent
===================================================================
--- trunk/BOOK/packages.ent 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/packages.ent 2012-09-01 15:14:53 UTC (rev 9975)
@@ -302,7 +302,7 @@
<!ENTITY less-ch6-du "3.8 MB">
<!ENTITY less-ch6-sbu "less than 0.1 SBU">
-<!ENTITY lfs-bootscripts-version "20120831"> <!-- Scripts
depend on this format -->
+<!ENTITY lfs-bootscripts-version "20120901"> <!-- 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 -->
Deleted: tags/7.2/process-scripts.sh
===================================================================
--- trunk/BOOK/process-scripts.sh 2012-08-31 18:32:57 UTC (rev 9972)
+++ tags/7.2/process-scripts.sh 2012-09-01 15:14:53 UTC (rev 9975)
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-# Boot scripts
-for s in bootscripts/lfs/init.d/* \
- bootscripts/lfs/sysconfig/* \
- bootscripts/lfs/lib/services/* \
- bootscripts/lfs/sbin/* \
- ../udev-lfs/*.rules
-do
- script=$(basename $s)
-
- # Skip directories
- [ $script == 'network-devices' ] && continue
- #[ $script == 'services' ] && continue
-
- # Disambiguate duplicate file names
- [ $s == 'bootscripts/lfs/sysconfig/rc' ] && script='rc-sysinit';
- [ $s == 'bootscripts/lfs/sysconfig/modules' ] &&
script='modules-sysinit';
- [ $s == 'bootscripts/lfs/sysconfig/udev_retry' ] &&
script='config-udev-retry';
-
- sed -e 's/\&/\&\;/g' -e 's/</\<\;/g' -e 's/>/\>\;/g' \
- -e "s/'/\&apos\;/g" -e 's/"/\"\;/g' -e 's/\t/ /g' \
- $s > appendices/${script}.script
-done
Copied: tags/7.2/process-scripts.sh (from rev 9973,
trunk/BOOK/process-scripts.sh)
===================================================================
--- tags/7.2/process-scripts.sh (rev 0)
+++ tags/7.2/process-scripts.sh 2012-09-01 15:14:53 UTC (rev 9975)
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+# Boot scripts
+for s in bootscripts/lfs/init.d/* \
+ bootscripts/lfs/sysconfig/* \
+ bootscripts/lfs/lib/services/* \
+ bootscripts/lfs/sbin/* \
+ udev-lfs/*.rules
+do
+ script=$(basename $s)
+
+ # Skip directories
+ [ $script == 'network-devices' ] && continue
+ #[ $script == 'services' ] && continue
+
+ # Disambiguate duplicate file names
+ [ $s == 'bootscripts/lfs/sysconfig/rc' ] && script='rc-sysinit';
+ [ $s == 'bootscripts/lfs/sysconfig/modules' ] &&
script='modules-sysinit';
+ [ $s == 'bootscripts/lfs/sysconfig/udev_retry' ] &&
script='config-udev-retry';
+
+ sed -e 's/\&/\&\;/g' -e 's/</\<\;/g' -e 's/>/\>\;/g' \
+ -e "s/'/\&apos\;/g" -e 's/"/\"\;/g' -e 's/\t/ /g' \
+ $s > appendices/${script}.script
+done
--
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page