
This kernel version adds support for HDMI video on Allwinner's H3 SoC used by OrangePi Plus2 board
26 lines
829 B
BlitzBasic
26 lines
829 B
BlitzBasic
SECTION = "kernel"
|
|
DESCRIPTION = "Mainline Linux kernel"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
|
COMPATIBLE_MACHINE = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
|
|
|
inherit kernel
|
|
|
|
# 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.
|
|
KBRANCH ?= "master"
|
|
|
|
# Pull in the devicetree files into the rootfs
|
|
RDEPENDS_${KERNEL_PACKAGE_NAME}-base += "kernel-devicetree"
|
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
S = "${WORKDIR}/linux-${PV}"
|
|
|
|
SRC_URI[md5sum] = "a5899b46a3d146c65bc2ba724db2f4ca"
|
|
|
|
SRC_URI = "https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${PV}.tar.xz \
|
|
file://defconfig \
|
|
file://don-t-default-activate-regdb.patch \
|
|
file://0001-Enable-i2c0-on-OrangePi-Plus2-board.patch \
|
|
"
|