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 | f722134829e5044efc9f5015ef39e869acb29437 (patch) | |
tree | 56de5ed774a3ec7f59b551c928a9969acd1ea897 | |
parent | aec441d19a416c782eb6313c168dd82d4ce9adba (diff) | |
download | drakx-backup-do-not-use-f722134829e5044efc9f5015ef39e869acb29437.tar drakx-backup-do-not-use-f722134829e5044efc9f5015ef39e869acb29437.tar.gz drakx-backup-do-not-use-f722134829e5044efc9f5015ef39e869acb29437.tar.bz2 drakx-backup-do-not-use-f722134829e5044efc9f5015ef39e869acb29437.tar.xz drakx-backup-do-not-use-f722134829e5044efc9f5015ef39e869acb29437.zip |
make isohybrid start first partition on sector 1 (mga #5036)
-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'); } |