summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:32:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:36:06 +0000
commit673abd92f999829bdd67d0273c43570a62123a63 (patch)
tree63132d1ffc1cb5bf50d244b184ca8d58a9cbc85c /meta/recipes-kernel/linux/linux-omap.inc
parentfed61beb31c47e2d96af905a7047fe78d64c9bd0 (diff)
downloadpoky-673abd92f999829bdd67d0273c43570a62123a63.tar.gz
conf/machine: Drop older machines with no recent updates
These are all moving to meta-extras. Ideally in the future machines such as these will be maintained to topic specific layers as we move to a more layer oriented model. If this causes a problem for anyone please discuss it on the mailing list. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap.inc')
-rw-r--r--meta/recipes-kernel/linux/linux-omap.inc39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap.inc b/meta/recipes-kernel/linux/linux-omap.inc
deleted file mode 100644
index e164bad592..0000000000
--- a/meta/recipes-kernel/linux/linux-omap.inc
+++ /dev/null
@@ -1,39 +0,0 @@
1SECTION = "kernel"
2DESCRIPTION = "Linux kernel for TI OMAP devices"
3LICENSE = "GPL"
4
5KERNEL_OUTPUT = "arch/${ARCH}/boot/compressed/${KERNEL_IMAGETYPE}"
6
7inherit kernel deploy
8
9COMPATIBLE_MACHINE = "omap-zoom"
10
11do_configure_prepend() {
12
13 rm -f ${S}/.config || true
14
15 if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then
16 echo "CONFIG_AEABI=y" >> ${S}/.config
17 echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config
18 else
19 echo "# CONFIG_AEABI is not set" >> ${S}/.config
20 echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config
21 fi
22
23 sed -e '/CONFIG_AEABI/d' \
24 -e '/CONFIG_OABI_COMPAT=/d' \
25 '${WORKDIR}/defconfig-${MACHINE}' >>'${S}/.config'
26
27 yes '' | oe_runmake oldconfig
28
29}
30
31do_deploy() {
32 install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin
33 cd ${DEPLOYDIR}
34 ln -sf ${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin ${KERNEL_IMAGETYPE}-${MACHINE}.bin
35 tar -cvzf ${DEPLOYDIR}/modules-${KERNEL_RELEASE}-${MACHINE}.tgz -C ${D} lib
36}
37
38addtask deploy before do_populate_sysroot after do_install
39