diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-12-24 10:33:36 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-12-24 10:33:36 -0800 |
commit | fbd2ce5cb019956f506946a1971621877b9695d7 (patch) | |
tree | b0d1b1e50879ced0598541472b9c240c10818f2c | |
parent | 29d05d6bea4d370f7645fa1f5631bb020d670fa9 (diff) | |
download | archiso32-fbd2ce5cb019956f506946a1971621877b9695d7.tar.xz |
Fix usb image's size detection
Conversion issue when dropping mkusbimg. Use work_dir/iso
to get the proper image size
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | archiso/mkarchiso | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 469bd08..6ca68d1 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -261,7 +261,7 @@ command_usb () { fsimg="${imgname}.part1" # ext2 overhead's upper bound is 6%, empirically tested up to 1GB - rootsize=$(du -bs ${IMGROOT}|cut -f1) + rootsize=$(du -bs "${work_dir}/iso" | cut -f1) imgsz=$(( (${rootsize}*106)/100/512 + 1)) # image size in sectors # create the filesystem image file |