diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-04-01 11:06:29 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-04-01 11:06:29 -0300 |
commit | 67096caef2b33a6196bb5c40bb33d198bda074bb (patch) | |
tree | 12769db85d6cff03a5def0ca434826d0b12be844 /archiso/mkarchiso | |
parent | eed6c84e40b3656259e8c5aaca39261e6a2a0205 (diff) | |
download | archiso32-67096caef2b33a6196bb5c40bb33d198bda074bb.tar.xz |
[archiso] Re-order and use long xorrisofs options.
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/mkarchiso')
-rwxr-xr-x | archiso/mkarchiso | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index ad88b0b..3e9b112 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -396,16 +396,19 @@ command_iso () { if [[ ${quiet} == "y" ]]; then _qflag="-quiet" fi - xorriso -as mkisofs ${_qflag} -r -l \ - -b isolinux/isolinux.bin -c isolinux/boot.cat \ + xorriso -as mkisofs ${_qflag} \ -iso-level 3 \ + -full-iso9660-filenames \ + -volid "${iso_label}" \ + -appid "${iso_application}" \ + -publisher "${iso_publisher}" \ + -preparer "prepared by mkarchiso" \ + -eltorito-boot isolinux/isolinux.bin \ + -eltorito-catalog isolinux/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -isohybrid-mbr ${work_dir}/iso/isolinux/isohdpfx.bin \ - -p "prepared by mkarchiso" \ - -publisher "${iso_publisher}" \ - -A "${iso_application}" \ - -V "${iso_label}" \ - -o "${out_dir}/${img_name}" "${work_dir}/iso/" + -output "${out_dir}/${img_name}" \ + "${work_dir}/iso/" _msg_info "Done! | $(ls -sh ${out_dir}/${img_name})" fi } |