repo/core/grub/build

46 lines
1012 B
Plaintext
Raw Normal View History

2019-06-19 06:59:59 +00:00
#!/bin/sh -e
2019-06-19 11:09:49 +00:00
# Grub is built in a function so the script argument needs to be stored.
pkg_dir=$1
2019-07-17 13:21:30 +00:00
# Change naming from GNU/Linux to Linux.
sed 's|GNU/Linux|Linux|' -i grub/util/grub.d/10_linux.in
2019-06-19 11:09:49 +00:00
build_grub() (
cp -R grub "grub-${1##*=}"
cd "grub-${1##*=}"
2019-06-25 17:24:29 +00:00
autoreconf -fi
2019-06-19 11:09:49 +00:00
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
2019-07-17 13:28:45 +00:00
--sysconfdir=/etc \
2019-06-19 11:09:49 +00:00
--disable-nls \
--disable-werror \
"$@"
make
make DESTDIR="$pkg_dir" install
)
build_grub --with-platform=pc
build_grub --with-platform=efi --disable-efiemu
2019-06-19 11:22:35 +00:00
2019-07-17 13:21:30 +00:00
# Install /etc/default/grub (used by grub-mkconfig).
install -Dm0644 grub.default "$1/etc/default/grub"
2019-06-19 11:22:35 +00:00
# Remove gdb debugging files.
(
cd "$pkg_dir"
rm -f usr/lib/grub/*/*.module
rm -f usr/lib/grub/*/*.image
rm -f usr/lib/grub/*/kernel.exec
rm -f usr/lib/grub/*/gdb_grub
rm -f usr/lib/grub/*/gmodule.pl
2019-06-25 14:06:59 +00:00
rm -f usr/lib/charset.alias
2019-06-19 11:22:35 +00:00
) ||:
2019-07-17 13:21:30 +00:00
# Remove unneedded file by musl
rm -f "$1/usr/lib/charset.alias"