summaryrefslogtreecommitdiff
path: root/packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb
diff options
context:
space:
mode:
Diffstat (limited to 'packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb')
-rw-r--r--packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb44
1 files changed, 0 insertions, 44 deletions
diff --git a/packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb b/packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb
deleted file mode 100644
index 642b13f607..0000000000
--- a/packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb
+++ /dev/null
@@ -1,44 +0,0 @@
-DESCRIPTION = "Linux Kernel for Cirrus Logic ep39xx compatible machines"
-SECTION = "kernel"
-LICENSE = "GPL"
-PR = "r1"
-
-COMPATIBLE_MACHINE = "ep93xx"
-
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-2.6.19.tar.bz2 \
- ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/testing/patch-2.6.20-rc7.bz2;patch=1 \
- file://dynamic-phys-offset-2.6.20-rc7.diff;patch=1 \
- file://defconfig \
- "
-
-S = "${WORKDIR}/linux-2.6.19"
-
-inherit kernel
-
-
-
-
-do_configure() {
- rm -f ${S}/.config
-
- if [ ! -e ${WORKDIR}/defconfig ]; then
- die "No default configuration for ${MACHINE} available."
- fi
-
-
- 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
- echo "# CONFIG_AEABI is not set" >> ${S}/.config
- echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config
- fi
-
- sed -e '/CONFIG_AEABI/d' \
- -e '/CONFIG_OABI_COMPAT=/d' \
- '${WORKDIR}/defconfig' >>'${S}/.config'
-
- yes '' | oe_runmake oldconfig
-
-
-}