classes/kernel-arch.bbclass: Remove powerpc -> ppc conversion. Now both of them exist
authorStelios Koroneos <skoroneos@digital-opsis.com>
Tue, 27 Feb 2007 14:01:25 +0000 (14:01 +0000)
committerStelios Koroneos <skoroneos@digital-opsis.com>
Tue, 27 Feb 2007 14:01:25 +0000 (14:01 +0000)
Do some cleanup on the supported arches

classes/kernel-arch.bbclass

index b331d25..c50a7d5 100644 (file)
@@ -4,10 +4,14 @@
 # in the kernel source "arch" directory
 #
 
-valid_archs = "alpha cris ia64 m68knommu ppc sh \
-              sparc64 x86_64 arm h8300 m32r mips \
-              ppc64 sh64 um arm26 i386 m68k \
-              parisc s390 sparc v850"
+valid_archs = "alpha cris ia64 \
+               x86_64,i386 \
+               m68knommu m68k ppc powerpc ppc64  \
+              sparc sparc64 \
+               arm  arm26 \
+               m32r mips \
+              sh sh64 um h8300   \
+              parisc s390  v850"
 
 def map_kernel_arch(a, d):
        import bb, re
@@ -17,7 +21,6 @@ def map_kernel_arch(a, d):
        if   re.match('(i.86|athlon)$', a):     return 'i386'
        elif re.match('arm26$', a):             return 'arm26'
        elif re.match('armeb$', a):             return 'arm'
-       elif re.match('powerpc$', a):           return 'ppc'
        elif re.match('mipsel$', a):            return 'mips'
        elif re.match('sh(3|4)$', a):           return 'sh'
        elif a in valid_archs:                  return a