2015-06-08 13:56:29 +02:00
|
|
|
SECTION = "kernel"
|
|
|
|
DESCRIPTION = "Mainline Linux kernel"
|
|
|
|
LICENSE = "GPLv2"
|
2018-06-01 13:18:37 +02:00
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
|
|
|
COMPATIBLE_MACHINE = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
2015-06-08 13:56:29 +02:00
|
|
|
|
|
|
|
inherit kernel
|
|
|
|
|
2015-06-10 12:18:51 +02:00
|
|
|
require linux.inc
|
2015-06-08 13:56:29 +02:00
|
|
|
|
2018-06-01 13:18:37 +02:00
|
|
|
# Since we're not using git, this doesn't make a difference, but we need to fill
|
|
|
|
# in something or kernel-yocto.bbclass will fail.
|
2018-01-12 00:06:13 +01:00
|
|
|
KBRANCH ?= "master"
|
|
|
|
|
2015-06-08 13:56:29 +02:00
|
|
|
# Pull in the devicetree files into the rootfs
|
2018-01-16 10:17:02 +01:00
|
|
|
RDEPENDS_${KERNEL_PACKAGE_NAME}-base += "kernel-devicetree"
|
2015-06-08 13:56:29 +02:00
|
|
|
|
2015-07-29 14:15:17 +02:00
|
|
|
# Default is to use stable kernel version
|
|
|
|
# If you want to use latest git version set to "1"
|
2018-06-01 13:18:37 +02:00
|
|
|
DEFAULT_PREFERENCE = "-1"
|
2015-07-29 14:15:17 +02:00
|
|
|
|
2015-06-08 13:56:29 +02:00
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
|
2018-06-01 13:18:37 +02:00
|
|
|
# v4.17-rc7
|
|
|
|
PV = "v4.17-rc7+git${SRCPV}"
|
|
|
|
SRCREV_pn-${PN} = "b04e217704b7f879c6b91222b066983a44a7a09f"
|
2015-07-29 14:15:17 +02:00
|
|
|
|
2015-12-16 06:23:29 +01:00
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git;protocol=git;branch=master \
|
2015-06-10 12:18:51 +02:00
|
|
|
file://defconfig \
|
2015-06-08 13:56:29 +02:00
|
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|