Skip to content

Commit

Permalink
grub: update to 2.04
Browse files Browse the repository at this point in the history
- update grub to 2.04
- remove zfs dependecies
  • Loading branch information
wwwutz authored and pmenzel committed Apr 27, 2021
1 parent 1961182 commit 14a8d97
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions grub.be0
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#!/usr/bin/env beesh

# BEE_VERSION grub-2.02_p167_61ec2e300-0
# BEE_VERSION grub-2.04-0

SRCURL[0]="/src/mariux/beeroot/downloads/grub-${PKGVERSION}_p167_61ec2e300.tar.bz2"
# https://ftp.gnu.org/gnu/grub/grub-2.04.tar.gz
# SRCURL[0]="/src/mariux/beeroot/downloads/grub-${PKGVERSION}_p167_61ec2e300.tar.bz2"

# PATCHURL+=()
SRCURL[0]="https://beehive.molgen.mpg.de/5ce674ca6b2612d8939b9e6abed32934/grub-2.04.tar.gz"

# EXCLUDE+=()
# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src


#mee_extract() {
# bee_extract "${@}"
#}
Expand All @@ -22,9 +22,14 @@ mee_patch() {
./autogen.sh
}

#mee_configure() {
# bee_configure
#}
mee_configure() {
bee_configure \
--with-platform=efi \
--target=x86_64 \
--disable-libzfs \
--disable-efiemu \
--disable-nls
}

#mee_build() {
# bee_build
Expand All @@ -33,14 +38,3 @@ mee_patch() {
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

# Install x86_64-efi
mee_install_post() {
start_cmd make clean
bee_configure \
--with-platform=efi \
--target=x86_64
bee_build
bee_install
}

0 comments on commit 14a8d97

Please sign in to comment.