summaryrefslogtreecommitdiff
path: root/packages/linux/linux-omap1_2.6.x+git.bb
blob: 7a5ff66af2f9966802bb7975a1c98d2c6bce8e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
PR      = "r0"
SECTION = "kernel"
DESCRIPTION = "Linux kernel for OMAP processors"
LICENSE = "GPL"

SRC_URI = "git://source.mvista.com/git/linux-omap-2.6.git;protocol=git"

S = "${WORKDIR}/git"

KERNEL_IMAGETYPE = "vmlinux"
KERNEL_OUTPUT = "arch/${ARCH}/boot/compressed/${KERNEL_IMAGETYPE}"

DEPENDS = "u-boot"

inherit kernel

COMPATIBLE_HOST = 'arm.*-linux'

do_configure_prepend() {
        if [ "${MACHINE}" == "omap5912osk" ] ; then
                 oe_runmake omap_osk_5912_defconfig
        fi

}        

do_deploy() {
        if [ "${MACHINE}" == "omap5912osk" ]; then
                install -d ${DEPLOY_DIR_IMAGE}
                arm-linux-objcopy -O binary -R .note -R .comment -S arch/arm/boot/compressed/vmlinux ${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