From: Khem Raj Date: Thu, 10 Sep 2020 01:47:36 +0000 (-0700) Subject: libucontext: Recognise riscv32 architecture X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~10105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67ec87e37d66fc287158e500d7f8465a0dd5d8c6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git libucontext: Recognise riscv32 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 ec988f19201..734ad9c953c 100644 --- a/meta/recipes-core/musl/libucontext_git.bb +++ b/meta/recipes-core/musl/libucontext_git.bb @@ -43,6 +43,7 @@ def map_kernel_arch(a, d): 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: if not d.getVar("TARGET_OS").startswith("linux"): return a