diff options
123 files changed, 6996 insertions, 3847 deletions
diff --git a/classes/dietlibc.bbclass b/classes/dietlibc.bbclass index 7c7b5fec81..2676385197 100644 --- a/classes/dietlibc.bbclass +++ b/classes/dietlibc.bbclass @@ -4,18 +4,18 @@ def dietlibc_after_parse(d): import bb # Remove the NLS cfg = oe_filter_out('--(dis|en)able-nls', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d) - # Remove shared and static and set it right - cfg += " --disable-nls --disbale-shared --enable-static" + # Remove shared enable static only + cfg += " --disable-nls --disable-shared --enable-static" bb.data.setVar('EXTRA_OECONF', cfg, d) cfg = bb.data.getVar('EXTRA_OEMAKE', d, 1) or "" cfg = oe_filter_out("\'CC=", bb.data.getVar('EXTRA_OEMAKE', d, 1) or "", d) - cfgtmp = "\'CC=diet ${CCACHE}" + cfgtmp = "\'CC=\"diet ${CCACHE}\"" cfgtmp += cfg bb.data.setVar('EXTRA_OEMAKE', cfgtmp, d) -python () { - dietlibc_after_parse(d) -} +#python () { +# dietlibc_after_parse(d) +#} set_dietlibc_env () { export CC="diet ${CC}" diff --git a/classes/insane.bbclass b/classes/insane.bbclass index c41b84a4c0..a6e4b6dce8 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -34,7 +34,7 @@ def package_qa_get_machine_dict(): "darwin9" : { "arm" : (40, 0, 0, True, True), }, - "linux" : { + "linux-gnu" : { "arm" : (40, 97, 0, True, True), "armeb": (40, 97, 0, False, True), "powerpc": (20, 0, 0, False, True), @@ -80,6 +80,9 @@ def package_qa_get_machine_dict(): "linux-gnuspe" : { "powerpc": (20, 0, 0, False, True), }, + "linux-uclibcspe" : { + "powerpc": (20, 0, 0, False, True), + }, } diff --git a/classes/siteinfo.bbclass b/classes/siteinfo.bbclass index 2bacd69488..c3e155bc18 100644 --- a/classes/siteinfo.bbclass +++ b/classes/siteinfo.bbclass @@ -23,26 +23,22 @@ def get_siteinfo_list(d): targetinfo = {\ "armeb-linux": "endian-big bit-32 common-linux common-glibc arm-common",\ "armeb-linux-gnu": "endian-big bit-32 common-linux common-glibc arm-common",\ - "armeb-linux-gnueabi": "endian-big bit-32 common-linux common-glibc arm-common armeb-linux",\ + "armeb-linux-gnueabi": "endian-big bit-32 common-linux common-glibc arm-co |
