* 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 <[email protected]> --- 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 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
