Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 50 lines (38 sloc) 1.19 KB
#!/usr/bin/env beesh
# BEE_VERSION grub-2.06-0
# SRCURL[0]="/src/mariux/beeroot/downloads/grub-2.02_p167_61ec2e300.tar.bz2"
# https://ftp.gnu.org/gnu/grub/grub-2.04.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/cf0fd928b1e5479c8108ee52cb114363/grub-2.06.tar.xz"
PATCHURL+=("https://beehive.molgen.mpg.de/0fdfe3f3aee5edfae93e6315cabe6569/cve_2022_2601-video-readers-Add-artificial-limit-to-image-dimensio.patch")
PATCHURL+=("https://beehive.molgen.mpg.de/9952f5b864a249782b48c08ddb02ad8d/xfs-fix-v4-superblock.patch")
#https://www.linuxfromscratch.org/lfs/view/development/chapter08/grub.html
PATCHURL+=("https://beehive.molgen.mpg.de/da388905710bb4cbfbc7bd7346ff9174/grub-2.06-upstream_fixes-1.patch")
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
./autogen.sh
}
mee_configure() {
bee_configure \
--disable-libzfs \
--disable-efiemu \
--disable-nls
}
mee_build() {
bee_build
bee_install
make clean
bee_configure \
--with-platform=efi \
--target=x86_64 \
--disable-libzfs \
--disable-nls
bee_build
}
#mee_install() {
# bee_install
#}