From: Khem Raj Date: Fri, 12 Mar 2021 06:21:04 +0000 (-0800) Subject: libucontext: Recognize ppc64le architecture X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~8423 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03dec80604ae363c31a5f2b68eb3efdba7c35f1a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git libucontext: Recognize ppc64le architecture Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/musl/libucontext_git.bb b/meta/recipes-core/musl/libucontext_git.bb index 734ad9c953c..11affebb499 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: