All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] libucontext: Recognize ppc64le architecture
@ 2021-03-12  6:21 Khem Raj
  2021-03-12  6:21 ` [PATCH 2/4] libunwind: Do not assume libdir for ppc64 Khem Raj
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Khem Raj @ 2021-03-12  6:21 UTC (permalink / raw)
  To: openembedded-core; +Cc: Khem Raj

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-core/musl/libucontext_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/musl/libucontext_git.bb b/meta/recipes-core/musl/libucontext_git.bb
index 734ad9c953..11affebb49 100644
--- a/meta/recipes-core/musl/libucontext_git.bb
+++ b/meta/recipes-core/musl/libucontext_git.bb
@@ -40,8 +40,8 @@ def map_kernel_arch(a, d):
     elif re.match('aarch64_be_ilp32$', a):          return 'aarch64'
     elif re.match('mips(isa|)(32|)(r6|)(el|)$', a): return 'mips'
     elif re.match('mips(isa|)64(r6|)(el|)$', a):    return 'mips64'
+    elif re.match('p(pc64|owerpc64)(le)', a):       return 'ppc64'
     elif re.match('p(pc|owerpc)', a):               return 'ppc'
-    elif re.match('p(pc64|owerpc64)', a):           return 'ppc64'
     elif re.match('riscv64$', a):                   return 'riscv64'
     elif re.match('riscv32$', a):                   return 'riscv32'
     else:
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-03-14 22:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-12  6:21 [PATCH 1/4] libucontext: Recognize ppc64le architecture Khem Raj
2021-03-12  6:21 ` [PATCH 2/4] libunwind: Do not assume libdir for ppc64 Khem Raj
2021-03-12  6:21 ` [PATCH 3/4] go: Update to 1.16.2 Khem Raj
2021-03-12  6:21 ` [PATCH 4/4] go-dep: Remove Khem Raj
2021-03-14 16:31   ` [OE-core] " Richard Purdie
2021-03-14 16:55     ` Khem Raj
2021-03-14 16:58     ` Khem Raj
2021-03-14 22:13       ` Richard Purdie

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.