# Copyright (C) 2018 NetModule AG inherit kernel DESCRIPTION = "Linux kernel for various NetModule hardware" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" SRC_URI = "git://git.netmodule.intranet/yoctoproject/linux-netmodule.git;protocol=ssh;user=gitea;branch=4.19/standard/base" # Avoids installing the kernel in /boot directory RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" # Config fragments FILESEXTRAPATHS_prepend := "${THISDIR}/conf:" SRC_URI_append_netbird = " file://wlan.cfg" SRCREV ?= "${AUTOREV}" # We are building one kernel for all machines with the same architecture PACKAGE_ARCH = "${TUNE_PKGARCH}" # HW23 is using a different source SRC_URI_imx8-nmhw23 = "git://git.netmodule.intranet/yoctoproject/linux-netmodule.git;protocol=ssh;user=gitea;branch=4.14/nxp/nmhw23" LIC_FILES_CHKSUM_imx8-nmhw23 = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" S = "${WORKDIR}/git" INSANE_SKIP_${PN} += "version-going-backwards" #If a KERNEL_DEFCONFIG is specified, the defconfig specified in SRC_URI will be overwritten! do_configure_append(){ if [ "${KERNEL_DEFCONFIG}" != "" ]; then oe_runmake ${KERNEL_DEFCONFIG} fi configs="${@" ".join(find_cfgs(d))}" if [ ! -z "${configs}" ]; then ${S}/scripts/kconfig/merge_config.sh -m -O ${WORKDIR}/build ${WORKDIR}/build/.config ${WORKDIR}/*.cfg fi } #Apply config fragments def find_cfgs(d): sources=src_patches(d, True) sources_list=[] for s in sources: if s.endswith('.cfg'): sources_list.append(s) return sources_list