[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: gnu: edk2-tools: Enable submodules.
From: |
guix-commits |
Subject: |
03/12: gnu: edk2-tools: Enable submodules. |
Date: |
Mon, 27 May 2024 03:27:15 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit e6eadcb136cfe350fa4ef69805ed2857bcb34d5a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Apr 28 18:52:36 2024 +0300
gnu: edk2-tools: Enable submodules.
* gnu/packages/firmware.scm (edk2-tools)[source]: Checkout submodules.
[arguments]: Don't disable building brotli or xz compression.
Change-Id: I8b318373e38767e1a309e9e385f1626429bfbb20
---
gnu/packages/firmware.scm | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 7e0b75f728..ed79e989c1 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -833,11 +833,13 @@ after an operating system boots.")
(method git-fetch)
(uri (git-reference
(url "https://github.com/tianocore/edk2")
- (commit (string-append "edk2-stable" version))))
+ (commit (string-append "edk2-stable" version))
+ ;; EDK2 makes extensive use of submodules.
+ (recursive? #t)))
(file-name (git-file-name name version))
(sha256
(base32
- "1x0h89cz3ihihcp4n93bw708q9r3icprb8cjsrrfcgq10clavdzx"))))
+ "0y7jfpijgi099znhzjklnsczn0k0vm1d1qznq9x2a2sa0glydsin"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags
@@ -849,15 +851,6 @@ after an operating system boots.")
(add-after 'unpack 'change-directory
(lambda _
(chdir "BaseTools")))
- (add-after 'change-directory 'disable-some-tools
- (lambda _
- ;; Disable building brotli and xz, since we package them
- ;; separately, and it would require fetching submodules.
- (substitute* "Source/C/GNUmakefile"
- (("^[[:blank:]]+BrotliCompress[[:blank:]]+\\\\")
- "\\")
- (("^[[:blank:]]+LzmaCompress[[:blank:]]+\\\\")
- "\\"))))
(replace 'build
(lambda* (#:key (make-flags #~'()) #:allow-other-keys)
;; The default build target also runs tests.
- branch master updated (a3e5caa222 -> 4c39f6edeb), guix-commits, 2024/05/27
- 07/12: gnu: ovmf-arm: Update to 202402., guix-commits, 2024/05/27
- 04/12: gnu: Add ovmf-x86-64., guix-commits, 2024/05/27
- 01/12: gnu: e2fsprogs: Downgrade to 1.46.6., guix-commits, 2024/05/27
- 12/12: tests: install: Use a default qemu machine for arm architectures., guix-commits, 2024/05/27
- 06/12: gnu: ovmf-aarch64: Update to 202402., guix-commits, 2024/05/27
- 02/12: gnu: edk2-tools: Update to 202402., guix-commits, 2024/05/27
- 03/12: gnu: edk2-tools: Enable submodules.,
guix-commits <=
- 08/12: gnu: ovmf-riscv64: Update to 202402., guix-commits, 2024/05/27
- 11/12: gnu: ovmf: Deprecate in favor of ovmf-x86-64., guix-commits, 2024/05/27
- 05/12: gnu: Add ovmf-i686., guix-commits, 2024/05/27
- 09/12: gnu: Use new ovmf firmware packages., guix-commits, 2024/05/27
- 10/12: tests: install: Add support for aarch64 UEFI tests., guix-commits, 2024/05/27