git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d1542c
)
linux.inc: Fix logic error in CORTEXA8FIXUP test
author
Steve Sakoman
<steve@sakoman.com>
Fri, 5 Nov 2010 21:58:22 +0000
(14:58 -0700)
committer
Koen Kooi
<koen@openembedded.org>
Mon, 22 Nov 2010 20:25:42 +0000
(21:25 +0100)
Signed-off-by: Koen Kooi <koen@openembedded.org>
recipes/linux/linux.inc
patch
|
blob
|
history
diff --git
a/recipes/linux/linux.inc
b/recipes/linux/linux.inc
index
47da439
..
658fe84
100644
(file)
--- 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