diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-10-07 07:58:10 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-11-07 12:12:59 +0000 |
commit | 1581406e23911240979ce9d3fb90fa139c894a25 (patch) | |
tree | 2833859b0d5858ddbfe417dae2be1596dc82a24e | |
parent | 0d74462a5f2dc44a0b5e1eecf76f00863daceb20 (diff) | |
download | patches-1581406e23911240979ce9d3fb90fa139c894a25.tar patches-1581406e23911240979ce9d3fb90fa139c894a25.tar.gz |
gnu: Add efibootmgr.
* gnu/packages/linux.scm (efibootmgr): New variable.
-rw-r--r-- | gnu/packages/linux.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 73ccddbb61..73c177a07c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3152,3 +3152,48 @@ under OpenGL graphics workloads.") (description "This package provides a library and a command line interface to the variable facility of UEFI boot firmware.") (license license:lgpl2.1+))) + +(define-public efibootmgr + (package + (name "efibootmgr") + (version "14") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/rhinstaller/" name + "/releases/download/" version "/" name + "-" version ".tar.bz2")) + (sha256 + (base32 + "1n3sydvpr6yl040hhf460k7mrxby7laqd9dqs6pq0js1hijc2zip")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests. + #:make-flags (list (string-append "prefix=" %output) + (string-append "libdir=" %output "/lib") + ;; Override CFLAGS to add efivar include directory. + (string-append "CFLAGS=-O2 -g -flto -I" + (assoc-ref %build-inputs "efivar") + "/include/efivar")) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'branding + ;; Replace default loader path with something more familiar. + (lambda _ + (substitute* "src/efibootmgr.c" + (("EFI\\\\\\\\redhat") ; Matches 'EFI\\redhat'. + "EFI\\\\gnu")) + #t)) + (delete 'configure)))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("efivar" ,efivar) + ("popt" ,popt))) + (home-page "https://github.com/rhinstaller/efibootmgr") + (synopsis "Modify the Extensible Firmware Interface (EFI) boot manager") + (description + "@code{efibootmgr} is a user-space application to modify the Intel +Extensible Firmware Interface (EFI) Boot Manager. This application can +create and destroy boot entries, change the boot order, change the next +running boot option, and more.") + (license license:gpl2+))) |