guix_mirror_bot pushed a commit to branch wip-riscv-bootstrap
in repository guix.

commit a85457babd2dc8c91a4503aa549145ce4c9b352c
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Mon Oct 21 14:56:32 2024 +0300

    gnu: %boot-mesboot6-inputs: Adjust for riscv64-linux.
    
    * gnu/packages/commencement.scm (%boot-mesboot6-inputs): Adjust a
    different existing list of packages depending on which system we are
    building for.
    
    Change-Id: Ida848be3a41b5694099fbc61c2bc40e46e587f04
---
 gnu/packages/commencement.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 245c2fa007..350d24cf64 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2661,7 +2661,9 @@ exec " gcc "/bin/" program
     ("sed" ,sed-mesboot)
     ("tar" ,tar-mesboot)
     ("xz" ,xz-mesboot)
-    ,@(fold alist-delete (%boot-mesboot5-inputs)
+    ,@(fold alist-delete (if (target-x86?)
+                             (%boot-mesboot5-inputs)
+                             (%boot-muslboot3-inputs))
             '("bash" "coreutils" "bootar" "kernel-headers"))))
 
 (define (%bootstrap-inputs+toolchain)

Reply via email to