All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arago.conf: Correct TOOLCHAIN_BRAND for ARM9 SOCs
@ 2013-05-06 21:30 Franklin S. Cooper Jr
  2013-05-06 21:31 ` Denys Dmytriyenko
  0 siblings, 1 reply; 8+ messages in thread
From: Franklin S. Cooper Jr @ 2013-05-06 21:30 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Linaro toolchain does not support ARM9 architecture.
* Use Arago toolchain if a ARM9 based SOC_FAMILY is being built.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index 3954360..048c480 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -21,7 +21,9 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbh
 
 # Toolchain should be selected by setting TOOLCHAIN_BRAND in local.conf
 # Set some sane defaults, in case someone forgets to set them in local.conf
-TOOLCHAIN_BRAND ?= "linaro"
+# ARM9 is not supported by the Linaro toolchain so default back to the Arago
+# toolchain for ARM9 based SOCs.
+TOOLCHAIN_BRAND ?= "${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)}"
 TOOLCHAIN_TYPE ?= "external"
 
 require conf/distro/include/toolchain-${TOOLCHAIN_TYPE}-${TOOLCHAIN_BRAND}.inc
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-05-07  3:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-06 21:30 [PATCH] arago.conf: Correct TOOLCHAIN_BRAND for ARM9 SOCs Franklin S. Cooper Jr
2013-05-06 21:31 ` Denys Dmytriyenko
2013-05-06 21:56   ` Cooper Jr., Franklin
2013-05-06 22:30     ` Denys Dmytriyenko
2013-05-06 23:03       ` Cooper Jr., Franklin
2013-05-06 23:05         ` Denys Dmytriyenko
2013-05-07  0:07           ` Cooper Jr., Franklin
2013-05-07  3:08             ` Denys Dmytriyenko

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.