4 echo "This script needs the location of the xml file to update"
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
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)
27 sed -i -e s
/BOOTSCRIPTS-SIZE
/$bootsize/ \
28 -e s
/BOOTSCRIPTS-INSTALL-KB
/$bootinstallsize/ \
29 -e s
/BOOTSCRIPTS-MD5SUM
/$bootmd5/ $FILE