diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-01-22 16:21:27 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-01-22 16:21:27 +0000 |
commit | c3b0a81f094a203a49a442fe8edb2825c52ac6b1 (patch) | |
tree | 5db7c2d753df0b4913422ad3a301ccf501819336 | |
parent | 348c5f4eb2015dd237187cdb8fe71a98c16cf128 (diff) | |
download | drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.gz drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.bz2 drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.tar.xz drakx-c3b0a81f094a203a49a442fe8edb2825c52ac6b1.zip |
Syslinux 3.72 changes for the COM32 gfxboot module
-rw-r--r-- | images/NEWS | 3 | ||||
-rwxr-xr-x | images/make_boot_img | 10 |
2 files changed, 11 insertions, 2 deletions
diff --git a/images/NEWS b/images/NEWS index 8c30e1010..68814f588 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,6 @@ +- images: + o adjust to new syslinux 3.72 gfxboot COM32 module + Version 1.32 - 15 January 2008, by Thierry Vignaud - include: diff --git a/images/make_boot_img b/images/make_boot_img index 3b538365f..72229f2d6 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -118,9 +118,14 @@ display help.msg implicit 1 EOF my $header_gfxboot = <<EOF; -gfxboot bootlogo +default gfxboot +timeout 0 +prompt 0 label harddisk localboot 0x80 +label gfxboot + comboot gfxboot.com + append bootlogo EOF my $header_non_gfxboot = <<EOF; F1 help.msg @@ -745,7 +750,8 @@ sub boot_iso { my $with_gfxboot = 0; _ "cp /usr/share/gfxboot/themes/Mandriva/install/* .boot_iso/isolinux" if $with_gfxboot; -# _ "cp /home/pixel/cooker/soft/theme/mandriva-gfxboot-theme/inst/* .boot_iso/isolinux" if $with_gfxboot; +# _ "cp /home/pixel/cooker/soft/theme/mandriva-gfxboot-theme/inst/* .boot_iso/isolinux" if $with_gfxboot; + _ "cp /usr/lib/syslinux/gfxboot.com .boot_iso/isolinux/gfxboot.com" if $with_gfxboot; output('.boot_iso/isolinux/isolinux.cfg', syslinux_cfg_all('', $with_gfxboot)); |