Move external build directories into dedicated build directories inside the
[linux_from_scratch.git] / aux-file-data.sh
blobf13f6d044317d1787a5b34f0582f6e1c1f735ece
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*.bz2)
14 base=$(basename $bootscripts .tar.bz2)
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