From patchwork Sat Oct 22 04:56:25 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 14324 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2EB3C04A95 for ; Sat, 22 Oct 2022 04:56:42 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.3683.1666414592601113852 for ; Fri, 21 Oct 2022 21:56:33 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id EF09040DF3; Sat, 22 Oct 2022 04:56:31 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TUNqjJPtFb2x; Sat, 22 Oct 2022 04:56:31 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id D31D640DEF; Sat, 22 Oct 2022 04:56:30 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id CD49C174A3B; Sat, 22 Oct 2022 00:56:28 -0400 (EDT) From: Denys Dmytriyenko To: meta-ti@lists.yoctoproject.org Cc: Denys Dmytriyenko Subject: [master/kirkstone][PATCH 2/2] linux-ti-next: add recipe for building linux-next Date: Sat, 22 Oct 2022 04:56:25 +0000 Message-Id: <20221022045625.3385830-2-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221022045625.3385830-1-denis@denix.org> References: <20221022045625.3385830-1-denis@denix.org> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 22 Oct 2022 04:56:42 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/15195 From: Denys Dmytriyenko Required for daily test plans. Can be enabled in local.conf or .conf: PREFERRED_PROVIDER_virtual/kernel = "linux-ti-next" SRCREV:pn-linux-ti-next = "${AUTOREV}" Only uses in-tree defconfigs, does not support config fragments, builds and packages in-tree DTBs. Signed-off-by: Denys Dmytriyenko --- .../recipes-kernel/linux/linux-ti-next_git.bb | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb new file mode 100644 index 00000000..e2908951 --- /dev/null +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb @@ -0,0 +1,43 @@ +SECTION = "kernel" +SUMMARY = "Linux-next kernel for TI devices" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" + +inherit kernel + +require recipes-kernel/linux/ti-kernel.inc + +DEPENDS += "gmp-native libmpc-native" + +KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT} ${EXTRA_DTC_ARGS}" + +S = "${WORKDIR}/git" + +# 6.1.0-rc1+ version +SRCREV = "4d48f589d294ddc5e01d3b0dc7cecc55324c05ca" +PV = "6.1.0-rc1+git${SRCPV}" + +SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git;protocol=https;branch=master" + +def list_dtbs(dts_dir, dts_subdir): + import os + import fnmatch + matches = [] + + for root,dirnames,filenames in os.walk(os.path.join(dts_dir, dts_subdir)): + for filename in fnmatch.filter(filenames, '*.dtb'): + matches.append(os.path.join(dts_subdir, filename)) + for filename in fnmatch.filter(filenames, '*.dtbo'): + matches.append(os.path.join(dts_subdir, filename)) + return ' '.join(matches) + +DTS_SUBDIR = "" +DTS_SUBDIR:k3 = "ti" +KERNEL_DEVICETREE = "${@list_dtbs('${B}/arch/${ARCH}/boot/dts', '${DTS_SUBDIR}')}" +DEFCONFIG_NAME = "multi_v7_defconfig" +DEFCONFIG_NAME:k3 = "defconfig" +KERNEL_CONFIG_COMMAND = "oe_runmake -C ${S} O=${B} ${DEFCONFIG_NAME}" + +kernel_do_compile:append() { + oe_runmake dtbs CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} +}