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
|
|
|
|
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
2015-07-29 14:15:17 +02:00
|
|
|
|
2019-05-30 15:20:44 +02:00
|
|
|
S = "${WORKDIR}/linux-${PV}"
|
|
|
|
|
2019-08-07 08:12:07 +02:00
|
|
|
SRC_URI[md5sum] = "622944bb4f6c3d6258dfbd506569e3d6"
|
|
|
|
SRC_URI[sha256sum] = "8c5bfdeadd35b56bc4b71142750c93142b3182870fd7ff66ab8f24e4d0283580"
|
2019-05-30 15:20:44 +02:00
|
|
|
|
|
|
|
SRC_URI = "https://git.kernel.org/torvalds/t/linux-${PV}.tar.gz \
|
|
|
|
file://0003-ARM-dts-nanopi-neo-air-Add-WiFi-eMMC.patch \
|
2015-06-10 12:18:51 +02:00
|
|
|
file://defconfig \
|
2015-06-08 13:56:29 +02:00
|
|
|
"
|
2019-05-30 15:20:44 +02:00
|
|
|
|
|
|
|
SRC_URI_append_orange-pi-zero += "\
|
|
|
|
file://0001-add-wifi-support.patch \
|
|
|
|
"
|
|
|
|
|
|
|
|
FILES_${KERNEL_PACKAGE_NAME}-base_append = " ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.builtin.modinfo"
|
|
|
|
|