diff options
Diffstat (limited to 'packages/linux/linux-omap.inc')
-rw-r--r-- | packages/linux/linux-omap.inc | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/packages/linux/linux-omap.inc b/packages/linux/linux-omap.inc index e4ce5a1e3c..83f134b878 100644 --- a/packages/linux/linux-omap.inc +++ b/packages/linux/linux-omap.inc @@ -1,7 +1,9 @@ SECTION = "kernel" DESCRIPTION = "Linux kernel for OMAP processors" LICENSE = "GPL" -DEPENDS = ${@['u-boot','u-boot-omap2430sdp'][bb.data.getVar('MACHINE',d,1) == 'omap2430sdp']} +#DEPENDS = ${@['u-boot','u-boot-omap2430sdp'][bb.data.getVar('MACHINE',d,1) == 'omap2430sdp']} + +DEPENDS = uboot-utils inherit kernel @@ -11,13 +13,21 @@ module_autoload_ohci-hcd_omap5912osk = "ohci-hcd" do_configure_prepend() { - if [ "${TARGET_OS}" == "linux-gnueabi" -o "${TARGET_OS}" == "linux-uclibcgnueabi" ]; then - install -m 0644 ${WORKDIR}/defconfig.eabi ${S}/.config + rm -f ${S}/.config || true + + if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then + echo "CONFIG_AEABI=y" >> ${S}/.config + echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config else - install -m 0644 ${WORKDIR}/defconfig ${S}/.config + echo "# CONFIG_AEABI is not set" >> ${S}/.config + echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config fi - oe_runmake oldconfig + sed -e '/CONFIG_AEABI/d' \ + -e '/CONFIG_OABI_COMPAT=/d' \ + '${WORKDIR}/defconfig' >>'${S}/.config' + + yes '' | oe_runmake oldconfig } do_deploy() { install -d ${DEPLOY_DIR_IMAGE} |