diff options
Diffstat (limited to 'images')
-rw-r--r-- | images/Makefile | 2 | ||||
-rw-r--r-- | images/NEWS | 4 | ||||
-rwxr-xr-x | images/make_boot_img | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/images/Makefile b/images/Makefile index 420191f9c..455bb7fda 100644 --- a/images/Makefile +++ b/images/Makefile @@ -1,6 +1,6 @@ include ../Makefile.config -VERSION=1.51 +VERSION=1.52 PRODUCT=drakx-installer-images KERNELS=$(shell rpm -qf /lib/modules/2.*) diff --git a/images/NEWS b/images/NEWS index 3e05a6080..64399eeaf 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,7 @@ +Version 1.52 - 24 May 2011, by Funda Wang + +- use gfxboot.c32 as graphical boot loader + Version 1.50 - 13 Oct 2010, by Thierry Vignaud - 2011.0 build diff --git a/images/make_boot_img b/images/make_boot_img index deceb07a8..0a44fe3b4 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -121,7 +121,7 @@ display help.msg implicit 1 EOF my $header_gfxboot = <<EOF; -ui gfxboot.com bootlogo +ui gfxboot.c32 bootlogo label harddisk localboot 0x80 EOF @@ -727,7 +727,7 @@ sub isolinux { syslinux_all_files('isolinux', $kernels); _ "cp $isolinux_bin isolinux/isolinux.bin"; - _ "cp /usr/lib/syslinux/gfxboot.com isolinux/gfxboot.com"; + _ "cp /usr/lib/syslinux/gfxboot.c32 isolinux/gfxboot.c32"; output("isolinux/isolinux.cfg", syslinux_cfg_all('cdrom', 1)); xbox_stage1() if arch() =~ /i.86/; @@ -765,7 +765,7 @@ sub boot_iso { _ "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/teuf/mdv/src/mandriva-gfxboot-theme/inst/* .boot_iso/isolinux" if $with_gfxboot; - _ "cp /usr/lib/syslinux/gfxboot.com .boot_iso/isolinux/gfxboot.com" if $with_gfxboot; + _ "cp /usr/lib/syslinux/gfxboot.c32 .boot_iso/isolinux/gfxboot.c32" if $with_gfxboot; output('.boot_iso/isolinux/isolinux.cfg', syslinux_cfg_all('', $with_gfxboot)); |