diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-09-10 07:26:57 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-09-10 07:26:57 +0000 |
commit | 8b9846f5cdfc952b37a5669c1b015e2f6bedf623 (patch) | |
tree | c69247dcb7a8c7e106187c707881c54cca36d7ec /aux-file-data.sh | |
parent | be2cf0c6bb0931202e8136aaa8e38ae07ac50a2b (diff) |
Update bootscript size calculation
Update to gettext-0.18.3.1
Update to kmod-15
Update to iproute2-3.11.0
Update to linux-3.11.0
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10340 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'aux-file-data.sh')
-rwxr-xr-x | aux-file-data.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux-file-data.sh b/aux-file-data.sh index 2ec2c0c1f..096f8a2f4 100755 --- a/aux-file-data.sh +++ b/aux-file-data.sh @@ -12,7 +12,7 @@ FILE=$1 # Bootscript data bootscripts=$(ls lfs-bootscripts*.bz2) base=$(basename $bootscripts .tar.bz2) -bootsize=$(ls -lk $bootscripts | cut -f5 -d" ") +bootsize=$(ls -l --block-size=1024 $bootscripts | cut -f5 -d" ") bootmd5=$(md5sum $bootscripts | cut -f1 -d" ") # Figure intalled size of bootscripts |