summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti-staging_git.bb
blob: 9ce507bbfdef94abc23fb513adf14105828770d8 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
SECTION = "kernel"
DESCRIPTION = "Linux kernel for TI devices"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
KERNEL_IMAGETYPE = "uImage"

inherit kernel

# This function must be here BEFORE the require of linux-dtb.inc below.
# There is a "bug" in the base kernel.bbclass that after it's do_deploy
# step it does not return back to the ${S} directory but stays in the
# DEPLOY_DIR.  However, the do_deploy_append defined in linux-dtb.inc
# assumes that it is being run in the ${S} directory.  A patch is
# being submitted to fix this issue by either changing the do_deploy
# in the kernel.bbclass to do "cd -" as the last step or to add
# "cd ${S}" as the first line of do_deploy in linux-dtb.inc and this
# function can be removed once that change is available.
# If the function is not placed BEFORE the require then the change
# directory is not appended before the linux-dtb.inc changes.
do_deploy_append() {
    cd ${S}
}

require recipes-kernel/linux/linux-dtb.inc
require recipes-kernel/linux/setup-defconfig.inc

# Stage the power management firmware before building the kernel
# for ti33x SOC_FAMILY devices
DEPENDS_ti33x += "am33x-cm3"

# Default is to package all dts files for ti33x devices unless building
# for the specific beaglebone machine.
KERNEL_DEVICETREE_ti33x = "arch/arm/boot/dts/am335x-evm.dts arch/arm/boot/dts/am335x-evmsk.dts arch/arm/boot/dts/am335x-bone.dts"
KERNEL_DEVICETREE_beaglebone = "arch/arm/boot/dts/am335x-bone.dts"

COMPATIBLE_MACHINE = "ti33x"

S = "${WORKDIR}/git"

BRANCH = "ti-linux-3.8.y"

SRCREV = "d26595a42220789b81a9d243e2fc0837c7776360"
PV = "3.8.2"

# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
MACHINE_KERNEL_PR_append = "d+gitr${SRCPV}"

SRC_URI = "git://gitorious.ti.com/ti-linux-kernel/ti-linux-kernel.git;protocol=git;branch=${BRANCH} \
           file://defconfig \
          "

# Copy the am33x-cm3 firmware if it is available for ti33x SOC_FAMILY devices
do_compile_prepend_ti33x() {
    if [ -e "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" ]
    then
        cp "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" "${S}/firmware"
    fi
}