From 62942992831249d6d1c047c0a11c41d2ecccc4fc Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Wed, 3 Feb 2021 18:08:35 -0500 Subject: gnu: Return appropriate defconfig for ppc64 (non-LE) * gnu/packages/linux.scm (system->defconfig): Add "powerpc64-" prefix. --- gnu/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 86cf30b471..80afd125d9 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -184,6 +184,7 @@ (define-public (system->defconfig system) 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"))) -- cgit v1.2.3