diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2012-06-29 14:02:30 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-02 16:44:21 +0100 |
commit | ff3f912eed0270afa14d706fc1e57f8a1de2614b (patch) | |
tree | ef9fbbb8787cb6d11290b34ded3e1220efe2a4a2 /meta | |
parent | 8846728da016a964f581e3aa76ec9d457a3d795d (diff) | |
download | openembedded-core-contrib-ff3f912eed0270afa14d706fc1e57f8a1de2614b.tar.gz |
kernel-arch: Remove test for long-dead arm26 architecture.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel-arch.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index e1864223efa..4a30192c156 100644 --- a/meta/classes/kernel-arch.bbclass +++ b/meta/classes/kernel-arch.bbclass @@ -8,7 +8,7 @@ valid_archs = "alpha cris ia64 \ i386 x86 \ m68knommu m68k ppc powerpc powerpc64 ppc64 \ sparc sparc64 \ - arm arm26 \ + arm \ m32r mips \ sh sh64 um h8300 \ parisc s390 v850 \ @@ -21,7 +21,6 @@ def map_kernel_arch(a, d): valid_archs = d.getVar('valid_archs', True).split() if re.match('(i.86|athlon|x86.64)$', a): return 'x86' - elif re.match('arm26$', a): return 'arm26' elif re.match('armeb$', a): return 'arm' elif re.match('mips(el|64|64el)$', a): return 'mips' elif re.match('p(pc|owerpc)(|64)', a): return 'powerpc' |