diff options
Diffstat (limited to 'packages/linux/linux-omap1.inc')
-rw-r--r-- | packages/linux/linux-omap1.inc | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/linux/linux-omap1.inc b/packages/linux/linux-omap1.inc new file mode 100644 index 0000000000..27e470a6a0 --- /dev/null +++ b/packages/linux/linux-omap1.inc @@ -0,0 +1,30 @@ +SECTION = "kernel" +DESCRIPTION = "Linux kernel for OMAP processors" +LICENSE = "GPL" +DEPENDS = "u-boot" + +COMPATIBLE_MACHINE = "omap5912osk" + +inherit kernel + +KERNEL_IMAGETYPE = "vmlinux" +KERNEL_OUTPUT = "${KERNEL_IMAGETYPE}" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig ${S}/.config + oe_runmake oldconfig +} + +do_deploy() { + if [ "${MACHINE}" == "omap5912osk" ]; then + install -d ${DEPLOY_DIR_IMAGE} + arm-linux-objcopy -O binary -R .note -R .comment -S ${KERNEL_OUTPUT} ${DEPLOY_DIR_IMAGE}/linux.bin + gzip -f -9 ${DEPLOY_DIR_IMAGE}/linux.bin + mkimage -A arm -O linux -T kernel -C gzip -a 0x10c08000 -e 0x10c08000 -n "OE" -d ${DEPLOY_DIR_IMAGE}/linux.bin.gz ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin + rm ${DEPLOY_DIR_IMAGE}/linux.bin.gz + fi +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |