diff options
author | davidovski <david@davidovski.xyz> | 2022-01-18 16:41:30 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-18 16:41:30 +0000 |
commit | 62e6db1a0d4a1708867131473c9f48e2d8c9d523 (patch) | |
tree | 660744a2ab7f83adeac01fba99b5411438013b58 /repo/system | |
parent | 77511c89f1c191215b250a1d8f8db75b0f8268fb (diff) |
added efi tools
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/efibootmgr.xibuild | 20 | ||||
-rw-r--r-- | repo/system/efivar.xibuild | 20 | ||||
-rw-r--r-- | repo/system/grub.xibuild | 12 |
3 files changed, 50 insertions, 2 deletions
diff --git a/repo/system/efibootmgr.xibuild b/repo/system/efibootmgr.xibuild new file mode 100644 index 0000000..82020cf --- /dev/null +++ b/repo/system/efibootmgr.xibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +DEPS=(efivar popt) + +PKG_VER=17 +SOURCE=https://github.com/rhboot/efibootmgr/archive/$PKG_VER/efibootmgr-$PKG_VER.tar.gz +DESC="Tools and libraries to manipulate EFI variables" + +prepare () { + # fix an outdated hotfix declaration causing compilation failure + sed -e '/extern int efi_set_verbose/d' -i src/efibootmgr.c +} + +build () { + make EFIDIR=XI EFI_LOADER=grubx64.efi +} + +package () { + make EFIDIR=XI DESTDIR=$PKG_DEST install +} diff --git a/repo/system/efivar.xibuild b/repo/system/efivar.xibuild new file mode 100644 index 0000000..0d52229 --- /dev/null +++ b/repo/system/efivar.xibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +DEPS=() + +PKG_VER=37 +SOURCE=https://github.com/rhboot/efivar/releases/download/$PKG_VER/efivar-$PKG_VER.tar.bz2 +DESC="Tools and libraries to manupulate EFI variables" + +prepare () { + curl -SsL https://www.linuxfromscratch.org/patches/blfs/svn/efivar-$PKG_VER-gcc_9-1.patch > efivar-$PKG_VER.patch + patch -Np1 -i efivar-$PKG_VER.patch +} + +build () { + make CFLAGS="-O2 -Wno-stringop-truncation" +} + +package () { + make LIBDIR=/usr/lib DESTDIR=$PKG_DEST install +} diff --git a/repo/system/grub.xibuild b/repo/system/grub.xibuild index ff2b85e..3e8c1c2 100644 --- a/repo/system/grub.xibuild +++ b/repo/system/grub.xibuild @@ -1,13 +1,21 @@ #!/bin/bash -DEPS=(sh xz gettext device-mapper) +DEPS=(sh xz gettext device-mapper efibootmgr) PKG_VER=2.06 SOURCE=https://ftp.gnu.org/gnu/grub/grub-$PKG_VER.tar.xz DESC="GNU GRand Unified Bootloader v2" +prepare () { + curl -SsL https://unifoundry.com/pub/unifont/unifont-13.0.06/font-builds/unifont-13.0.06.pcf.gz > unifont-13.0.06.pcf.gz + gunzip -c unifont-13.0.06.pcf.gz > /usr/share/fonts/unifont/unifont.pcf + + unset {C,CPP,CXX,LD}FLAGS +} + build () { - ./configure --prefix=/usr --sysconfdir=/etc --disable-werror + ./configure --prefix=/usr --sysconfdir=/etc --disable-werror \ + --disable-efiemu --enable-grub-mkfont --with-platform=efi make } |