diff options
author | Koen Kooi <koen@openembedded.org> | 2007-02-05 18:18:42 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-02-05 18:18:42 +0000 |
commit | 3c48454f3a7801960f438a6719f94e18d85f3ef3 (patch) | |
tree | 357606e69f6c080d7f946d75daafc377a09f1e8a /packages | |
parent | 289fc2b5c33213bce23de2e50d118d75c604169d (diff) |
ep93xx-kernel: update to 2.6.20rc7, needs a new defconfig and discontigmem patch
Diffstat (limited to 'packages')
-rw-r--r-- | packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb | 55 |
1 files changed, 55 insertions, 0 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 new file mode 100644 index 0000000000..66cdbdefd2 --- /dev/null +++ b/packages/linux/ep93xx-kernel_2.6.19+2.6.20-rc7.bb @@ -0,0 +1,55 @@ +DESCRIPTION = "Linux Kernel for Cirrus Logic ep39xx compatible machines" +SECTION = "kernel" +LICENSE = "GPL" +PR = "r0" + +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://defconfig \ + " + +S = "${WORKDIR}/linux-2.6.19" + +inherit kernel + +KERNEL_IMAGETYPE = "zImage" + + + +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 + + +} + +do_deploy() { + install -d ${DEPLOY_DIR_IMAGE} + install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME} +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile + + |