diff options
Diffstat (limited to 'packages/linux/linux-omap1_2.6.x+git.bb')
-rw-r--r-- | packages/linux/linux-omap1_2.6.x+git.bb | 41 |
1 files changed, 4 insertions, 37 deletions
diff --git a/packages/linux/linux-omap1_2.6.x+git.bb b/packages/linux/linux-omap1_2.6.x+git.bb index 4c1bb7ccd8..a599bffc72 100644 --- a/packages/linux/linux-omap1_2.6.x+git.bb +++ b/packages/linux/linux-omap1_2.6.x+git.bb @@ -1,43 +1,10 @@ -PR = "r0" -SECTION = "kernel" -DESCRIPTION = "Linux kernel for OMAP processors" -LICENSE = "GPL" +require linux-omap1.inc -SRC_URI = "git://source.mvista.com/git/linux-omap-2.6.git;protocol=git \ +PR = "r1" + +SRC_URI = "git://source.mvista.com/git/linux-omap-2.6.git;protocol=http \ file://defconfig" S = "${WORKDIR}/git" -KERNEL_IMAGETYPE = "vmlinux" - -DEPENDS = "u-boot" - -inherit kernel - -KERNEL_OUTPUT = "${KERNEL_IMAGETYPE}" KERNEL_RELEASE = "2.6.18-omap1" - -COMPATIBLE_HOST = 'arm.*-linux' - -do_configure_prepend() { -# if [ "${MACHINE}" == "omap5912osk" ] ; then -# oe_runmake omap_osk_5912_defconfig -# fi - install -m 0644 ${WORKDIR}/defconfig ${S}/.config - make 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 0x10008000 -e 0x10008000 -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 |