all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Carl Dong <contact@carldong.me>
To: 46741@debbugs.gnu.org
Cc: Carl Dong <contact@carldong.me>
Subject: [bug#46741] [PATCH] gnu: Return appropriate defconfig for ppc64 (non-LE)
Date: Tue, 23 Feb 2021 22:03:12 -0500	[thread overview]
Message-ID: <20210224030312.458470-1-contact@carldong.me> (raw)

* 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 c87c5ffb09..30cbebf849 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -181,6 +181,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")))
 
-- 
2.30.1





             reply	other threads:[~2021-02-24  3:22 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-24  3:03 Carl Dong [this message]
2021-02-24  8:17 ` [bug#46741] [PATCH] gnu: Return appropriate defconfig for ppc64 (non-LE) Efraim Flashner
2021-02-24 20:30   ` Carl Dong
2021-02-25  6:09     ` Efraim Flashner
2021-02-25 10:22     ` Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210224030312.458470-1-contact@carldong.me \
    --to=contact@carldong.me \
    --cc=46741@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.