* [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout
@ 2011-07-23 1:59 Khem Raj
2011-07-23 1:59 ` [PATCH 2/2] libxcb: Add missing DEPENDS on libxdmcp Khem Raj
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Khem Raj @ 2011-07-23 1:59 UTC (permalink / raw)
To: openembedded-core
I believe that powerpc-linux is now a common file across 32bit/64bit
linux for powerpc be it uclibc or glibc. I compared the differences
between powerpc-linux-uclibc and powerpc-linux files and it
powerpc-linux was more uptodate and all the new stuff it had was needed
for uclibc anyway so we do not need to keep exact copy of powerpc-linux
as powerpc-linux-uclibc instead we use powerpc-linux for powerpc/uclibc
targets.
Secondly linux specific files were added in archinfo dictionary
which I think logically belongs to targetinfo dictionary therefore
moved them to targetinfo
now uclibc/powerpc is buildable again
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/classes/siteinfo.bbclass | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
delete mode 100644 meta/site/powerpc-linux-uclibc
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
index c5308b3..056c519 100644
--- a/meta/classes/siteinfo.bbclass
+++ b/meta/classes/siteinfo.bbclass
@@ -33,11 +33,11 @@ def siteinfo_data(d):
"mips64": "endian-big bit-64 mips64-common",
"mips64el": "endian-little bit-64 mips64-common",
"mipsel": "endian-little bit-32 mips-common",
- "powerpc": "endian-big bit-32 powerpc-common powerpc32-linux",
+ "powerpc": "endian-big bit-32 powerpc-common",
"nios2": "endian-little bit-32 nios2-common",
- "powerpc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
- "ppc": "endian-big bit-32 powerpc-common powerpc32-linux",
- "ppc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
+ "powerpc64": "endian-big bit-64 powerpc-common",
+ "ppc": "endian-big bit-32 powerpc-common",
+ "ppc64": "endian-big bit-64 powerpc-common",
"sh3": "endian-little bit-32 sh-common",
"sh4": "endian-little bit-32 sh-common",
"sparc": "endian-big bit-32",
@@ -62,8 +62,12 @@ def siteinfo_data(d):
"arm-linux-uclibceabi": "arm-linux-uclibc",
"armeb-linux-gnueabi": "armeb-linux",
"armeb-linux-uclibceabi": "armeb-linux-uclibc",
- "powerpc-linux-gnuspe": "powerpc-linux",
- "powerpc-linux-uclibcspe": "powerpc-linux-uclibc",
+ "powerpc-linux": "powerpc32-linux",
+ "powerpc-linux-uclibc": "powerpc-linux powerpc32-linux",
+ "powerpc-linux-gnuspe": "powerpc-linux powerpc32-linux",
+ "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc",
+ "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux",
+ "powerpc64-linux": "powerpc-linux",
}
hostarch = d.getVar("HOST_ARCH", True)
diff --git a/meta/site/powerpc-linux-uclibc b/meta/site/powerpc-linux-uclibc
deleted file mode 100644
index e69de29..0000000
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] libxcb: Add missing DEPENDS on libxdmcp
2011-07-23 1:59 [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
@ 2011-07-23 1:59 ` Khem Raj
2011-07-26 16:48 ` [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
2011-07-28 0:18 ` Saul Wold
2 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2011-07-23 1:59 UTC (permalink / raw)
To: openembedded-core
Observed this to fail when populating new tmpdir
from shared state
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/recipes-graphics/xcb/libxcb_1.7.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-graphics/xcb/libxcb_1.7.bb b/meta/recipes-graphics/xcb/libxcb_1.7.bb
index 0f30c88..daecf0f 100644
--- a/meta/recipes-graphics/xcb/libxcb_1.7.bb
+++ b/meta/recipes-graphics/xcb/libxcb_1.7.bb
@@ -3,9 +3,9 @@ include libxcb.inc
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=d763b081cb10c223435b01e00dc0aba7"
-PR = "r1"
+PR = "r2"
-DEPENDS += "libpthread-stubs xcb-proto-native"
+DEPENDS += "libpthread-stubs xcb-proto-native libxdmcp"
PACKAGES =+ "libxcb-xinerama"
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout
2011-07-23 1:59 [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
2011-07-23 1:59 ` [PATCH 2/2] libxcb: Add missing DEPENDS on libxdmcp Khem Raj
@ 2011-07-26 16:48 ` Khem Raj
2011-07-26 16:52 ` Saul Wold
2011-07-28 0:18 ` Saul Wold
2 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2011-07-26 16:48 UTC (permalink / raw)
To: openembedded-core
ping ? ppc/uclibc is broken in oe-core w/o this atm.
On Fri, Jul 22, 2011 at 6:59 PM, Khem Raj <raj.khem@gmail.com> wrote:
> I believe that powerpc-linux is now a common file across 32bit/64bit
> linux for powerpc be it uclibc or glibc. I compared the differences
> between powerpc-linux-uclibc and powerpc-linux files and it
> powerpc-linux was more uptodate and all the new stuff it had was needed
> for uclibc anyway so we do not need to keep exact copy of powerpc-linux
> as powerpc-linux-uclibc instead we use powerpc-linux for powerpc/uclibc
> targets.
>
> Secondly linux specific files were added in archinfo dictionary
> which I think logically belongs to targetinfo dictionary therefore
> moved them to targetinfo
>
> now uclibc/powerpc is buildable again
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> meta/classes/siteinfo.bbclass | 16 ++++++++++------
> 1 files changed, 10 insertions(+), 6 deletions(-)
> delete mode 100644 meta/site/powerpc-linux-uclibc
>
> diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
> index c5308b3..056c519 100644
> --- a/meta/classes/siteinfo.bbclass
> +++ b/meta/classes/siteinfo.bbclass
> @@ -33,11 +33,11 @@ def siteinfo_data(d):
> "mips64": "endian-big bit-64 mips64-common",
> "mips64el": "endian-little bit-64 mips64-common",
> "mipsel": "endian-little bit-32 mips-common",
> - "powerpc": "endian-big bit-32 powerpc-common powerpc32-linux",
> + "powerpc": "endian-big bit-32 powerpc-common",
> "nios2": "endian-little bit-32 nios2-common",
> - "powerpc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
> - "ppc": "endian-big bit-32 powerpc-common powerpc32-linux",
> - "ppc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
> + "powerpc64": "endian-big bit-64 powerpc-common",
> + "ppc": "endian-big bit-32 powerpc-common",
> + "ppc64": "endian-big bit-64 powerpc-common",
> "sh3": "endian-little bit-32 sh-common",
> "sh4": "endian-little bit-32 sh-common",
> "sparc": "endian-big bit-32",
> @@ -62,8 +62,12 @@ def siteinfo_data(d):
> "arm-linux-uclibceabi": "arm-linux-uclibc",
> "armeb-linux-gnueabi": "armeb-linux",
> "armeb-linux-uclibceabi": "armeb-linux-uclibc",
> - "powerpc-linux-gnuspe": "powerpc-linux",
> - "powerpc-linux-uclibcspe": "powerpc-linux-uclibc",
> + "powerpc-linux": "powerpc32-linux",
> + "powerpc-linux-uclibc": "powerpc-linux powerpc32-linux",
> + "powerpc-linux-gnuspe": "powerpc-linux powerpc32-linux",
> + "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc",
> + "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux",
> + "powerpc64-linux": "powerpc-linux",
> }
>
> hostarch = d.getVar("HOST_ARCH", True)
> diff --git a/meta/site/powerpc-linux-uclibc b/meta/site/powerpc-linux-uclibc
> deleted file mode 100644
> index e69de29..0000000
> --
> 1.7.4.1
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout
2011-07-26 16:48 ` [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
@ 2011-07-26 16:52 ` Saul Wold
0 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-07-26 16:52 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 07/26/2011 09:48 AM, Khem Raj wrote:
> ping ? ppc/uclibc is broken in oe-core w/o this atm.
>
RP is looking at the siteinfo stuff (both yours and Tom's).
I am working on the libxcb change, had some other build issues that
jammed me up yesterday.
Sau!
> On Fri, Jul 22, 2011 at 6:59 PM, Khem Raj<raj.khem@gmail.com> wrote:
>> I believe that powerpc-linux is now a common file across 32bit/64bit
>> linux for powerpc be it uclibc or glibc. I compared the differences
>> between powerpc-linux-uclibc and powerpc-linux files and it
>> powerpc-linux was more uptodate and all the new stuff it had was needed
>> for uclibc anyway so we do not need to keep exact copy of powerpc-linux
>> as powerpc-linux-uclibc instead we use powerpc-linux for powerpc/uclibc
>> targets.
>>
>> Secondly linux specific files were added in archinfo dictionary
>> which I think logically belongs to targetinfo dictionary therefore
>> moved them to targetinfo
>>
>> now uclibc/powerpc is buildable again
>>
>> Signed-off-by: Khem Raj<raj.khem@gmail.com>
>> ---
>> meta/classes/siteinfo.bbclass | 16 ++++++++++------
>> 1 files changed, 10 insertions(+), 6 deletions(-)
>> delete mode 100644 meta/site/powerpc-linux-uclibc
>>
>> diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
>> index c5308b3..056c519 100644
>> --- a/meta/classes/siteinfo.bbclass
>> +++ b/meta/classes/siteinfo.bbclass
>> @@ -33,11 +33,11 @@ def siteinfo_data(d):
>> "mips64": "endian-big bit-64 mips64-common",
>> "mips64el": "endian-little bit-64 mips64-common",
>> "mipsel": "endian-little bit-32 mips-common",
>> - "powerpc": "endian-big bit-32 powerpc-common powerpc32-linux",
>> + "powerpc": "endian-big bit-32 powerpc-common",
>> "nios2": "endian-little bit-32 nios2-common",
>> - "powerpc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
>> - "ppc": "endian-big bit-32 powerpc-common powerpc32-linux",
>> - "ppc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
>> + "powerpc64": "endian-big bit-64 powerpc-common",
>> + "ppc": "endian-big bit-32 powerpc-common",
>> + "ppc64": "endian-big bit-64 powerpc-common",
>> "sh3": "endian-little bit-32 sh-common",
>> "sh4": "endian-little bit-32 sh-common",
>> "sparc": "endian-big bit-32",
>> @@ -62,8 +62,12 @@ def siteinfo_data(d):
>> "arm-linux-uclibceabi": "arm-linux-uclibc",
>> "armeb-linux-gnueabi": "armeb-linux",
>> "armeb-linux-uclibceabi": "armeb-linux-uclibc",
>> - "powerpc-linux-gnuspe": "powerpc-linux",
>> - "powerpc-linux-uclibcspe": "powerpc-linux-uclibc",
>> + "powerpc-linux": "powerpc32-linux",
>> + "powerpc-linux-uclibc": "powerpc-linux powerpc32-linux",
>> + "powerpc-linux-gnuspe": "powerpc-linux powerpc32-linux",
>> + "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc",
>> + "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux",
>> + "powerpc64-linux": "powerpc-linux",
>> }
>>
>> hostarch = d.getVar("HOST_ARCH", True)
>> diff --git a/meta/site/powerpc-linux-uclibc b/meta/site/powerpc-linux-uclibc
>> deleted file mode 100644
>> index e69de29..0000000
>> --
>> 1.7.4.1
>>
>>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout
2011-07-23 1:59 [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
2011-07-23 1:59 ` [PATCH 2/2] libxcb: Add missing DEPENDS on libxdmcp Khem Raj
2011-07-26 16:48 ` [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
@ 2011-07-28 0:18 ` Saul Wold
2 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-07-28 0:18 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 07/22/2011 06:59 PM, Khem Raj wrote:
> I believe that powerpc-linux is now a common file across 32bit/64bit
> linux for powerpc be it uclibc or glibc. I compared the differences
> between powerpc-linux-uclibc and powerpc-linux files and it
> powerpc-linux was more uptodate and all the new stuff it had was needed
> for uclibc anyway so we do not need to keep exact copy of powerpc-linux
> as powerpc-linux-uclibc instead we use powerpc-linux for powerpc/uclibc
> targets.
>
> Secondly linux specific files were added in archinfo dictionary
> which I think logically belongs to targetinfo dictionary therefore
> moved them to targetinfo
>
> now uclibc/powerpc is buildable again
>
> Signed-off-by: Khem Raj<raj.khem@gmail.com>
> ---
> meta/classes/siteinfo.bbclass | 16 ++++++++++------
> 1 files changed, 10 insertions(+), 6 deletions(-)
> delete mode 100644 meta/site/powerpc-linux-uclibc
>
> diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
> index c5308b3..056c519 100644
> --- a/meta/classes/siteinfo.bbclass
> +++ b/meta/classes/siteinfo.bbclass
> @@ -33,11 +33,11 @@ def siteinfo_data(d):
> "mips64": "endian-big bit-64 mips64-common",
> "mips64el": "endian-little bit-64 mips64-common",
> "mipsel": "endian-little bit-32 mips-common",
> - "powerpc": "endian-big bit-32 powerpc-common powerpc32-linux",
> + "powerpc": "endian-big bit-32 powerpc-common",
> "nios2": "endian-little bit-32 nios2-common",
> - "powerpc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
> - "ppc": "endian-big bit-32 powerpc-common powerpc32-linux",
> - "ppc64": "endian-big bit-64 powerpc-common powerpc-linux powerpc64-linux",
> + "powerpc64": "endian-big bit-64 powerpc-common",
> + "ppc": "endian-big bit-32 powerpc-common",
> + "ppc64": "endian-big bit-64 powerpc-common",
> "sh3": "endian-little bit-32 sh-common",
> "sh4": "endian-little bit-32 sh-common",
> "sparc": "endian-big bit-32",
> @@ -62,8 +62,12 @@ def siteinfo_data(d):
> "arm-linux-uclibceabi": "arm-linux-uclibc",
> "armeb-linux-gnueabi": "armeb-linux",
> "armeb-linux-uclibceabi": "armeb-linux-uclibc",
> - "powerpc-linux-gnuspe": "powerpc-linux",
> - "powerpc-linux-uclibcspe": "powerpc-linux-uclibc",
> + "powerpc-linux": "powerpc32-linux",
> + "powerpc-linux-uclibc": "powerpc-linux powerpc32-linux",
> + "powerpc-linux-gnuspe": "powerpc-linux powerpc32-linux",
> + "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc",
> + "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux",
> + "powerpc64-linux": "powerpc-linux",
> }
>
> hostarch = d.getVar("HOST_ARCH", True)
> diff --git a/meta/site/powerpc-linux-uclibc b/meta/site/powerpc-linux-uclibc
> deleted file mode 100644
> index e69de29..0000000
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-07-28 0:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-23 1:59 [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
2011-07-23 1:59 ` [PATCH 2/2] libxcb: Add missing DEPENDS on libxdmcp Khem Raj
2011-07-26 16:48 ` [PATCH 1/2] siteinfo: Rework the siteinfo for powerpc to fix uclibc fallout Khem Raj
2011-07-26 16:52 ` Saul Wold
2011-07-28 0:18 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox