
Since the Armbian sources refer to linux 4.19.76 as being linux-mainline, all the patches from linux-4.19 were moved to linux-mainline_4.19 and the linux_4.19.76 recipes was named accordingly. This patch makes 4.19.76 as default version for linux Signed-off-by: Vicentiu Galanopulo <vicentiu@balena.io>
26 lines
750 B
BlitzBasic
26 lines
750 B
BlitzBasic
SECTION = "kernel"
|
|
DESCRIPTION = "Mainline Linux kernel with patches from megous"
|
|
|
|
inherit kernel
|
|
require recipes-kernel/linux/linux.inc
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
|
COMPATIBLE_MACHINE = "(sun4i|sun5i|sun7i|sun8i)"
|
|
|
|
# Pull in the devicetree files into the rootfs
|
|
RDEPENDS_kernel-base += "kernel-devicetree"
|
|
|
|
# Default is to use stable kernel version
|
|
# If you want to use latest git version set to "1"
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
PV = "4.19.76+git${SRCPV}"
|
|
SRCREV_pn-${PN} = "v4.19.76"
|
|
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git;protocol=git;branch=linux-4.19.y \
|
|
"
|
|
S = "${WORKDIR}/git"
|