2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-25 15:26:20 +00:00
repo/core/efibootmgr/build

12 lines
289 B
Plaintext
Raw Normal View History

2019-06-25 17:58:29 +00:00
#!/bin/sh -e
2019-06-25 18:02:54 +00:00
patch -p1 < efivar.patch
2019-06-25 17:58:29 +00:00
make EXTRA_CFLAGS=-Os EFIDIR=/boot/EFI
install -d "$1/usr/bin/"
install -Dm0755 efibootmgr/src/efibootmgr "$1/usr/bin/efibootmgr"
install -d "$1/usr/share/man/man8/"
install -Dm0644 efibootmgr/src/efibootmgr.8 "$1/usr/share/man/man8/efibootmgr.8"