[oe-commits] Steve Sakoman : linux.inc: Fix logic error in CORTEXA8FIXUP test

git version control git at git.openembedded.org
Mon Nov 22 21:22:39 UTC 2010


Module: openembedded.git
Branch: release-2010.12
Commit: 6ae772005d4aa7e56e22bb04d3206efce83d1405
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6ae772005d4aa7e56e22bb04d3206efce83d1405

Author: Steve Sakoman <steve at sakoman.com>
Date:   Fri Nov  5 14:58:22 2010 -0700

linux.inc: Fix logic error in CORTEXA8FIXUP test

Signed-off-by: Koen Kooi <koen at openembedded.org>

---

 recipes/linux/linux.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/linux/linux.inc b/recipes/linux/linux.inc
index 47da439..658fe84 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





More information about the Openembedded-commits mailing list