2020-02-28 21:55:55 +01:00
|
|
|
SECTION = "kernel"
|
2022-04-21 21:23:20 +02:00
|
|
|
LICENSE = "GPL-2.0-only"
|
2021-08-23 18:39:23 +02:00
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
2020-02-28 21:55:55 +01:00
|
|
|
COMPATIBLE_MACHINE = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
|
|
|
|
|
|
|
inherit kernel
|
|
|
|
|
|
|
|
require linux.inc
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
DEPENDS += "rsync-native"
|
|
|
|
|
|
|
|
# Pull in the devicetree files into the rootfs
|
|
|
|
RDEPENDS_${KERNEL_PACKAGE_NAME}-base += "kernel-devicetree"
|
|
|
|
|
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
|
linux-mainline: fix 'devtool modify' command fail
Traceback (most recent call last):
File "${TOPDIR}/../src/poky/scripts/devtool", line 338, in <module>
ret = main()
File "${TOPDIR}/../src/poky/scripts/devtool", line 325, in main
ret = args.func(args, config, basepath, workspace)
File "${TOPDIR}/../src/poky/scripts/lib/devtool/standard.py", line 834, in modify
if (os.path.exists(srcdir) and os.listdir(srcdir)) and (kernelVersion in staging_kerVer and staging_kbranch == kbranch):
TypeError: 'in <string>' requires string as left operand, not NoneType
Where 'kernelVersion' is None that cause an error.
In the code: "kernelVersion = rd.getVar('LINUX_VERSION')"
So LINUX_VERSION should be initialized
Signed-off-by: Ilja Byckevich <iljabyckevich@gmail.com>
2023-02-02 10:38:29 +01:00
|
|
|
LINUX_VERSION ?= "${PV}"
|
|
|
|
|
2020-02-28 21:55:55 +01:00
|
|
|
S = "${WORKDIR}/linux-${PV}"
|
|
|
|
|
|
|
|
SRC_URI = "https://www.kernel.org/pub/linux/kernel/v5.x/linux-${PV}.tar.xz \
|
|
|
|
file://0001-dts-orange-pi-zero-Add-wifi-support.patch \
|
|
|
|
file://defconfig \
|
|
|
|
"
|
|
|
|
|
2021-08-23 18:39:23 +02:00
|
|
|
SRC_URI:append:use-mailine-graphics = " file://drm.cfg"
|
|
|
|
SRC_URI:append:bananapi = " file://axp20x.cfg"
|
2022-12-08 17:09:33 +01:00
|
|
|
SRC_URI:append:bananapi-m2-zero = " file://axp20x.cfg"
|
2021-08-23 18:39:23 +02:00
|
|
|
SRC_URI:append:cubietruck = " file://axp20x.cfg"
|
2019-11-20 22:55:35 +01:00
|
|
|
|
2021-08-23 18:39:23 +02:00
|
|
|
FILES_${KERNEL_PACKAGE_NAME}-base:append = " ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.builtin.modinfo"
|