wok rev 1716

Up syslinux (3.72)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 17 12:26:07 2008 +0000 (2008-11-17)
parents 74b1a6f5d5b0
children c610448b8bb5
files syslinux-extra/receipt syslinux-modules/receipt syslinux-tools/receipt syslinux/receipt
line diff
     1.1 --- a/syslinux-extra/receipt	Mon Nov 17 12:23:07 2008 +0000
     1.2 +++ b/syslinux-extra/receipt	Mon Nov 17 12:26:07 2008 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="syslinux-extra"
     1.7 -VERSION="3.70"
     1.8 +VERSION="3.72"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="MBR/FAT/EXT3/PXE bootloader files"
    1.11  MAINTAINER="pankso@slitaz.org"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/syslinux-modules/receipt	Mon Nov 17 12:26:07 2008 +0000
     2.3 @@ -0,0 +1,19 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="syslinux-modules"
     2.7 +VERSION="3.72"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="C32 modules for syslinux"
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +WANTED="syslinux"
    2.12 +WEB_SITE="http://syslinux.zytor.com/"
    2.13 +BUILD_DEPENDS="lzma"
    2.14 +
    2.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.16 +genpkg_rules()
    2.17 +{
    2.18 +    mkdir -p $fs/usr/share/boot
    2.19 +    for i in mboot sanboot chain elf reboot ifcpu64 linux sdi menu vesamenu; do
    2.20 +    	lzma e $src/com32/*/$i.c32 $fs/usr/share/boot/$i.c32.lzma 2> /dev/null
    2.21 +    done
    2.22 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/syslinux-tools/receipt	Mon Nov 17 12:26:07 2008 +0000
     3.3 @@ -0,0 +1,20 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="syslinux-tools"
     3.7 +VERSION="3.72"
     3.8 +CATEGORY="system-tools"
     3.9 +SHORT_DESC="Misc perl tools"
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +WANTED="syslinux"
    3.12 +WEB_SITE="http://syslinux.zytor.com/"
    3.13 +DEPENDS="perl"
    3.14 +
    3.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.16 +genpkg_rules()
    3.17 +{
    3.18 +	mkdir -p $fs/usr/bin
    3.19 +	for i in keytab-lilo lss16toppm ppmtolss16 mkdiskimage \
    3.20 +		 syslinux2ansi isohybrid ; do
    3.21 +		cp -a $src/utils/$i $fs/usr/bin
    3.22 +	done
    3.23 +}
     4.1 --- a/syslinux/receipt	Mon Nov 17 12:23:07 2008 +0000
     4.2 +++ b/syslinux/receipt	Mon Nov 17 12:26:07 2008 +0000
     4.3 @@ -1,7 +1,7 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="syslinux"
     4.7 -VERSION="3.70"
     4.8 +VERSION="3.72"
     4.9  CATEGORY="base-system"
    4.10  SHORT_DESC="LiveCD ISO bootloader (isolinux)"
    4.11  MAINTAINER="pankso@slitaz.org"
    4.12 @@ -23,20 +23,6 @@
    4.13          j=${j%.map.gz}.kbd
    4.14          ./keytab-lilo.pl /usr/share/kbd/keymaps/i386/qwerty/us.map.gz $i > $j
    4.15      done
    4.16 -    # patch kbdmap bug
    4.17 -    while read file offset; do
    4.18 -    	cp $file $file.unpatched
    4.19 -    	echo "Fix $file 3.70 kbdmap bug..."
    4.20 -	echo "0  90 90  |.." | hexdump -R | \
    4.21 -	dd conv=notrunc bs=1 count=2 seek=$(($offset)) of=$file 2> /dev/null
    4.22 -	echo "0  90 90  |.." | hexdump -R | \
    4.23 -	dd conv=notrunc bs=1 count=2 seek=$(($offset+5)) of=$file 2> /dev/null
    4.24 -    done <<EOT
    4.25 -core/isolinux.bin 0x1AC9
    4.26 -core/pxelinux.0 0x2098
    4.27 -linux/syslinux-nomtools 0x3CDD
    4.28 -extlinux/extlinux 0x4BBA
    4.29 -EOT
    4.30  }
    4.31  
    4.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.33 @@ -45,7 +31,7 @@
    4.34      mkdir -p $fs/boot/isolinux
    4.35      cp -a $src/core/isolinux.bin $fs/boot/isolinux
    4.36      cp -a $src/com32/modules/reboot.c32 $fs/boot/isolinux
    4.37 -    cp stuff/* $fs/boot/isolinux
    4.38 +    cp stuff/*.* $fs/boot/isolinux
    4.39      rm -rf $fs/boot/isolinux/tools $fs/boot/isolinux/*.kbd 2> /dev/null
    4.40      grep kbd$ $fs/boot/isolinux/*.cfg | while read cfg kbd; do
    4.41          cfg=$(basename ${cfg%.cfg:*})