diff options
author | Philip Balister <philip@balister.org> | 2007-08-24 22:44:17 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2007-08-24 22:44:17 +0000 |
commit | d260be2511026a0a8448bb5804eb33047765c9ce (patch) | |
tree | 3d6430d94a07d421386c747a5820cf34e7bd1571 /packages/linux/linux-omap.inc | |
parent | 778724cb7918c3cda2a2d23610a51dba58e7b6ba (diff) |
linux-omap : Add support for more machines. Clean up ABI handling. Move toward linux.inc compatible structure.
Diffstat (limited to 'packages/linux/linux-omap.inc')
-rw-r--r-- | packages/linux/linux-omap.inc | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/packages/linux/linux-omap.inc b/packages/linux/linux-omap.inc index e4ce5a1e3c..6bc1363737 100644 --- a/packages/linux/linux-omap.inc +++ b/packages/linux/linux-omap.inc @@ -11,13 +11,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} |