mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-16 10:18:23 +01:00
02d905b476
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>
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
SECTION = "kernel"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
|
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_VERSION ?= "${PV}"
|
|
|
|
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 \
|
|
"
|
|
|
|
SRC_URI:append:use-mailine-graphics = " file://drm.cfg"
|
|
SRC_URI:append:bananapi = " file://axp20x.cfg"
|
|
SRC_URI:append:cubietruck = " file://axp20x.cfg"
|
|
|
|
FILES_${KERNEL_PACKAGE_NAME}-base:append = " ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.builtin.modinfo"
|