mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 04:20:44 +02:00
gnu: ovmf-x86-64: Fix indentation.
* gnu/packages/firmware.scm (ovmf-x86-64): Fix indentation. Change-Id: I663987b2ea69c7d6e1d8eaf35ad6bd8a6395c7df
This commit is contained in:
parent
8b6e9acc26
commit
00d42f6b3f
1 changed files with 16 additions and 16 deletions
|
@ -1007,22 +1007,22 @@ Virtual Machines. OVMF contains a sample UEFI firmware for QEMU and KVM.")
|
|||
(inherit base)
|
||||
(name "ovmf-x86-64")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((fmw (string-append #$output "/share/firmware")))
|
||||
(mkdir-p fmw)
|
||||
(for-each
|
||||
(lambda (file)
|
||||
(copy-file
|
||||
(string-append "Build/OvmfX64/RELEASE_GCC"
|
||||
"/FV/" file ".fd")
|
||||
(string-append fmw "/" (string-downcase file) "_x64.bin")))
|
||||
(list "OVMF"
|
||||
"OVMF_CODE"
|
||||
"OVMF_VARS"))))))))))))
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((fmw (string-append #$output "/share/firmware")))
|
||||
(mkdir-p fmw)
|
||||
(for-each
|
||||
(lambda (file)
|
||||
(copy-file
|
||||
(string-append "Build/OvmfX64/RELEASE_GCC"
|
||||
"/FV/" file ".fd")
|
||||
(string-append fmw "/" (string-downcase file) "_x64.bin")))
|
||||
(list "OVMF"
|
||||
"OVMF_CODE"
|
||||
"OVMF_VARS"))))))))))))
|
||||
|
||||
(define-public ovmf-i686
|
||||
(let ((base (make-ovmf-firmware "i686")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue