wok annotate gpxe/receipt @ rev 7541
Up: cairomm to 1.8.6.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Dec 07 07:33:35 2010 +0000 (2010-12-07) |
parents | 21ebecd31083 |
children | e9749999c04d |
rev | line source |
---|---|
pascal@955 | 1 # SliTaz package receipt. |
pascal@955 | 2 |
pascal@955 | 3 PACKAGE="gpxe" |
pascal@955 | 4 VERSION="0.9.3" |
pascal@955 | 5 CATEGORY="system-tools" |
pascal@955 | 6 SHORT_DESC="Ethernet bootloader." |
pascal@955 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@955 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@955 | 9 WEB_SITE="http://www.etherboot.org/" |
pascal@1459 | 10 WGET_URL="http://kernel.org/pub/software/utils/boot/$PACKAGE/Old/$TARBALL" |
pascal@2640 | 11 BUILD_DEPENDS="perl" |
pascal@955 | 12 |
pascal@955 | 13 # Rules to configure and make the package. |
pascal@955 | 14 compile_rules() |
pascal@955 | 15 { |
pascal@955 | 16 cd $src/src |
pascal@4203 | 17 for i in prefix.u default_boot.u cmdline.u url_list.u gcc.u; do |
pascal@1511 | 18 [ -f done.$i ] && continue |
pascal@1121 | 19 echo "Apply $i..." |
pascal@955 | 20 patch -p2 < ../../stuff/$i || return 1 |
pascal@1511 | 21 touch done.$i |
pascal@955 | 22 done |
pascal@5737 | 23 sed -i 's/ = ++ns->cur_rx %/++; ns->cur_rx %=/' drivers/net/ns83820.c |
pascal@5737 | 24 sed -i 's/ = (++tp->cur_rx) %/++; tp->cur_rx %=/' drivers/net/tulip.c |
pascal@4203 | 25 make EXTRA_CFLAGS=-fno-strict-aliasing bin/gpxe.lkrn bin/undionly.kpxe |
pascal@955 | 26 } |
pascal@955 | 27 |
pascal@955 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@955 | 29 genpkg_rules() |
pascal@955 | 30 { |
pascal@956 | 31 mkdir -p $fs/boot |
pascal@956 | 32 cp $src/src/bin/gpxe.lkrn $fs/boot/gpxe |
pascal@2338 | 33 # install 255 bytes of forced url at offset 519 |
pascal@2338 | 34 echo -n "\ |
pascal@2338 | 35 http://mirror.slitaz.org/pxe/pxelinux.0,\ |
pascal@4720 | 36 http://mirror.switch.ch/ftp/mirror/pxe/pxelinux.0,\ |
pascal@2338 | 37 http://download.tuxfamily.org/slitaz/pxe/pxelinux.0" | cat - /dev/zero | \ |
pascal@2338 | 38 dd bs=1 seek=519 count=255 conv=notrunc of=$fs/boot/gpxe |
pascal@955 | 39 } |