repo/core/grub/build

45 lines
Plaintext
Raw Normal View History

2019-08-10 19:38:27 -06:00
#!/bin/sh -e
2020-02-11 09:55:35 -07:00
# Strip '-march' from 'CFLAGS' as per advice from upstream.
# Fixes build fails on specific hardware.
2020-02-21 15:28:16 -07:00
CFLAGS=$(printf %s "$CFLAGS" | sed 's/-march=[^ ]*//g')
2020-02-21 15:26:55 -07:00
export CFLAGS
2020-02-11 09:55:35 -07:00
2020-02-21 15:26:55 -07:00
# Grub is built in a function so the script argument
2020-02-11 09:55:35 -07:00
# needs to be stored.
2019-08-10 19:38:27 -06:00
pkg_dir=$1
build_grub() (
2019-09-07 09:14:04 -06:00
cp -a grub "grub-${1##*=}"
2019-08-10 19:38:27 -06:00
cd "grub-${1##*=}"
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--disable-werror \
2019-08-17 20:18:05 -06:00
--disable-grub-mkfont \
--disable-grub-mount \
2019-08-10 19:38:27 -06:00
"$@"
make
make DESTDIR="$pkg_dir" install
)
build_grub --with-platform=pc
build_grub --with-platform=efi --disable-efiemu
# Install /etc/default/grub (used by grub-mkconfig).
install -Dm0644 grub.default "$1/etc/default/grub"
# Remove gdb debugging files.
(
2019-09-07 09:14:04 -06:00
cd "$pkg_dir/usr/lib"
rm -f grub/*/*.module
rm -f grub/*/*.image
rm -f grub/*/kernel.exec
rm -f grub/*/gdb_grub
rm -f grub/*/gmodule.pl
)