wok view ipxe/receipt @ rev 23940

ipxe: fix snponly.efi & ipxelinux.efi builds
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 12 17:42:55 2020 +0000 (2020-09-12)
parents f9002b3173a2
children bd734fc43792
line source
1 # SliTaz package receipt.
3 PACKAGE="ipxe"
4 VERSION="1.20.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Open source network boot firmware."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://ipxe.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/ipxe/ipxe/archive/v$VERSION.tar.gz"
13 DEPENDS=""
14 BUILD_DEPENDS="perl wget liblzma-dev syslinux"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/src
20 sed -i 's|SIZEOF_LOW_4GB / SIZEOF_2MB_PAGE|1 << (SIZEOF_LOW_4GB_LOG2 - SIZEOF_2MB_PAGE_LOG2)|' arch/x86/transitions/librm.S
21 sed -i 's/-llzma/& -lpthread/' Makefile.*
22 sed -i 's|//\(#define.*CONSOLE_FRAMEBUFFER\)|\1|' config/console.h
23 sed -i 's|//\(#define.*CONSOLE_SERIAL\)|\1|' config/console.h
24 sed -e 's|//\(#define.*IMAGE_PNG\)|\1|' \
25 -e 's|.*\(NET_PROTO_IPV6\)|#define \1|' \
26 -e 's|undef \(DOWNLOAD_PROTO_HTTPS\)|define \1|' \
27 -e 's|.*\(VLAN_CMD\)|#define \1|' \
28 -e 's|.*\(CERT_CMD\)|#define \1|' \
29 -e 's|//\(#define.*CONSOLE_CMD\)|\1|' \
30 -e 's|//\(#define.*REBOOT_CMD\)|\1|' -i config/general.h
31 sed -i "s|\(TAG_LINE \"\)|\1${VERSION#*-} -- |" config/branding.h
32 sed -i 's|//\(#define.*CPUID_SETTINGS\)|\1|' config/settings.h
33 pxelinux="$(ls $WOK/syslinux/source/*/core/pxelinux.0)"
34 make bin-i386-efi/snponly.efi EMBED=$stuff/ipxelinux.ipxe,$pxelinux &&
35 mv bin-i386-efi/snponly.efi bin-i386-efi/ipxelinux.efi
36 make bin-i386-efi/ipxe.efi bin-i386-efi/snponly.efi EMBED=$stuff/ipxe.cmd
38 sed -i 's|//\(#define.*MEMMAP_SETTINGS\)|\1|' config/settings.h
39 make bin/undionly.kkkpxe EMBED=$stuff/ipxelinux.ipxe,$pxelinux &&
40 mv bin/undionly.kkkpxe bin/ipxelinux.0
41 make bin/undionly.pxe bin/undionly.kpxe bin/undionly.kkpxe \
42 bin/undionly.kkkpxe bin/ipxe.pxe bin/ipxe.kpxe bin/ipxe.kkpxe \
43 bin/ipxe.kkkpxe bin/ipxe.nbi bin/ipxe.lkrn \
44 bin/ipxe.exe EMBED=$stuff/ipxe.cmd
45 cp $stuff/bootloader.S .
46 cc -o bootloader.o -Wa,-a=bootloader.lst -c bootloader.S
47 objcopy -O binary bootloader.o bootloader.bin
48 size=$(stat -c %s bin/ipxe.lkrn)
49 while read ofs val ; do
50 printf '\\\\x%02X\\\\x%02X' $(($val & 255)) $(($val / 256)) | \
51 xargs echo -en|dd bs=1 conv=notrunc of=bootloader.bin seek=$ofs
52 done 2> /dev/null <<EOT
53 4 $((($size+511)/512))
54 14 $((($size+15)/16))
55 EOT
56 }
58 # Rules to gen a SliTaz package suitable for Tazpkg.
59 genpkg_rules()
60 {
61 mkdir -p $fs/boot $install/usr/share
62 cp -a $src/src/doc $install/usr/share
63 cp -a $src/src/bin/ipxe.lkrn $fs/boot/ipxe.exe
64 dd if=$src/src/bootloader.bin of=$fs/boot/ipxe.exe conv=notrunc
65 }
67 # Pre and post install commands for Tazpkg.
68 post_install()
69 {
70 [ -s $1/boot/isolinux/isolinux.cfg ] &&
71 ! grep -qs 'Web Boot' $1/boot/isolinux/isolinux.cfg &&
72 sed -i 's|i18n.cfg|&\n\
73 LABEL web zeb\
74 MENU LABEL Web Boot\
75 KERNEL /boot/ipxe.exe|' $1/boot/isolinux/isolinux.cfg
76 true
77 }