me
/
guix
Archived
1
0
Fork 0

gnu: Return appropriate defconfig for ppc64 (non-LE)

* gnu/packages/linux.scm (system->defconfig): Add "powerpc64-" prefix.
master
Carl Dong 2021-02-03 18:08:35 -05:00
parent 811a2015a2
commit 6294299283
No known key found for this signature in database
GPG Key ID: 0CC52153197991A5
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@
defconfig. Return the appropriate make target if applicable, otherwise return
\"defconfig\"."
(cond ((string-prefix? "powerpc-" system) "pmac32_defconfig")
((string-prefix? "powerpc64-" system) "ppc64_defconfig")
((string-prefix? "powerpc64le-" system) "ppc64_defconfig")
(else "defconfig")))