diff options
author | Felix Domke <tmbinc@elitedvb.ne> | 2005-07-03 13:29:27 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-03 13:29:27 +0000 |
commit | a1ce802b1a54b39ec373c6aa2c3eba0d2acabdd3 (patch) | |
tree | e780adfd5a5785f1d14a3a268d31bf0463dceba2 /packages/linux/linux-omap1_2.6.12-rc2.bb | |
parent | e02facd583210817246e2b709dce5e35eeb2236f (diff) | |
parent | ec9615803bf76a4f792e0492c73f9068c9f89b1d (diff) |
merge of 909b9c4ac5356106de74fa307ae1a92da27d3abd
and a65b53634caf2c6a084fd9e5430e25f828fa85d7
Diffstat (limited to 'packages/linux/linux-omap1_2.6.12-rc2.bb')
-rw-r--r-- | packages/linux/linux-omap1_2.6.12-rc2.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/packages/linux/linux-omap1_2.6.12-rc2.bb b/packages/linux/linux-omap1_2.6.12-rc2.bb new file mode 100644 index 0000000000..a4be0b995e --- /dev/null +++ b/packages/linux/linux-omap1_2.6.12-rc2.bb @@ -0,0 +1,46 @@ +PR = "r2" +SECTION = "kernel" +DESCRIPTION = "Linux kernel for OMAP processors" +LICENSE = "GPL" + +SRC_URI = "http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.12-rc2.tar.bz2 \ + http://www.muru.com/linux/omap/patches/patch-2.6.12-rc2-omap1.bz2;patch=1 \ + file://defconfig" + + +S = "${WORKDIR}/linux-2.6.12-rc2" + +KERNEL_IMAGETYPE = "vmlinux" +KERNEL_OUTPUT = "arch/${ARCH}/boot/compressed/${KERNEL_IMAGETYPE}" +KERNEL_CCSUFFIX = "-3.3.3" + +#DEPENDS = "uboot" + +inherit kernel + +python __anonymous () { + import re + host = bb.data.getVar('HOST_SYS', d, 1) + if not re.match('arm.*-linux', host): + raise bb.parse.SkipPackage("incompatible with host %s" % host) +} + + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig ${S}/.config + oe_runmake oldconfig +} + +do_deploy_omap5912osk() { + install -d ${DEPLOY_DIR}/images + arm-linux-objcopy -O binary -R .note -R .comment -S arch/arm/boot/compressed/vmlinux ${DEPLOY_DIR}/linux.bin + gzip -f -9 ${DEPLOY_DIR}/linux.bin + mkimage -A arm -O linux -T kernel -C gzip -a 0x10c08000 -e 0x10c08000 -n "OE" -d ${DEPLOY_DIR}/linux.bin.gz ${DEPLOY_DIR}/uImage_bb.cc + cp ${DEPLOY_DIR}/uImage_bb.cc /tftpboot +# install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin +} + + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |