Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] kernel-arch.bbclass: Allow 'baremetal' CPUs
@ 2015-09-09  1:19 Juro Bystricky
  2015-09-09  9:21 ` Phil Blundell
  0 siblings, 1 reply; 5+ messages in thread
From: Juro Bystricky @ 2015-09-09  1:19 UTC (permalink / raw)
  To: openembedded-core; +Cc: richard.purdie

Avoid "ERROR: cannot map <cpu> to a linux kernel architecture"
Not being able to map a CPU to a kernel architecture should not be treated as
an error when building baremetal toolchains for CPU <cpu> which does not have
a kernel source tree.

Rather then individually enumerating each additional (baremetal) CPU, allow them all.
This way the kernel-arch.bbclass does not need to be modified each time a support
for a new baremetal CPU is added.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
---
 meta/classes/kernel-arch.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass
index 211b72b..3ffe47c 100644
--- a/meta/classes/kernel-arch.bbclass
+++ b/meta/classes/kernel-arch.bbclass
@@ -31,6 +31,7 @@ def map_kernel_arch(a, d):
     elif re.match('microblazee[bl]', a):        return 'microblaze'
     elif a in valid_archs:                      return a
     else:
+        if d.getVar("TCLIBC", True) == "baremetal": return a;
         bb.error("cannot map '%s' to a linux kernel architecture" % a)
 
 export ARCH = "${@map_kernel_arch(d.getVar('TARGET_ARCH', True), d)}"
-- 
1.9.1



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

end of thread, other threads:[~2015-09-10 17:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-09  1:19 [PATCH] kernel-arch.bbclass: Allow 'baremetal' CPUs Juro Bystricky
2015-09-09  9:21 ` Phil Blundell
2015-09-09 21:27   ` Bystricky, Juro
2015-09-09 22:00     ` Phil Blundell
2015-09-10 17:50       ` Bystricky, Juro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox