all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: spacecadet@purge.sh
To: 67119@debbugs.gnu.org
Subject: [bug#67119] [PATCH 2/4] gnu: ovmf: Add OVMF_CODE and OVMF_VARS files.
Date: Sun, 12 Nov 2023 03:02:17 +0000	[thread overview]
Message-ID: <b891d6e1940d959979fc355f8e102f92@purge.sh> (raw)
In-Reply-To: <a2d97e6834a178809e79e50b463fd29c@purge.sh>

Add OVMF_CODE.fd and OVMF_VARS.fs to outputs as ovmf_code_arch.bin and
ovmf_vars_arch.bin, respectively, for both ia32 and x64 architectures.
---
  gnu/packages/firmware.scm | 17 +++++++++++------
  1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index fd8b6bb8f0..53b89e4d90 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -954,12 +954,17 @@ (define-public ovmf
                  (let ((fmw (string-append #$output "/share/firmware"))
                        (toolchain-ver #$toolchain-ver))
                    (mkdir-p fmw)
-                  (copy-file (string-append "Build/OvmfIa32/RELEASE_" 
toolchain-ver "/FV/OVMF.fd")
-                             (string-append fmw "/ovmf_ia32.bin"))
-                  #$@(if (string=? "x86_64-linux" (%current-system))
-                         '((copy-file (string-append 
"Build/OvmfX64/RELEASE_" toolchain-ver "/FV/OVMF.fd")
-                                      (string-append fmw 
"/ovmf_x64.bin")))
-                         '())))))))
+                  (for-each
+                    (lambda (file)
+                      (copy-file (string-append 
"Build/OvmfIa32/RELEASE_" toolchain-ver "/FV/" file ".fd")
+                                 (string-append fmw "/" 
(string-downcase file) "_ia32.bin"))
+                      #$@(if (string=? "x86_64-linux" 
(%current-system))
+                           '((copy-file (string-append 
"Build/OvmfX64/RELEASE_" toolchain-ver "/FV/" file ".fd")
+                                        (string-append fmw "/" 
(string-downcase file) "_x64.bin")))
+                           '()))
+                    (list "OVMF"
+                          "OVMF_CODE"
+                          "OVMF_VARS"))))))))
        (native-inputs
         `(("acpica" ,acpica)
           ("gcc@5" ,gcc-5)
-- 
2.41.0




  reply	other threads:[~2023-11-12  3:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-12  2:48 [bug#67119] [PATCH 1/4] gnu: ovmf: Update to 202308 spacecadet
2023-11-12  3:02 ` spacecadet [this message]
2023-11-12  3:06 ` [bug#67119] [PATCH 3/4] gnu: ovmf: Update ovmf-aarch64 to use GCC5 spacecadet
2023-11-12  3:07 ` [bug#67119] [PATCH 4/4] gnu: ovmf: Update ovmf-arm with GCC5 spacecadet
2023-12-11 22:34 ` [bug#67119] [PATCH 1/4] gnu: ovmf: Update to 202308 Ludovic Courtès
2023-12-19 14:32 ` bug#67119: " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b891d6e1940d959979fc355f8e102f92@purge.sh \
    --to=spacecadet@purge.sh \
    --cc=67119@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.