aboutsummaryrefslogtreecommitdiff
path: root/extra/efibootmgr
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2019-12-09 19:17:24 +0300
committerCem Keylan <cem@ckyln.com>2019-12-09 19:17:24 +0300
commit03423e0583057cbe5a16f8439183e2dbc0e8dd7c (patch)
tree81fe3ba69d94146f83fb5541d1fb2da0ac4eac08 /extra/efibootmgr
downloadrepository-03423e0583057cbe5a16f8439183e2dbc0e8dd7c.tar.gz
secondary commit
Diffstat (limited to 'extra/efibootmgr')
-rwxr-xr-xextra/efibootmgr/build10
-rw-r--r--extra/efibootmgr/checksums2
-rw-r--r--extra/efibootmgr/depends2
-rw-r--r--extra/efibootmgr/patches/efivar.patch14
-rw-r--r--extra/efibootmgr/sources2
-rw-r--r--extra/efibootmgr/version1
6 files changed, 31 insertions, 0 deletions
diff --git a/extra/efibootmgr/build b/extra/efibootmgr/build
new file mode 100755
index 00000000..e15840ed
--- /dev/null
+++ b/extra/efibootmgr/build
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+patch -p1 < efivar.patch
+
+make \
+ EXTRA_CFLAGS=-Os \
+ EFIDIR=/boot/EFI
+
+install -Dm0755 src/efibootmgr "$1/usr/bin/efibootmgr"
+install -Dm0644 src/efibootmgr.8 "$1/usr/share/man/man8/efibootmgr.8"
diff --git a/extra/efibootmgr/checksums b/extra/efibootmgr/checksums
new file mode 100644
index 00000000..cb79ce74
--- /dev/null
+++ b/extra/efibootmgr/checksums
@@ -0,0 +1,2 @@
+22a95ebe0d5c9fb2915b3a100450f8f37484d1dbb8b296f55b343cc84f10397d 17.tar.gz
+167ac36fb4bd59e90fede0422280117c0b50d0ac3c0c7d478fea427cb9a6944c efivar.patch
diff --git a/extra/efibootmgr/depends b/extra/efibootmgr/depends
new file mode 100644
index 00000000..a760e6c7
--- /dev/null
+++ b/extra/efibootmgr/depends
@@ -0,0 +1,2 @@
+efivar
+popt
diff --git a/extra/efibootmgr/patches/efivar.patch b/extra/efibootmgr/patches/efivar.patch
new file mode 100644
index 00000000..614195f3
--- /dev/null
+++ b/extra/efibootmgr/patches/efivar.patch
@@ -0,0 +1,14 @@
+diff --git a/src/efibootmgr.c b/src/efibootmgr.c
+index de38f01..4e1a680 100644
+--- a/src/efibootmgr.c
++++ b/src/efibootmgr.c
+@@ -1536,9 +1536,6 @@ parse_opts(int argc, char **argv)
+ "invalid numeric value %s\n",
+ optarg);
+ }
+- /* XXX efivar-36 accidentally doesn't have a public
+- * header for this */
+- extern int efi_set_verbose(int verbosity, FILE *errlog);
+ efi_set_verbose(opts.verbose - 2, stderr);
+ break;
+ case 'V':
diff --git a/extra/efibootmgr/sources b/extra/efibootmgr/sources
new file mode 100644
index 00000000..4afc6a0a
--- /dev/null
+++ b/extra/efibootmgr/sources
@@ -0,0 +1,2 @@
+https://github.com/rhboot/efibootmgr/archive/17.tar.gz
+patches/efivar.patch
diff --git a/extra/efibootmgr/version b/extra/efibootmgr/version
new file mode 100644
index 00000000..5e661b99
--- /dev/null
+++ b/extra/efibootmgr/version
@@ -0,0 +1 @@
+17 1