unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67403] [PATCH 0/8] Coreboot related patches.
@ 2023-11-23 15:09 Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 1/8] gnu: ifdtool: Update to 4.22 Denis 'GNUtoo' Carikli
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:09 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

Hi,

This patchset updates some tools that use the Coreboot source, fixes a freedom
bug, code and also add two new tools (bucts and nvramtool).

The freedom bug is the bug #66986[1] ("ifdtool: Firmwares with missing source
code present in source code"). It is fixed because the files mentioned in this
bug report are gone in Coreboot 4.22. I've also done a quick grep for words
like "reverse engineering" and that didn't find any nonfree license.

So upstream probably finished moving the nonfree files in a separate
repositories.

[1]https://issues.guix.gnu.org/66986

Denis 'GNUtoo' Carikli (8):
  gnu: ifdtool: Update to 4.22.
  gnu: Add bucts.
  gnu: intelmetool: Update to 4.22.
  gnu: ifdtool: Update to new style.
  gnu: ifdtool: Use cc-for-target.
  gnu: intelmetool: Update to new style.
  gnu: intelmetool: Use cc-for-target.
  gnu: Add nvramtool.

 gnu/packages/flashing-tools.scm | 161 +++++++++++++++++++++++---------
 1 file changed, 117 insertions(+), 44 deletions(-)


base-commit: 5283d24062be62f59ff9f14fa7095ebcfcb7a9a4
-- 
2.41.0





^ permalink raw reply	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 1/8] gnu: ifdtool: Update to 4.22.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 2/8] gnu: Add bucts Denis 'GNUtoo' Carikli
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (ifdtool): Update to 4.22.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: Ib39395d4516440eae76920c5d58a51817736d385
---
 gnu/packages/flashing-tools.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 23d21ca6a9..be9a48898e 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -381,7 +381,7 @@ (define-public heimdall
 (define-public ifdtool
   (package
     (name "ifdtool")
-    (version "4.9")
+    (version "4.22")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -390,7 +390,7 @@ (define-public ifdtool
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0jidj29jh6p65d17k304wlzhxvp4p3c2namgcdwg2sxq8jfr0zlm"))))
+                "125qw98f8zfhq0d5rpawxsjghqxwmg6yha1r1dqmwbxd7i12bj8f"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 2/8] gnu: Add bucts.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 1/8] gnu: ifdtool: Update to 4.22 Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 3/8] gnu: intelmetool: Update to 4.22 Denis 'GNUtoo' Carikli
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (bucts): New variable
(ifdtool): Use coreboot-source and coreboot-version.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I5964f138c3947298f047afb16dd30b54c396018b
---
 gnu/packages/flashing-tools.scm | 73 ++++++++++++++++++++++++++++-----
 1 file changed, 63 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index be9a48898e..4fe78ce783 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -378,19 +378,72 @@ (define-public heimdall
 referred to as the \"Odin 3 protocol\".")
     (license license:expat)))
 
+(define-public coreboot-version "4.22")
+
+(define-public coreboot-source
+  (origin
+    (method git-fetch)
+    (uri (git-reference
+          (url "https://github.com/coreboot/coreboot")
+          (commit coreboot-version)))
+    (file-name (git-file-name "coreboot" coreboot-version))
+    (sha256
+     (base32
+      "125qw98f8zfhq0d5rpawxsjghqxwmg6yha1r1dqmwbxd7i12bj8f"))))
+
+(define-public bucts
+  (package
+    (name "bucts")
+    (version coreboot-version)
+    (source coreboot-source)
+    (inputs (list pciutils))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f ;no tests
+      #:make-flags #~(list (string-append "CC="
+                                          #$(cc-for-target))
+                           (string-append "DESTDIR="
+                                          #$output) "INSTALL=install"
+                           "PREFIX=/")
+      #:phases #~(modify-phases %standard-phases
+                   (delete 'configure) ;no configure script
+                   (add-after 'unpack 'enter-source
+                     (lambda _
+                       (chdir "util/bucts")))
+                   (add-after 'enter-source 'fixup-version
+                     (lambda _
+                       (substitute* "Makefile"
+                         (("^VERSION:=*")
+                          #$(string-append "VERSION:=" version)))))
+                   ;; no install target
+                   (replace 'install
+                     (lambda _
+                       (let ((bin (string-append #$output "/bin"))
+                             (doc (string-append #$output "/share/doc/bucts/"))
+                             (licenses (string-append #$output
+                                        "/share/licenses/bucts/")))
+                         (install-file "bucts" bin)
+                         (install-file "readme.md" doc)
+                         (install-file "../../COPYING" licenses)))))))
+    (home-page "https://coreboot.org")
+    (synopsis "Tool to manipulate swap boot firmware bootblocks on the Intel
+ I945 chipsets")
+    (description
+     "This package provides @command{bucts}.  That command can flip a
+ bit in the BUC.TS register of the Intel I945 chipsets and show the
+register status.  When the bit is set, it swaps the bootblock
+location.  Because the bootblock region is often set read-only by the
+default BIOS, this enables to bypass that restriction and is used as
+part of a procedure to replace the nonfree BIOS with free software on
+various computers (Lenovo X60, X60s, X60T, T60, probably more).")
+    (license license:gpl2)))
+
 (define-public ifdtool
   (package
     (name "ifdtool")
-    (version "4.22")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/coreboot/coreboot")
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "125qw98f8zfhq0d5rpawxsjghqxwmg6yha1r1dqmwbxd7i12bj8f"))))
+    (version coreboot-version)
+    (source coreboot-source)
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 3/8] gnu: intelmetool: Update to 4.22.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 1/8] gnu: ifdtool: Update to 4.22 Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 2/8] gnu: Add bucts Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 4/8] gnu: ifdtool: Update to new style Denis 'GNUtoo' Carikli
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (intelmetool): Use coreboot-version and
  coreboot-source.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: If1d78511c6b0752e3938fb274ac754693f76a116
---
 gnu/packages/flashing-tools.scm | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 4fe78ce783..1785bee910 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -467,16 +467,8 @@ (define-public ifdtool
 (define-public intelmetool
   (package
     (name "intelmetool")
-    (version "4.7")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://review.coreboot.org/p/coreboot")
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0nw555i0fm5kljha9h47bk70ykbwv8ddfk6qhz6kfqb79vzhy4h2"))))
+    (version coreboot-version)
+    (source coreboot-source)
     (build-system gnu-build-system)
     (inputs
      (list pciutils zlib))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 4/8] gnu: ifdtool: Update to new style.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (2 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 3/8] gnu: intelmetool: Update to 4.22 Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 5/8] gnu: ifdtool: Use cc-for-target Denis 'GNUtoo' Carikli
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (ifdtool): Update to new style.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: Id29bac48835edb8d24b996d0891e95d23bdeaed8
---
 gnu/packages/flashing-tools.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 1785bee910..5be725d4a1 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -446,18 +446,18 @@ (define-public ifdtool
     (source coreboot-source)
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags
-       (list "CC=gcc"
-             "INSTALL=install"
-             (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'chdir
-           (lambda _
-             (chdir "util/ifdtool")
-             #t))
-         (delete 'configure))           ; no configure script
-       #:tests? #f))                    ; no test suite
+     (list
+      #:make-flags
+      #~(list "CC=gcc"
+              "INSTALL=install"
+              (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'chdir
+            (lambda _
+              (chdir "util/ifdtool")))
+          (delete 'configure))           ; no configure script
+      #:tests? #f))                      ; no test suite
     (home-page "https://github.com/corna/me_cleaner/")
     (synopsis "Intel Firmware Descriptor dumper")
     (description "This package provides @command{ifdtool}, a program to
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 5/8] gnu: ifdtool: Use cc-for-target.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (3 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 4/8] gnu: ifdtool: Update to new style Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 6/8] gnu: intelmetool: Update to new style Denis 'GNUtoo' Carikli
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (ifdtool): Use cc-for-target.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I50513337dc69f8daad17966af1193da44e7b054e
---
 gnu/packages/flashing-tools.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 5be725d4a1..8959ed66ab 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -448,7 +448,7 @@ (define-public ifdtool
     (arguments
      (list
       #:make-flags
-      #~(list "CC=gcc"
+      #~(list (string-append "CC=" #$(cc-for-target))
               "INSTALL=install"
               (string-append "PREFIX=" #$output))
       #:phases
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 6/8] gnu: intelmetool: Update to new style.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (4 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 5/8] gnu: ifdtool: Use cc-for-target Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 7/8] gnu: intelmetool: Use cc-for-target Denis 'GNUtoo' Carikli
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (intelmetool): Update to new style.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I2c1996cdb2d41804bad55acef25375062edc11de
---
 gnu/packages/flashing-tools.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 8959ed66ab..c93e4616ea 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -473,18 +473,18 @@ (define-public intelmetool
     (inputs
      (list pciutils zlib))
     (arguments
-     `(#:make-flags
-       (list "CC=gcc"
-             "INSTALL=install"
-             (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-        (add-after 'unpack 'chdir
-          (lambda _
-            (chdir "util/intelmetool")
-            #t))
-        (delete 'configure)
-        (delete 'check))))
+     (list
+      #:make-flags
+      #~(list "CC=gcc"
+              "INSTALL=install"
+              (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'chdir
+            (lambda _
+              (chdir "util/intelmetool")))
+          (delete 'configure)
+          (delete 'check))))
     (home-page "https://github.com/zamaudio/intelmetool")
     (synopsis "Intel Management Engine tools")
     (description "This package provides tools for working with Intel
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 7/8] gnu: intelmetool: Use cc-for-target.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (5 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 6/8] gnu: intelmetool: Update to new style Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2023-11-23 15:27 ` [bug#67403] [PATCH 8/8] gnu: Add nvramtool Denis 'GNUtoo' Carikli
  2024-03-22  0:58 ` [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (intelmetool): Use cc-for-target.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I9c75eae35f30395528ecec5e44074fcbf04663ac
---
 gnu/packages/flashing-tools.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index c93e4616ea..705fd76d6f 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -475,7 +475,7 @@ (define-public intelmetool
     (arguments
      (list
       #:make-flags
-      #~(list "CC=gcc"
+      #~(list (string-append "CC=" #$(cc-for-target))
               "INSTALL=install"
               (string-append "PREFIX=" #$output))
       #:phases
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 8/8] gnu: Add nvramtool.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (6 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 7/8] gnu: intelmetool: Use cc-for-target Denis 'GNUtoo' Carikli
@ 2023-11-23 15:27 ` Denis 'GNUtoo' Carikli
  2024-03-22  0:58 ` [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2023-11-23 15:27 UTC (permalink / raw)
  To: 67403; +Cc: Denis 'GNUtoo' Carikli

* gnu/packages/flashing-tools.scm (nvramtool): New variable.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I4f1391d51cf861b281abb0cf7d46022b50e70c4e
---
 gnu/packages/flashing-tools.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 705fd76d6f..bf6726d40b 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -496,6 +496,34 @@ (define-public intelmetool
     ;; This is obviously an Intel thing, plus it requires <cpuid.h>.
     (supported-systems '("x86_64-linux" "i686-linux"))))
 
+(define-public nvramtool
+  (package
+    (name "nvramtool")
+    (version coreboot-version)
+    (source coreboot-source)
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:make-flags
+      #~(list (string-append "CC=" #$(cc-for-target))
+              "INSTALL=install"
+              (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'chdir
+            (lambda _
+              (chdir "util/nvramtool")))
+          (delete 'configure))           ; no configure script
+      #:tests? #f))                      ; no test suite
+    (home-page "https://coreboot.org")
+    (synopsis "Tool to read/write Coreboot settings")
+    (description "This package provides @command{nvramtool}.  It can list the
+available values for each Coreboot settings, read/write them, and restore
+their default values.  It also has lower level features like the ability to
+correct checksum if the settings data were corrupted, or ability to read/write
+individual bits in the CMOS memory holding the settings.")
+    (license license:gpl2)))
+
 (define-public me-cleaner
   (package
     (name "me-cleaner")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#67403] [PATCH 0/8] Coreboot related patches.
  2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
                   ` (7 preceding siblings ...)
  2023-11-23 15:27 ` [bug#67403] [PATCH 8/8] gnu: Add nvramtool Denis 'GNUtoo' Carikli
@ 2024-03-22  0:58 ` Denis 'GNUtoo' Carikli
  8 siblings, 0 replies; 10+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2024-03-22  0:58 UTC (permalink / raw)
  To: 67403

[-- Attachment #1: Type: text/plain, Size: 579 bytes --]

On Thu, 23 Nov 2023 16:09:41 +0100
Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> wrote:
> This patchset updates some tools that use the Coreboot source, fixes
> a freedom bug, code and also add two new tools (bucts and nvramtool).
[...]
> Denis 'GNUtoo' Carikli (8):
>   gnu: ifdtool: Update to 4.22.
>   gnu: Add bucts.
>   gnu: intelmetool: Update to 4.22.
>   gnu: ifdtool: Update to new style.
>   gnu: ifdtool: Use cc-for-target.
>   gnu: intelmetool: Update to new style.
>   gnu: intelmetool: Use cc-for-target.
>   gnu: Add nvramtool.
Ping.

Denis.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-03-22  0:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-23 15:09 [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 1/8] gnu: ifdtool: Update to 4.22 Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 2/8] gnu: Add bucts Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 3/8] gnu: intelmetool: Update to 4.22 Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 4/8] gnu: ifdtool: Update to new style Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 5/8] gnu: ifdtool: Use cc-for-target Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 6/8] gnu: intelmetool: Update to new style Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 7/8] gnu: intelmetool: Use cc-for-target Denis 'GNUtoo' Carikli
2023-11-23 15:27 ` [bug#67403] [PATCH 8/8] gnu: Add nvramtool Denis 'GNUtoo' Carikli
2024-03-22  0:58 ` [bug#67403] [PATCH 0/8] Coreboot related patches Denis 'GNUtoo' Carikli

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).