GNU bug report logs - #64393
Update opensbi to 1.3

Previous Next

Package: guix-patches;

Reported by: Vagrant Cascadian <vagrant <at> debian.org>

Date: Sat, 1 Jul 2023 00:56:02 UTC

Severity: normal

Done: Vagrant Cascadian <vagrant <at> debian.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64393 in the body.
You can then email your comments to 64393 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#64393; Package guix-patches. (Sat, 01 Jul 2023 00:56:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vagrant Cascadian <vagrant <at> debian.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 01 Jul 2023 00:56:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Vagrant Cascadian <vagrant <at> debian.org>
To: guix-patches <at> gnu.org
Cc: ludo <at> gnu.org, efraim <at> flashner.co.il
Subject: Update opensbi to 1.3
Date: Fri, 30 Jun 2023 17:55:12 -0700
[Message part 1 (text/plain, inline)]
The attached patch updates opensbi to 1.3.

Everything that currently builds on master still builds, but neither xen
nor ganeti are currently building on master.

Rebuilding gnome (due to gnome-boxes) and in particular memtest86+ was
quite a surprise (still no idea what pulled that in)!

./pre-inst-env guix build --keep-going $(guix refresh --list-dependent opensbi-generic opensbi-qemu | sed -e 's,.*: ,,g' | tr ' ' '\n' | sed -e 's,@.*,,g' | grep -v -E '^xen|^ganeti' )
;;; note: source file /home/vagrant/src/guix-workspace/gnu/packages/firmware.scm
;;;       newer than compiled /home/vagrant/src/guix-workspace/gnu/packages/firmware.go
;;; note: source file /home/vagrant/src/guix-workspace/gnu/packages/firmware.scm
;;;       newer than compiled /gnu/store/b40icqh2jsb8iknq7cmv3izsppklmv9p-profile/lib/guile/3.0/site-ccache/gnu/packages/firmware.go
/gnu/store/dkbnwvmm5601pz5c2in5n5zk9qln6h82-gnome-42.4
/gnu/store/y77i374rfdhljks26hc5zqa24qxjizkl-genimage-15-1.ec44ae0
/gnu/store/0zpwiwd1826d94pkzzp241vxy00wy9pq-memtest86+-6.10
/gnu/store/4bbkfzgpnnj067jqvy5ny6w4ncm83yrr-virt-manager-4.1.0
/gnu/store/wlfblk03rr2pnvhg45dn70nc8xi14a4i-u-boot-sifive-unmatched-2022.10

But it is only 13 rebuilds in all, so should be ok for master.

live well,
  vagrant
[0001-gnu-opensbi-Update-to-1.3.patch (text/x-diff, inline)]
From b9d0ec78d8df83fbad6dd8762b5ed3bc678e627f Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian <vagrant <at> debian.org>
Date: Fri, 30 Jun 2023 16:19:16 -0700
Subject: [PATCH] gnu: opensbi: Update to 1.3.

* gnu/packages/firmware.scm (opensbi): Update to 1.3.
---
 gnu/packages/firmware.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index c7ca81c35a..c3e877cfbf 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -489,7 +489,7 @@ (define-public openbios-qemu-ppc
 (define* (make-opensbi-package platform name #:optional (arch "riscv64"))
   (package
     (name name)
-    (version "1.2")
+    (version "1.3")
     (source
      (origin
        (method git-fetch)
@@ -498,7 +498,7 @@ (define* (make-opensbi-package platform name #:optional (arch "riscv64"))
              (commit (string-append "v" version))))
        (file-name (git-file-name "opensbi" version))
        (sha256
-        (base32 "13k76ngmbs6xk8wm0vhc3fjs5w82g34wxs2zf4r27jd79m47xjb5"))))
+        (base32 "0shri9jlhi2g464l05vrkzr6v754m868rr4136kq2b86amypmg8f"))))
     (build-system gnu-build-system)
     (native-inputs
      (append

base-commit: 4b2a2161a5705a577dbc20497ffd94ac160de9f4
-- 
2.39.2

[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#64393; Package guix-patches. (Tue, 04 Jul 2023 19:07:01 GMT) Full text and rfc822 format available.

Message #8 received at 64393 <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Vagrant Cascadian <vagrant <at> debian.org>
Cc: 64393 <at> debbugs.gnu.org, ludo <at> gnu.org
Subject: Re: Update opensbi to 1.3
Date: Tue, 4 Jul 2023 22:06:11 +0300
[Message part 1 (text/plain, inline)]
On Fri, Jun 30, 2023 at 05:55:12PM -0700, Vagrant Cascadian wrote:
> The attached patch updates opensbi to 1.3.
> 
> Everything that currently builds on master still builds, but neither xen
> nor ganeti are currently building on master.
> 
> Rebuilding gnome (due to gnome-boxes) and in particular memtest86+ was
> quite a surprise (still no idea what pulled that in)!

Probably qemu, since we started building more of the files from source.

> ./pre-inst-env guix build --keep-going $(guix refresh --list-dependent opensbi-generic opensbi-qemu | sed -e 's,.*: ,,g' | tr ' ' '\n' | sed -e 's,@.*,,g' | grep -v -E '^xen|^ganeti' )
> ;;; note: source file /home/vagrant/src/guix-workspace/gnu/packages/firmware.scm
> ;;;       newer than compiled /home/vagrant/src/guix-workspace/gnu/packages/firmware.go
> ;;; note: source file /home/vagrant/src/guix-workspace/gnu/packages/firmware.scm
> ;;;       newer than compiled /gnu/store/b40icqh2jsb8iknq7cmv3izsppklmv9p-profile/lib/guile/3.0/site-ccache/gnu/packages/firmware.go
> /gnu/store/dkbnwvmm5601pz5c2in5n5zk9qln6h82-gnome-42.4
> /gnu/store/y77i374rfdhljks26hc5zqa24qxjizkl-genimage-15-1.ec44ae0
> /gnu/store/0zpwiwd1826d94pkzzp241vxy00wy9pq-memtest86+-6.10
> /gnu/store/4bbkfzgpnnj067jqvy5ny6w4ncm83yrr-virt-manager-4.1.0
> /gnu/store/wlfblk03rr2pnvhg45dn70nc8xi14a4i-u-boot-sifive-unmatched-2022.10
> 
> But it is only 13 rebuilds in all, so should be ok for master.
> 
> live well,
>   vagrant

LGTM!

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#64393; Package guix-patches. (Tue, 04 Jul 2023 21:48:02 GMT) Full text and rfc822 format available.

Message #11 received at 64393 <at> debbugs.gnu.org (full text, mbox):

From: Vagrant Cascadian <vagrant <at> debian.org>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: 64393 <at> debbugs.gnu.org, ludo <at> gnu.org
Subject: Re: Update opensbi to 1.3
Date: Tue, 04 Jul 2023 14:46:50 -0700
[Message part 1 (text/plain, inline)]
On 2023-07-04, Efraim Flashner wrote:
> On Fri, Jun 30, 2023 at 05:55:12PM -0700, Vagrant Cascadian wrote:
>> The attached patch updates opensbi to 1.3.
>> 
>> Everything that currently builds on master still builds, but neither xen
>> nor ganeti are currently building on master.
...
>> But it is only 13 rebuilds in all, so should be ok for master.
...
> LGTM!

Thanks, pushed as 9122736455a9085d51b71b269b7c26a695a474ef.

live well,
  vagrant
[signature.asc (application/pgp-signature, inline)]

Reply sent to Vagrant Cascadian <vagrant <at> debian.org>:
You have taken responsibility. (Wed, 05 Jul 2023 03:04:02 GMT) Full text and rfc822 format available.

Notification sent to Vagrant Cascadian <vagrant <at> debian.org>:
bug acknowledged by developer. (Wed, 05 Jul 2023 03:04:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 02 Aug 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 13 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.