diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-03-16 00:02:47 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-03-16 00:02:47 -0300 |
commit | 56750f37ed8b70653be9558e843fac7b90107c95 (patch) | |
tree | 50786c966055b2a7789eeda56f90193d442750c2 /archiso/mkarchiso | |
parent | 827f6a3f2bf8383abafe165a4ffcba3fb526c790 (diff) |
Revert back isohybrid offset to default setting.
This revert back the commit 991a5c69.
This causes more problems than solving (fixing the warning issue in parted)
With the default offset 0:
* makes posibble to create others extra partitions on USB key
and use them inside the live enviroment.
* makes posible to use /dev/disk/by-label/ symlinks.
archiso_early hook, can be removed.
Note: archboot also uses the default offset 0.
More info at:
http://mailman.archlinux.org/pipermail/arch-releng/2010-March/000912.html
http://mailman.archlinux.org/pipermail/arch-releng/2010-March/000890.html
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/mkarchiso')
-rwxr-xr-x | archiso/mkarchiso | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index a7afea0..b40eedd 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -240,14 +240,14 @@ command_iso () { mkisofs ${qflag} -r -l \ -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ -uid 0 -gid 0 \ - -udf -allow-limited-size -iso-level 3 \ + -udf -allow-limited-size -iso-level 3 \ -input-charset utf-8 -p "prepared by mkarchiso" \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -publisher "${PUBLISHER}" \ -A "${APPLICATION}" \ -V "${LABEL}" \ -o "${imgname}" "${work_dir}/iso/" - isohybrid -offset 1 "${imgname}" + isohybrid "${imgname}" } # Go through the main commands in order. If 'all' was specified, then we want |