aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/linux/linux.inc
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2010-11-05 14:58:22 -0700
committerKoen Kooi <koen@openembedded.org>2010-11-22 21:25:42 +0100
commit5960e445d69978980c51749f65e119b08120a5d4 (patch)
tree1af433d9e77d82b0498170fee283a40c01346d99 /recipes/linux/linux.inc
parent8d1542c4bfd0fe41c2c942938018a2729f0d9bd5 (diff)
downloadopenembedded-5960e445d69978980c51749f65e119b08120a5d4.tar.gz
linux.inc: Fix logic error in CORTEXA8FIXUP test
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/linux/linux.inc')
-rw-r--r--recipes/linux/linux.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/linux/linux.inc b/recipes/linux/linux.inc
index 47da439de9..658fe848fc 100644
--- a/recipes/linux/linux.inc
+++ b/recipes/linux/linux.inc
@@ -110,7 +110,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 [ "${DISTRO_NAME}" = "Angstrom" -a "${CORTEXA8FIXUP}" = "yes" ] ; then
sed -i -e /CONFIG_ARM_ERRATA_430973/d ${WORKDIR}/defconfig
echo "CONFIG_ARM_ERRATA_430973=y" >> ${S}/.config
fi