guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Return appropriate defconfig for ppc64 (non-


From: guix-commits
Subject: branch master updated: gnu: Return appropriate defconfig for ppc64 (non-LE)
Date: Thu, 25 Feb 2021 20:56:23 -0500

This is an automated email from the git hooks/post-receive script.

carl pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6294299  gnu: Return appropriate defconfig for ppc64 (non-LE)
6294299 is described below

commit 62942992831249d6d1c047c0a11c41d2ecccc4fc
Author: Carl Dong <contact@carldong.me>
AuthorDate: Wed Feb 3 18:08:35 2021 -0500

    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 86cf30b..80afd12 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -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")))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]