kiss-mfavila-large/ports/official/core/syslinux/build

23 lines
505 B
Plaintext
Raw Normal View History

2021-05-09 06:10:08 +00:00
#!/bin/sh -e
2021-05-11 04:07:37 +00:00
for file in 0018-prevent-pow-optimization.patch fcommon.patch
do
patch -p1 < $file
done
2021-05-09 06:10:08 +00:00
# Fix missing <sys/sysmacros.h> include.
sed -i 's@vfs.h>@vfs.h>\n#include <sys/sysmacros.h>@' extlinux/main.c
# Disable debugging and development "stuff".
: > mk/devel.mk
2021-05-11 04:07:37 +00:00
make -j1 \
2022-02-17 13:33:27 +00:00
bios installer
2021-05-09 06:10:08 +00:00
2021-05-11 04:07:37 +00:00
make -j1 \
INSTALLROOT="$1" \
MANDIR=/usr/share/man \
SBINDIR=/usr/bin \
2021-05-09 06:10:08 +00:00
AUXDIR=/usr/lib/syslinux \
2022-02-17 13:33:27 +00:00
bios installer