Package Updates.
[lfs.git] / aux-file-data.sh
blob8be1b1d155f1b6abcdefe8119f52e4c4a99cc9d9
1 #!/bin/bash
3 if [ $# -lt 1 ] ; then
4 echo "This script needs the location of the xml file to update"
5 exit 1
6 fi
8 FILE=$1
10 ./make-aux-files.sh
12 # Bootscript data
13 bootscripts=$(ls lfs-bootscripts*.xz)
14 base=$(basename $bootscripts .tar.xz)
15 bootsize=$(ls -l --block-size=1024 $bootscripts | cut -f5 -d" ")
16 bootmd5=$(md5sum $bootscripts | cut -f1 -d" ")
18 # Figure intalled size of bootscripts
19 TOPDIR=$(pwd)
20 TMP_DIR=$(mktemp -d /tmp/lfsbootfiles.XXXXXX)
21 pushd $TMP_DIR > /dev/null
22 tar -xf $TOPDIR/$bootscripts
23 bootinstallsize=$(du -sk $TMP_DIR | cut -f1)
24 popd > /dev/null
25 rm -rf $TMP_DIR
27 sed -i -e s/BOOTSCRIPTS-SIZE/$bootsize/ \
28 -e s/BOOTSCRIPTS-INSTALL-KB/$bootinstallsize/ \
29 -e s/BOOTSCRIPTS-MD5SUM/$bootmd5/ $FILE