diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-19 08:13:56 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-19 08:13:56 +0000 |
commit | a290eafb5fe4cc033597745271adf06c31420e8c (patch) | |
tree | cdb6d362fb3be781635359043f46b73f76e7ae7c /classes | |
parent | af611983e0f4a013e1fb5a19715c6e803dbb68d7 (diff) |
insane.bbclass: added dict entries for mipsel, i386, x86_64
x86_64 can not be detected properly with this code - needed change:
- ELFFile.my_assert(self.data[ELFFile.EI_CLASS], chr(ELFFile.ELFCLASS32)) # only 32 bits
+ ELFFile.my_assert(self.data[ELFFile.EI_CLASS], chr(ELFFile.ELFCLASS64))
Diffstat (limited to 'classes')
-rw-r--r-- | classes/insane.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index cda2ebc917..c0c1516838 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -37,10 +37,13 @@ def package_qa_get_machine_dict(): "linux" : { "arm" : (40, 97, 0, True), "armeb": (40, 97, 0, False), "powerpc": (20, 0, 0, False), + "i386": ( 3, 0, 0, True), + "x64_64": (62, 0, 0, True), }, "linux-uclibc" : { "arm" : (40, 97, 0, True), "armeb": (40, 97, 0, False), "powerpc": (20, 0, 0, False), + "mipsel": ( 8, 0, 0, True), }, } |