From: Steve Sakoman Date: Fri, 5 Nov 2010 21:58:22 +0000 (-0700) Subject: linux.inc: Fix logic error in CORTEXA8FIXUP test X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5960e445d69978980c51749f65e119b08120a5d4;p=openembedded.git linux.inc: Fix logic error in CORTEXA8FIXUP test Signed-off-by: Koen Kooi --- 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