wok diff gpxe-pxe/receipt @ rev 2399

nscd: improve start script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 10 09:20:05 2009 +0000 (2009-03-10)
parents 71aeaedf0b9b
children 7f1f7efb4ddb
line diff
     1.1 --- a/gpxe-pxe/receipt	Mon Jul 07 16:00:15 2008 +0000
     1.2 +++ b/gpxe-pxe/receipt	Tue Mar 10 09:20:05 2009 +0000
     1.3 @@ -13,7 +13,10 @@
     1.4  {
     1.5  	mkdir -p $fs/usr/share/boot
     1.6  	cp $src/src/bin/undionly.kpxe $fs/usr/share/boot/gpxe.pxe
     1.7 -	# install 127 bytes of forced url at offset 5
     1.8 -	echo -n "http://boot.slitaz.org/pxe/pxelinux.0" | cat - /dev/zero | dd bs=1 \
     1.9 -		seek=5 count=127 conv=notrunc of=$fs/usr/share/boot/gpxe.pxe
    1.10 +	# install 255 bytes of forced url at offset 5
    1.11 +	echo -n "\
    1.12 +http://boot.slitaz.org/pxe/pxelinux.0,\
    1.13 +http://mirror.slitaz.org/pxe/pxelinux.0,\
    1.14 +http://download.tuxfamily.org/slitaz/pxe/pxelinux.0" | cat - /dev/zero | \
    1.15 +	   dd bs=1 seek=5 count=255 conv=notrunc of=$fs/usr/share/boot/gpxe.pxe
    1.16  }