guix_mirror_bot pushed a commit to branch bootstrap-team in repository guix.
commit cc336942644a59e65f922b687dfc1235c51c5d5a Author: Efraim Flashner <[email protected]> AuthorDate: Thu Feb 5 17:21:02 2026 +0200 gnu: stage0-posix: Update to 1.9.1. * gnu/packages/commencement.scm (stage0-posix): Update to 1.9.1. [arguments]: Don't rename the executables while building. Change-Id: I49d5f8f82926b93686b05982df73f6feab014f31 --- gnu/packages/commencement.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 5278e22796..cb7ff7986b 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -361,7 +361,7 @@ pure Scheme to Tar and decompression in one easy step.") ;; `bootstrap-seeds, for x86 a 190 byte binary seed: `x86/hex0-seed'. (package (name "stage0-posix") - (version "1.7.0") + (version "1.9.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/oriansj/stage0-posix/" @@ -369,7 +369,7 @@ pure Scheme to Tar and decompression in one easy step.") "/stage0-posix-" version ".tar.gz")) (sha256 (base32 - "10c79z2c62gvrvpshvj94zz2hczdq1p4g1v0dakx1jiz2fx32vvn")))) + "0vr24kr4bl955mf0x3ig6wyipxnzrm1yyrrlzlsb02p9bmkxmzgl")))) (supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux" "riscv64-linux")) @@ -393,6 +393,9 @@ pure Scheme to Tar and decompression in one easy step.") #$(%current-system))) (stage0-cpu (cond + ;; Not enough of the other packages support x86_64. + #;(#$(target-x86-64?) + "AMD64") ((or #$(target-x86-64?) #$(target-x86-32?)) "x86") (#$(target-aarch64?) @@ -409,9 +412,7 @@ pure Scheme to Tar and decompression in one easy step.") (invoke "tar" "xvf" source) (chdir (string-append "stage0-posix-" #$version)) (mkdir-p bindir) - ;; Keep the same capitalization between the file name and the folder. - (rename-file "kaem.aarch64" "kaem.AArch64") - (invoke kaem (string-append "kaem." stage0-cpu)) + (invoke kaem (string-append "kaem." (string-downcase stage0-cpu))) (with-directory-excursion (string-append stage0-cpu "/bin") (install-file "hex2" bindir) (install-file "M1" bindir)
