2017-04-26 22:06:45 +02:00
|
|
|
# Maintainer : Christian Hesse <mail@eworm.de>
|
2013-06-22 12:15:33 +02:00
|
|
|
# Maintainer : Ronald van Haren <ronald.archlinux.org>
|
2017-04-26 22:06:45 +02:00
|
|
|
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
|
2014-05-14 08:29:48 +02:00
|
|
|
# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)>
|
|
|
|
|
|
|
|
## "1" to enable IA32-EFI build in Arch x86_64, "0" to disable
|
|
|
|
_IA32_EFI_IN_ARCH_X64="1"
|
|
|
|
|
|
|
|
## "1" to enable EMU build, "0" to disable
|
|
|
|
_GRUB_EMU_BUILD="0"
|
2012-06-28 19:51:38 +02:00
|
|
|
|
2016-07-29 09:59:10 +02:00
|
|
|
_GRUB_EXTRAS_COMMIT="f2a079441939eee7251bf141986cdd78946e1d20"
|
2019-05-03 22:43:18 +02:00
|
|
|
_GNULIB_COMMIT="3f14b27dec6f4a590d8ae0ffcbb7cf7714815a05"
|
2019-04-05 13:04:19 +02:00
|
|
|
_UNIFONT_VER="12.0.01"
|
2012-06-28 19:51:38 +02:00
|
|
|
|
2013-06-22 12:15:33 +02:00
|
|
|
[[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64"
|
|
|
|
[[ "${CARCH}" == "i686" ]] && _EFI_ARCH="i386"
|
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
[[ "${CARCH}" == "x86_64" ]] && _EMU_ARCH="x86_64"
|
|
|
|
[[ "${CARCH}" == "i686" ]] && _EMU_ARCH="i386"
|
|
|
|
|
2018-11-23 22:08:42 +01:00
|
|
|
pkgname='grub'
|
|
|
|
pkgdesc='GNU GRand Unified Bootloader (2)'
|
2019-05-03 22:43:18 +02:00
|
|
|
_pkgver=2.04-rc1
|
|
|
|
pkgver=${_pkgver/-/}
|
|
|
|
pkgrel=1
|
2017-04-26 22:06:45 +02:00
|
|
|
epoch=2
|
2018-11-23 22:08:42 +01:00
|
|
|
url='https://www.gnu.org/software/grub/'
|
2017-11-15 15:11:34 +01:00
|
|
|
arch=('x86_64')
|
2012-06-28 19:51:38 +02:00
|
|
|
license=('GPL3')
|
2018-11-23 22:08:42 +01:00
|
|
|
backup=('etc/default/grub'
|
2017-04-26 22:06:45 +02:00
|
|
|
'etc/grub.d/40_custom')
|
2013-06-22 12:15:33 +02:00
|
|
|
install="${pkgname}.install"
|
|
|
|
options=('!makeflags')
|
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
conflicts=('grub-common' 'grub-bios' 'grub-emu' "grub-efi-${_EFI_ARCH}" 'grub-legacy')
|
|
|
|
replaces=('grub-common' 'grub-bios' 'grub-emu' "grub-efi-${_EFI_ARCH}")
|
|
|
|
provides=('grub-common' 'grub-bios' 'grub-emu' "grub-efi-${_EFI_ARCH}")
|
2013-06-22 12:15:33 +02:00
|
|
|
|
2013-12-21 19:42:03 +01:00
|
|
|
makedepends=('git' 'rsync' 'xz' 'freetype2' 'ttf-dejavu' 'python' 'autogen'
|
2016-12-13 18:00:12 +01:00
|
|
|
'texinfo' 'help2man' 'gettext' 'device-mapper' 'fuse2')
|
2013-06-22 12:15:33 +02:00
|
|
|
depends=('sh' 'xz' 'gettext' 'device-mapper')
|
|
|
|
optdepends=('freetype2: For grub-mkfont usage'
|
2016-12-13 18:00:12 +01:00
|
|
|
'fuse2: For grub-mount usage'
|
2016-07-29 09:59:10 +02:00
|
|
|
'dosfstools: For grub-mkrescue FAT FS and EFI support'
|
2013-06-22 12:15:33 +02:00
|
|
|
'efibootmgr: For grub-install EFI support'
|
|
|
|
'libisoburn: Provides xorriso for generating grub rescue iso using grub-mkrescue'
|
|
|
|
'os-prober: To detect other OSes when generating grub.cfg in BIOS systems'
|
|
|
|
'mtools: For grub-mkrescue FAT FS support')
|
2012-06-28 19:51:38 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
if [[ "${_GRUB_EMU_BUILD}" == "1" ]]; then
|
|
|
|
makedepends+=('libusbx' 'sdl')
|
|
|
|
optdepends+=('libusbx: For grub-emu USB support'
|
|
|
|
'sdl: For grub-emu SDL support')
|
|
|
|
fi
|
|
|
|
|
2017-04-26 22:06:45 +02:00
|
|
|
validpgpkeys=('E53D497F3FA42AD8C9B4D1E835A93B74E82E4209' # Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
|
|
|
|
'95D2E9AB8740D8046387FD151A09227B1F435A33') # Paul Hardy <unifoundry@unifoundry.com>
|
2016-10-20 12:01:53 +02:00
|
|
|
|
2019-05-03 22:43:18 +02:00
|
|
|
source=("git+https://git.savannah.gnu.org/git/grub.git#tag=grub-${_pkgver}?signed"
|
2019-04-08 13:32:49 +02:00
|
|
|
"git+https://git.savannah.gnu.org/git/grub-extras.git#commit=${_GRUB_EXTRAS_COMMIT}"
|
2019-05-03 22:43:18 +02:00
|
|
|
"git+https://git.savannah.gnu.org/git/gnulib.git#commit=${_GNULIB_COMMIT}"
|
2017-04-26 22:06:45 +02:00
|
|
|
"https://ftp.gnu.org/gnu/unifont/unifont-${_UNIFONT_VER}/unifont-${_UNIFONT_VER}.bdf.gz"{,.sig}
|
2016-07-29 09:59:10 +02:00
|
|
|
'0003-10_linux-detect-archlinux-initramfs.patch'
|
|
|
|
'0004-add-GRUB_COLOR_variables.patch'
|
2018-11-23 22:08:42 +01:00
|
|
|
'grub.default')
|
2014-04-07 13:01:47 +02:00
|
|
|
|
2019-04-08 13:32:49 +02:00
|
|
|
sha256sums=('SKIP'
|
2019-05-03 22:43:18 +02:00
|
|
|
'SKIP'
|
2017-04-26 22:06:45 +02:00
|
|
|
'SKIP'
|
2019-04-05 13:04:19 +02:00
|
|
|
'f48450d3ca0ae0ca9f1c6e81cf1af60e5b0dfa87cc3a72520ce2ef15d54de6dd'
|
2016-10-20 12:01:53 +02:00
|
|
|
'SKIP'
|
2019-05-03 22:43:18 +02:00
|
|
|
'171415ab075d1ac806f36c454feeb060f870416f24279b70104bba94bd6076d4'
|
2016-10-20 12:01:53 +02:00
|
|
|
'a5198267ceb04dceb6d2ea7800281a42b3f91fd02da55d2cc9ea20d47273ca29'
|
2019-05-03 22:43:18 +02:00
|
|
|
'fd2e5f5453f3e44a2cb640c796b85cd70da8359c703f94cd531d457ede8c77fa')
|
2019-04-08 13:32:49 +02:00
|
|
|
|
|
|
|
_backports=(
|
|
|
|
)
|
|
|
|
|
2018-06-25 00:35:42 +02:00
|
|
|
_configure_options=(
|
|
|
|
FREETYPE="pkg-config freetype2"
|
|
|
|
BUILD_FREETYPE="pkg-config freetype2"
|
|
|
|
--enable-mm-debug
|
|
|
|
--enable-nls
|
|
|
|
--enable-device-mapper
|
|
|
|
--enable-cache-stats
|
|
|
|
--enable-grub-mkfont
|
|
|
|
--enable-grub-mount
|
|
|
|
--prefix="/usr"
|
|
|
|
--bindir="/usr/bin"
|
|
|
|
--sbindir="/usr/bin"
|
|
|
|
--mandir="/usr/share/man"
|
|
|
|
--infodir="/usr/share/info"
|
|
|
|
--datarootdir="/usr/share"
|
|
|
|
--sysconfdir="/etc"
|
|
|
|
--program-prefix=""
|
|
|
|
--with-bootdir="/boot"
|
|
|
|
--with-grubdir="grub"
|
|
|
|
--disable-silent-rules
|
|
|
|
--disable-werror
|
|
|
|
)
|
2013-06-22 12:15:33 +02:00
|
|
|
|
2013-07-28 09:40:09 +02:00
|
|
|
prepare() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub/"
|
|
|
|
|
|
|
|
echo "Apply backports..."
|
|
|
|
local _c
|
|
|
|
for _c in "${_backports[@]}"; do
|
2019-05-03 22:43:18 +02:00
|
|
|
git log --oneline -1 "${_c}"
|
2019-04-08 13:32:49 +02:00
|
|
|
git cherry-pick -n "${_c}"
|
|
|
|
done
|
2015-12-15 16:59:37 +01:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Patch to detect of Arch Linux initramfs images by grub-mkconfig..."
|
2016-07-29 09:59:10 +02:00
|
|
|
patch -Np1 -i "${srcdir}/0003-10_linux-detect-archlinux-initramfs.patch"
|
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Patch to enable GRUB_COLOR_* variables in grub-mkconfig..."
|
2013-12-21 19:42:03 +01:00
|
|
|
## Based on http://lists.gnu.org/archive/html/grub-devel/2012-02/msg00021.html
|
2016-07-29 09:59:10 +02:00
|
|
|
patch -Np1 -i "${srcdir}/0004-add-GRUB_COLOR_variables.patch"
|
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Fix DejaVuSans.ttf location so that grub-mkfont can create *.pf2 files for starfield theme..."
|
2017-04-26 22:06:45 +02:00
|
|
|
sed 's|/usr/share/fonts/dejavu|/usr/share/fonts/dejavu /usr/share/fonts/TTF|g' -i "configure.ac"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Fix mkinitcpio 'rw' FS#36275..."
|
2017-04-26 22:06:45 +02:00
|
|
|
sed 's| ro | rw |g' -i "util/grub.d/10_linux.in"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Fix OS naming FS#33393..."
|
2017-04-26 22:06:45 +02:00
|
|
|
sed 's|GNU/Linux|Linux|' -i "util/grub.d/10_linux.in"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Pull in latest language files..."
|
2013-10-23 22:28:51 +02:00
|
|
|
./linguas.sh
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Remove not working langs which need LC_ALL=C.UTF-8..."
|
2017-04-26 22:06:45 +02:00
|
|
|
sed -e 's#en@cyrillic en@greek##g' -i "po/LINGUAS"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Avoid problem with unifont during compile of grub..."
|
2017-06-13 16:12:42 +02:00
|
|
|
# http://savannah.gnu.org/bugs/?40330 and https://bugs.archlinux.org/task/37847
|
2017-04-26 22:06:45 +02:00
|
|
|
cp "${srcdir}/unifont-${_UNIFONT_VER}.bdf" "unifont.bdf"
|
2019-04-08 13:32:49 +02:00
|
|
|
|
2019-05-03 22:43:18 +02:00
|
|
|
echo "Run bootstrap..."
|
|
|
|
./bootstrap \
|
|
|
|
--gnulib-srcdir="${srcdir}/gnulib/" \
|
|
|
|
--no-git
|
2013-07-28 09:40:09 +02:00
|
|
|
}
|
2012-06-28 19:51:38 +02:00
|
|
|
|
|
|
|
_build_grub-common_and_bios() {
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Set ARCH dependent variables for bios build..."
|
2013-10-23 22:28:51 +02:00
|
|
|
if [[ "${CARCH}" == 'x86_64' ]]; then
|
|
|
|
_EFIEMU="--enable-efiemu"
|
|
|
|
else
|
|
|
|
_EFIEMU="--disable-efiemu"
|
|
|
|
fi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Copy the source for building the bios part..."
|
2019-04-08 13:32:49 +02:00
|
|
|
cp -r "${srcdir}/grub/" "${srcdir}/grub-bios/"
|
|
|
|
cd "${srcdir}/grub-bios/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Add the grub-extra sources for bios build..."
|
2019-04-08 13:32:49 +02:00
|
|
|
install -d "${srcdir}/grub-bios/grub-extras"
|
|
|
|
cp -r "${srcdir}/grub-extras/915resolution" \
|
|
|
|
"${srcdir}/grub-bios/grub-extras/915resolution"
|
|
|
|
export GRUB_CONTRIB="${srcdir}/grub-bios/grub-extras/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Unset all compiler FLAGS for bios build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
unset CFLAGS
|
|
|
|
unset CPPFLAGS
|
|
|
|
unset CXXFLAGS
|
|
|
|
unset LDFLAGS
|
|
|
|
unset MAKEFLAGS
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run ./configure for bios build..."
|
2013-06-24 19:25:09 +02:00
|
|
|
./configure \
|
2012-06-28 19:51:38 +02:00
|
|
|
--with-platform="pc" \
|
|
|
|
--target="i386" \
|
|
|
|
"${_EFIEMU}" \
|
2013-10-23 22:28:51 +02:00
|
|
|
--enable-boot-time \
|
2018-06-25 00:35:42 +02:00
|
|
|
"${_configure_options[@]}"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make for bios build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
make
|
2012-06-28 19:51:38 +02:00
|
|
|
}
|
|
|
|
|
2013-06-22 12:15:33 +02:00
|
|
|
_build_grub-efi() {
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Copy the source for building the ${_EFI_ARCH} efi part..."
|
2019-04-08 13:32:49 +02:00
|
|
|
cp -r "${srcdir}/grub/" "${srcdir}/grub-efi-${_EFI_ARCH}/"
|
|
|
|
cd "${srcdir}/grub-efi-${_EFI_ARCH}/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Unset all compiler FLAGS for ${_EFI_ARCH} efi build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
unset CFLAGS
|
|
|
|
unset CPPFLAGS
|
|
|
|
unset CXXFLAGS
|
|
|
|
unset LDFLAGS
|
|
|
|
unset MAKEFLAGS
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run ./configure for ${_EFI_ARCH} efi build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
./configure \
|
2012-06-28 19:51:38 +02:00
|
|
|
--with-platform="efi" \
|
2013-06-22 12:15:33 +02:00
|
|
|
--target="${_EFI_ARCH}" \
|
2012-06-28 19:51:38 +02:00
|
|
|
--disable-efiemu \
|
2013-10-23 22:28:51 +02:00
|
|
|
--enable-boot-time \
|
2018-06-25 00:35:42 +02:00
|
|
|
"${_configure_options[@]}"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make for ${_EFI_ARCH} efi build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
make
|
2012-06-28 19:51:38 +02:00
|
|
|
}
|
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
_build_grub-emu() {
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Copy the source for building the emu part..."
|
2019-04-08 13:32:49 +02:00
|
|
|
cp -r "${srcdir}/grub/" "${srcdir}/grub-emu/"
|
|
|
|
cd "${srcdir}/grub-emu/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Unset all compiler FLAGS for emu build..."
|
2014-05-14 08:29:48 +02:00
|
|
|
unset CFLAGS
|
|
|
|
unset CPPFLAGS
|
|
|
|
unset CXXFLAGS
|
|
|
|
unset LDFLAGS
|
|
|
|
unset MAKEFLAGS
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run ./configure for emu build..."
|
2014-05-14 08:29:48 +02:00
|
|
|
./configure \
|
|
|
|
--with-platform="emu" \
|
|
|
|
--target="${_EMU_ARCH}" \
|
|
|
|
--enable-grub-emu-usb=no \
|
|
|
|
--enable-grub-emu-sdl=no \
|
|
|
|
--disable-grub-emu-pci \
|
2018-06-25 00:35:42 +02:00
|
|
|
"${_configure_options[@]}"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make for emu build..."
|
2014-05-14 08:29:48 +02:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2012-06-28 19:51:38 +02:00
|
|
|
build() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Build grub bios stuff..."
|
2012-06-28 19:51:38 +02:00
|
|
|
_build_grub-common_and_bios
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Build grub ${_EFI_ARCH} efi stuff..."
|
2013-06-22 12:15:33 +02:00
|
|
|
_build_grub-efi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
if [[ "${CARCH}" == "x86_64" ]] && [[ "${_IA32_EFI_IN_ARCH_X64}" == "1" ]]; then
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Build grub i386 efi stuff..."
|
2014-05-14 08:29:48 +02:00
|
|
|
_EFI_ARCH="i386" _build_grub-efi
|
|
|
|
fi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
if [[ "${_GRUB_EMU_BUILD}" == "1" ]]; then
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Build grub emu stuff..."
|
2014-05-14 08:29:48 +02:00
|
|
|
_build_grub-emu
|
|
|
|
fi
|
2012-06-28 19:51:38 +02:00
|
|
|
}
|
|
|
|
|
2013-06-22 12:15:33 +02:00
|
|
|
_package_grub-common_and_bios() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub-bios/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make install for bios build..."
|
2012-06-28 19:51:38 +02:00
|
|
|
make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Remove gdb debugging related files for bios build..."
|
2012-06-28 19:51:38 +02:00
|
|
|
rm -f "${pkgdir}/usr/lib/grub/i386-pc"/*.module || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/i386-pc"/*.image || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/i386-pc"/{kernel.exec,gdb_grub,gmodule.pl} || true
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Install /etc/default/grub (used by grub-mkconfig)..."
|
2013-06-22 12:15:33 +02:00
|
|
|
install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub"
|
2012-06-28 19:51:38 +02:00
|
|
|
}
|
|
|
|
|
2013-06-22 12:15:33 +02:00
|
|
|
_package_grub-efi() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub-efi-${_EFI_ARCH}/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make install for ${_EFI_ARCH} efi build..."
|
2013-06-24 19:25:09 +02:00
|
|
|
make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Remove gdb debugging related files for ${_EFI_ARCH} efi build..."
|
2013-06-22 12:15:33 +02:00
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EFI_ARCH}-efi"/*.module || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EFI_ARCH}-efi"/*.image || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EFI_ARCH}-efi"/{kernel.exec,gdb_grub,gmodule.pl} || true
|
|
|
|
}
|
2012-06-28 19:51:38 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
_package_grub-emu() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub-emu/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Run make install for emu build..."
|
2014-05-14 08:29:48 +02:00
|
|
|
make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Remove gdb debugging related files for emu build..."
|
2014-05-14 08:29:48 +02:00
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EMU_ARCH}-emu"/*.module || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EMU_ARCH}-emu"/*.image || true
|
|
|
|
rm -f "${pkgdir}/usr/lib/grub/${_EMU_ARCH}-emu"/{kernel.exec,gdb_grub,gmodule.pl} || true
|
|
|
|
}
|
|
|
|
|
2013-06-22 12:15:33 +02:00
|
|
|
package() {
|
2019-04-08 13:32:49 +02:00
|
|
|
cd "${srcdir}/grub/"
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Package grub ${_EFI_ARCH} efi stuff..."
|
2013-06-22 12:15:33 +02:00
|
|
|
_package_grub-efi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
if [[ "${CARCH}" == "x86_64" ]] && [[ "${_IA32_EFI_IN_ARCH_X64}" == "1" ]]; then
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Package grub i386 efi stuff..."
|
2014-05-14 08:29:48 +02:00
|
|
|
_EFI_ARCH="i386" _package_grub-efi
|
|
|
|
fi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2014-05-14 08:29:48 +02:00
|
|
|
if [[ "${_GRUB_EMU_BUILD}" == "1" ]]; then
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Package grub emu stuff..."
|
2014-05-14 08:29:48 +02:00
|
|
|
_package_grub-emu
|
|
|
|
fi
|
2016-07-29 09:59:10 +02:00
|
|
|
|
2018-10-17 10:53:52 +02:00
|
|
|
echo "Package grub bios stuff..."
|
2013-06-22 12:15:33 +02:00
|
|
|
_package_grub-common_and_bios
|
2012-06-28 19:51:38 +02:00
|
|
|
}
|