wok annotate gpxe-pxe/receipt @ rev 2339

gpxe-pxe: url redondancy setup
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 02 08:57:35 2009 +0000 (2009-03-02)
parents 71aeaedf0b9b
children 7f1f7efb4ddb
rev   line source
pascal@963 1 # SliTaz package receipt.
pascal@963 2
pascal@963 3 PACKAGE="gpxe-pxe"
pascal@963 4 VERSION="0.9.3"
pascal@963 5 CATEGORY="system-tools"
pascal@963 6 SHORT_DESC="Ethernet bootloader for pxe server."
pascal@963 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@963 8 WEB_SITE="http://www.etherboot.org/"
pascal@963 9 WANTED="gpxe"
pascal@963 10
pascal@963 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@963 12 genpkg_rules()
pascal@963 13 {
pascal@963 14 mkdir -p $fs/usr/share/boot
pascal@963 15 cp $src/src/bin/undionly.kpxe $fs/usr/share/boot/gpxe.pxe
pascal@2339 16 # install 255 bytes of forced url at offset 5
pascal@2339 17 echo -n "\
pascal@2339 18 http://boot.slitaz.org/pxe/pxelinux.0,\
pascal@2339 19 http://mirror.slitaz.org/pxe/pxelinux.0,\
pascal@2339 20 http://download.tuxfamily.org/slitaz/pxe/pxelinux.0" | cat - /dev/zero | \
pascal@2339 21 dd bs=1 seek=5 count=255 conv=notrunc of=$fs/usr/share/boot/gpxe.pxe
pascal@963 22 }