blob: 9f33251cfc48a07c6cc5a738a94e51ba16351a53 (
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
|
SECTION = "kernel"
DESCRIPTION = "Linux kernel"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
KERNEL_IMAGETYPE = "uImage"
inherit kernel
require recipes-kernel/linux/linux-dtb.inc
KERNEL_DEVICETREE_imx6qsabrelite = "arch/arm/boot/dts/imx6q-sabrelite.dts"
COMPATIBLE_MACHINE = "imx6qsabrelite"
S = "${WORKDIR}/git"
BRANCH = "master"
SRC_URI = " \
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux;\
protocol=git;branch=${BRANCH} \
file://defconfig \
"
SRCREV="52addcf9d6669fa439387610bc65c92fa0980cef"
PV = "3.17-rc2"
# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
MACHINE_KERNEL_PR_append = "d+gitr${SRCPV}"
LINUX_VERSION_EXTENSION = "-sabrelite"
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
do_configure_prepend () {
cp '${WORKDIR}/defconfig' '${S}/.config'
}
|