Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
grub: update to 2.04
- update grub to 2.04
- remove zfs dependecies
- needs overhaul
  • Loading branch information
wwwutz committed Apr 27, 2021
1 parent 306a489 commit 94ea231
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions grub.be0
@@ -1,18 +1,17 @@
#!/usr/bin/env beesh

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

SRCURL[0]="/src/mariux/beeroot/downloads/grub-${PKGVERSION}_p167_61ec2e300.tar.bz2"
# 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/5ce674ca6b2612d8939b9e6abed32934/grub-2.04.tar.gz"

# PATCHURL+=()

# EXCLUDE+=()

# build_in_sourcedir

# sourcesubdir_append src


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

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'
mee_configure() {
bee_configure \
--disable-libzfs \
--disable-efiemu \
--disable-nls
}

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

}

#mee_install() {
# bee_install
#}

0 comments on commit 94ea231

Please sign in to comment.