mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: commencement: stage0-posix: Update supported systems.
* gnu/packages/commencement.scm (stage0-posix)[supported-systems]: Remove armhf-linux, add riscv64-linux. [arguments]: Update accordingly, add stage0-cpu setting for "Aarch64" and "riscv64".
This commit is contained in:
parent
f9fa47702b
commit
81e7165824
1 changed files with 5 additions and 3 deletions
|
@ -352,7 +352,7 @@ (define stage0-posix
|
|||
(base32
|
||||
"1ammifkj33205qrpfm84yb1c99lwgbn4jsl1hd08aab8c9ffz6p4"))))
|
||||
(supported-systems '("i686-linux" "x86_64-linux"
|
||||
"armhf-linux" "aarch64-linux"
|
||||
"aarch64-linux"
|
||||
"riscv64-linux"))
|
||||
(native-inputs
|
||||
`(("bootstrap-seeds" ,bootstrap-seeds)
|
||||
|
@ -380,8 +380,10 @@ (define stage0-posix
|
|||
(cond
|
||||
((or #$(target-x86-64?) #$(target-x86-32?))
|
||||
"x86")
|
||||
(#$(target-arm?)
|
||||
"armv7l")
|
||||
(#$(target-aarch64?)
|
||||
"AArch64")
|
||||
(#$(target-riscv64?)
|
||||
"riscv64")
|
||||
(else
|
||||
(error "stage0-posix: system not supported" target))))
|
||||
(kaem (string-append "../bootstrap-seeds/POSIX/"
|
||||
|
|
Loading…
Reference in a new issue