diff options
author | Thomas Backlund <tmb@mageia.org> | 2012-04-07 21:29:23 +0000 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2012-04-07 21:29:23 +0000 |
commit | c69cfbc9414d2311821056e02d8fe752cab33a13 (patch) | |
tree | 56de5ed774a3ec7f59b551c928a9969acd1ea897 /images | |
parent | c12f436ad4dfc6b721a8e4bc9bcd2987c5b30f63 (diff) | |
download | drakx-c69cfbc9414d2311821056e02d8fe752cab33a13.tar drakx-c69cfbc9414d2311821056e02d8fe752cab33a13.tar.gz drakx-c69cfbc9414d2311821056e02d8fe752cab33a13.tar.bz2 drakx-c69cfbc9414d2311821056e02d8fe752cab33a13.tar.xz drakx-c69cfbc9414d2311821056e02d8fe752cab33a13.zip |
make isohybrid start first partition on sector 1 (mga #5036)
Diffstat (limited to 'images')
-rw-r--r-- | images/NEWS | 2 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index 2fe93425b..498882f93 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,5 @@ +- make isohybrid start first partition on sector 1 (mga #5036) + Version 1.70 - 5 April 2012 by Thierry Vignaud - include "screen" terminfo (mga#4894) diff --git a/images/make_boot_img b/images/make_boot_img index d4ccf6bfb..935d44e1e 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -774,7 +774,7 @@ sub boot_iso { output('.boot_iso/isolinux/isolinux.cfg', syslinux_cfg_all('', $with_gfxboot)); _ "genisoimage -r -f -J -cache-inodes -V 'Mga Boot ISO' -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o $iso .boot_iso"; - _ "isohybrid $iso"; + _ "isohybrid -o 1 $iso"; rm_rf('.boot_iso'); } |