* [meta-handheld][PATCH 0/2] Little EzX fixes
@ 2011-12-09 0:29 Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 1/2] motorola-ezx-base.inc: do not define TARGET_ARCH Antonio Ospite
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Antonio Ospite @ 2011-12-09 0:29 UTC (permalink / raw)
To: openembedded-devel
Hi,
these are little touches for motorola-ezx in meta-handheld.
The first one is an actual fix, without it we can't build anything using EzX
MACHINEs. After this at least meta-toolchain builds fine.
The second one is taken from zaurus.inc, it makes settings less scattered
around motorola-ezx-base.inc.
Thanks,
Antonio
Antonio Ospite (2):
motorola-ezx-base.inc: do not define TARGET_ARCH
motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed
conf/machine/include/motorola-ezx-base.inc | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
--
Antonio Ospite
http://ao2.it
PGP public key ID: 0x4553B001
A: Because it messes up the order in which people normally read text.
See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?
^ permalink raw reply [flat|nested] 4+ messages in thread
* [meta-handheld][PATCH 1/2] motorola-ezx-base.inc: do not define TARGET_ARCH
2011-12-09 0:29 [meta-handheld][PATCH 0/2] Little EzX fixes Antonio Ospite
@ 2011-12-09 0:29 ` Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 2/2] motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed Antonio Ospite
2011-12-09 12:29 ` [meta-handheld][PATCH 0/2] Little EzX fixes Paul Eggleton
2 siblings, 0 replies; 4+ messages in thread
From: Antonio Ospite @ 2011-12-09 0:29 UTC (permalink / raw)
To: openembedded-devel
Removing TARGET_ARCH = "arm" fixes this error:
Error, the PACKAGE_ARCHS variable does not contain TUNE_PKGARCH (armv5te).
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
conf/machine/include/motorola-ezx-base.inc | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/conf/machine/include/motorola-ezx-base.inc b/conf/machine/include/motorola-ezx-base.inc
index ea1b0eb..3e22eec 100644
--- a/conf/machine/include/motorola-ezx-base.inc
+++ b/conf/machine/include/motorola-ezx-base.inc
@@ -4,7 +4,6 @@ MACHINE_CLASS = "motorola-ezx"
#
# Hardware-based properties
#
-TARGET_ARCH = "arm"
# Use tune-xscale per default. Machine independent feeds should be built with tune-strongarm.
require conf/machine/include/tune-xscale.inc
--
1.7.7.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [meta-handheld][PATCH 2/2] motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed
2011-12-09 0:29 [meta-handheld][PATCH 0/2] Little EzX fixes Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 1/2] motorola-ezx-base.inc: do not define TARGET_ARCH Antonio Ospite
@ 2011-12-09 0:29 ` Antonio Ospite
2011-12-09 12:29 ` [meta-handheld][PATCH 0/2] Little EzX fixes Paul Eggleton
2 siblings, 0 replies; 4+ messages in thread
From: Antonio Ospite @ 2011-12-09 0:29 UTC (permalink / raw)
To: openembedded-devel
Use PACKAGE_EXTRA_ARCHS_tune-xscale so we don't need to remove the
generic PACKAGE_EXTRA_ARCHS line in case we enable tune-iwmmxt.inc
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
conf/machine/include/motorola-ezx-base.inc | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/conf/machine/include/motorola-ezx-base.inc b/conf/machine/include/motorola-ezx-base.inc
index 3e22eec..5b0dbee 100644
--- a/conf/machine/include/motorola-ezx-base.inc
+++ b/conf/machine/include/motorola-ezx-base.inc
@@ -7,6 +7,7 @@ MACHINE_CLASS = "motorola-ezx"
# Use tune-xscale per default. Machine independent feeds should be built with tune-strongarm.
require conf/machine/include/tune-xscale.inc
+PACKAGE_EXTRA_ARCHS_tune-xscale += "iwmmxt"
# Uncomment this to use iwmmxt optimizations. Remove the above xscale stuff first
#require conf/machine/include/tune-iwmmxt.inc
@@ -27,9 +28,6 @@ MACHINE_DISPLAY_PPI = "180"
MACHINE_FEATURES = "alsa apm bluetooth kernel26 keyboard phone screen touchscreen usbgadget usbhost vfat"
MACHINE_FEATURES += " iwmmxt"
-# Comment this out if you change to tune-iwmmxt.inc above
-PACKAGE_EXTRA_ARCHS += "iwmmxt"
-
#
# Software/packages selection
#
--
1.7.7.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-handheld][PATCH 0/2] Little EzX fixes
2011-12-09 0:29 [meta-handheld][PATCH 0/2] Little EzX fixes Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 1/2] motorola-ezx-base.inc: do not define TARGET_ARCH Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 2/2] motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed Antonio Ospite
@ 2011-12-09 12:29 ` Paul Eggleton
2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2011-12-09 12:29 UTC (permalink / raw)
To: Antonio Ospite; +Cc: openembedded-devel
On Friday 09 December 2011 01:29:28 Antonio Ospite wrote:
> Hi,
>
> these are little touches for motorola-ezx in meta-handheld.
>
> The first one is an actual fix, without it we can't build anything using EzX
> MACHINEs. After this at least meta-toolchain builds fine.
>
> The second one is taken from zaurus.inc, it makes settings less scattered
> around motorola-ezx-base.inc.
>
> Thanks,
> Antonio
>
> Antonio Ospite (2):
> motorola-ezx-base.inc: do not define TARGET_ARCH
> motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed
>
> conf/machine/include/motorola-ezx-base.inc | 5 +----
> 1 files changed, 1 insertions(+), 4 deletions(-)
Merged to meta-handheld (with a very minor whitespace fix for 2/2), thanks.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-09 12:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-09 0:29 [meta-handheld][PATCH 0/2] Little EzX fixes Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 1/2] motorola-ezx-base.inc: do not define TARGET_ARCH Antonio Ospite
2011-12-09 0:29 ` [meta-handheld][PATCH 2/2] motorola-ezx-base.inc: enable "iwmmxt" as extra arch only when needed Antonio Ospite
2011-12-09 12:29 ` [meta-handheld][PATCH 0/2] Little EzX fixes Paul Eggleton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.