aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-06-01 12:17:36 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-06-01 12:17:36 +0200
commit1bef17834620f335fc1481c56a47429285acce59 (patch)
treef580dea60c162a0c14f5a250810cab8278add696
parentf8342d81113bb4f63eb1872d32a3c848744539c0 (diff)
downloadopenembedded-core-contrib-1bef17834620f335fc1481c56a47429285acce59.tar.gz
linux.inc: fix cortex errata logic
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r--recipes-kernel/linux/linux.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux.inc b/recipes-kernel/linux/linux.inc
index a8ddf7f162..77e3179fb3 100644
--- a/recipes-kernel/linux/linux.inc
+++ b/recipes-kernel/linux/linux.inc
@@ -115,7 +115,7 @@ do_configure_prepend() {
fi
# Enable thumb2 fixup for specific issue in angstrom toolchains when used on A8 r1p[012] silicon
- if [ "${DISTRO_NAME}" = "Angstrom" -o "${CORTEXA8FIXUP}" = "yes" ] ; then
+ if [ "${CORTEXA8FIXUP}" = "yes" ] ; then
sed -i -e /CONFIG_ARM_ERRATA_430973/d ${WORKDIR}/defconfig
echo "CONFIG_ARM_ERRATA_430973=y" >> ${S}/.config
fi