diff options
author | Koen Kooi <koen@openembedded.org> | 2010-04-27 17:37:46 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-04-27 17:37:46 +0200 |
commit | 89e0552d92179c5fb6cf14ac6466bd25f3b7bbb1 (patch) | |
tree | 90e593034e864574b3fab74b04e4669185a88389 /recipes | |
parent | 0a23591a528374b60e76c0360770f225ccac67f3 (diff) |
linux.inc: add angstrom-only hack for angstrom-only toolchain issue
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/linux/linux.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes/linux/linux.inc b/recipes/linux/linux.inc index 39d04e19ae..6513db2d25 100644 --- a/recipes/linux/linux.inc +++ b/recipes/linux/linux.inc @@ -89,6 +89,12 @@ do_configure_prepend() { echo "CONFIG_ARM_THUMB=y" >> ${S}/.config fi + # Enable thumb2 fixup for specific issue in angstrom toolchains when used on A8 r1p[012] silicon + if [ "${DISTRO_NAME}" = "Angstrom" ] ; then + sed -i -e /CONFIG_ARM_ERRATA_430973/d ${WORKDIR}/defconfig + echo "CONFIG_ARM_ERRATA_430973=y" >> ${S}/.config + fi + # # endian support # |