linux-rp: disable OABI support for non-qemu targets

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4979 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2008-07-29 10:48:54 +00:00
parent a257966198
commit ff065cec2b
4 changed files with 8 additions and 4 deletions

View File

@ -103,7 +103,11 @@ do_configure() {
if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then
echo "CONFIG_AEABI=y" >> ${S}/.config
echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config
if [ "${MACHINE}" = "qemuarm" -o "${MACHINE}" = "qemuarmv6" -o "${MACHINE}" = "qemuarmv7" -o ]; then
echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config
else
echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config
fi
else
echo "# CONFIG_AEABI is not set" >> ${S}/.config
echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config

View File

@ -1,6 +1,6 @@
require linux-rp.inc
PR = "r34"
PR = "r35"
# Handy URLs
# git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git;protocol=git;tag=ef7d1b244fa6c94fb76d5f787b8629df64ea4046

View File

@ -1,6 +1,6 @@
require linux-rp.inc
PR = "r12"
PR = "r13"
DEFAULT_PREFERENCE = "-1"
DEFAULT_PREFERENCE_collie = "1"

View File

@ -1,6 +1,6 @@
require linux-rp.inc
PR = "r9"
PR = "r10"
DEFAULT_PREFERENCE = "-1"
DEFAULT_PREFERENCE_qemuarm = "1"