mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 22:37:56 +00:00
8ba1f54665
* Machine compatible with only omap-a15 devices.
* The TI Staging tree will not be used to maintain K3.8. Instead,
this new tree is set up as a production tree. Pending features
for 3.8 will be implemented on this tree.
- Backported features from linux mainline
- Backported bug-fixes from linux mainline and linux-stable.
- Features implemented by the GLSDK team which maybe product
specific.
This is the tree on which GLSDK kernel releases will be made.
* This recipe is based off the Core SDK 2013.04.02 released kernel
recipe - recipes-kernel/linux/linux-ti-staging_3.8.bb
Signed-off-by: Siddharth Heroor <heroor@ti.com>
cc: Mrinmayee Hingolikar <mrinmayee@ti.com>
Acked-by: Chase Maupin <chase.maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
32 lines
919 B
BlitzBasic
32 lines
919 B
BlitzBasic
SECTION = "kernel"
|
|
DESCRIPTION = "Linux kernel for TI devices supported by the GLSDK product"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
inherit kernel
|
|
|
|
require recipes-kernel/linux/linux-dtb.inc
|
|
require recipes-kernel/linux/setup-defconfig.inc
|
|
|
|
KERNEL_DEVICETREE_omap5-evm = "arch/arm/boot/dts/omap5-sevm.dts arch/arm/boot/dts/omap5-uevm.dts"
|
|
KERNEL_DEVICETREE_dra7xx-evm = "arch/arm/boot/dts/dra7-evm.dts"
|
|
|
|
COMPATIBLE_MACHINE = "omap-a15"
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
BRANCH = "master"
|
|
|
|
SRCREV = "4e8193eb3b7465d7f67cd8c7e6c2ed99dad1a483"
|
|
PV = "3.8.13"
|
|
|
|
# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
|
|
MACHINE_KERNEL_PR_append = "a+gitr${SRCPV}"
|
|
|
|
SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-3-8-y-kernel.git;protocol=git;branch=${BRANCH} \
|
|
file://defconfig \
|
|
"
|