wok annotate ipxe/receipt @ rev 19333
syslinux: adjust custom conf location (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jul 17 09:10:20 2016 +0200 (2016-07-17) |
parents | b87cb7a0f890 |
children | 302c1b557d06 |
rev | line source |
---|---|
pascal@13422 | 1 # SliTaz package receipt. |
pascal@13422 | 2 |
pascal@13422 | 3 PACKAGE="ipxe" |
pascal@18836 | 4 VERSION="1.0.0-20160119" |
pascal@18836 | 5 GIT_TAG="3c26ffafceef176286c108fe2b01ccebd83062a0" |
pascal@13422 | 6 CATEGORY="system-tools" |
pascal@13422 | 7 SHORT_DESC="Open source network boot firmware." |
pascal@13422 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14781 | 9 LICENSE="GPL2" |
pascal@13422 | 10 WEB_SITE="http://ipxe.org/" |
pascal@13422 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@13422 | 12 WGET_URL="https://git.ipxe.org/ipxe.git/snapshot/$GIT_TAG.tar.bz2" |
pascal@13422 | 13 |
pascal@13422 | 14 DEPENDS="" |
pascal@18836 | 15 BUILD_DEPENDS="perl wget liblzma-dev" |
pascal@13422 | 16 |
pascal@13422 | 17 # Rules to configure and make the package. |
pascal@13422 | 18 compile_rules() |
pascal@13422 | 19 { |
pascal@13422 | 20 cd $src/src |
pascal@18836 | 21 sed -i 's/-llzma/& -lpthread/' Makefile.* |
pascal@18836 | 22 sed -i 's|//\(#define.*CONSOLE_FRAMEBUFFER\)|\1|' config/console.h |
pascal@18901 | 23 sed -i 's|//\(#define.*CONSOLE_SERIAL\)|\1|' config/console.h |
pascal@18836 | 24 sed -i -e 's|//\(#define.*IMAGE_PNG\)|\1|' \ |
pascal@18836 | 25 -e 's|//\(#define.*CONSOLE_CMD\)|\1|' \ |
pascal@18836 | 26 -e 's|//\(#define.*REBOOT_CMD\)|\1|' config/general.h |
pascal@15368 | 27 cp $stuff/lkrnprefix.S arch/i386/prefix |
pascal@19333 | 28 make bin/undionly.pxe bin/undionly.kpxe bin/undionly.kkpxe \ |
pascal@19333 | 29 bin/undionly.kkkpxe bin/ipxe.pxe bin/ipxe.kpxe bin/ipxe.kkpxe \ |
pascal@19333 | 30 bin/ipxe.kkkpxe bin/ipxe.nbi bin/ipxe.lkrn EMBED=$stuff/ipxe.cmd |
pascal@13422 | 31 } |
pascal@13422 | 32 |
pascal@13422 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13422 | 34 genpkg_rules() |
pascal@13422 | 35 { |
pascal@13422 | 36 mkdir $fs/boot |
pascal@13422 | 37 cp -a $src/src/bin/ipxe.lkrn $fs/boot/ipxe |
pascal@17475 | 38 OFS=$((0x156)) |
pascal@15368 | 39 unix2dos <<EOT | dd bs=1 of=$fs/boot/ipxe conv=notrunc \ |
pascal@15368 | 40 seek=$OFS count=$((0x1F0-$OFS)) |
pascal@15368 | 41 $SHORT_DESC |
pascal@13422 | 42 EOT |
pascal@13422 | 43 } |