From f834e18cc1fbc828d4906d9a1b257daeaebdb0b4 Mon Sep 17 00:00:00 2001 From: Baocheng Su Date: Fri, 24 Jan 2025 15:14:26 +0800 Subject: [PATCH] linux-iot2050: Add the missing kbuildtarget The kbuildtarget is not preset in the iot2050-debian.conf, this is causing both the kernels (cip & upstream) to be parsed and generated in the build process, which makes the parsing stage very slow if the connection to github is not good. Signed-off-by: Baocheng Su --- conf/distro/iot2050-debian.conf | 2 ++ kas/opt/upstream.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/conf/distro/iot2050-debian.conf b/conf/distro/iot2050-debian.conf index ec03bd45f..f5dc06441 100644 --- a/conf/distro/iot2050-debian.conf +++ b/conf/distro/iot2050-debian.conf @@ -18,6 +18,8 @@ HOSTNAME ??= "iot2050-debian" PREFERRED_VERSION_linux-iot2050 ?= "6.1.%" PREFERRED_VERSION_linux-iot2050-rt ?= "6.1.%" +PREFERRED_VERSION_linux-iot2050-kbuildtarget ?= "6.1.%" +PREFERRED_VERSION_linux-iot2050-rt-kbuildtarget ?= "6.1.%" KERNEL_NAME ?= "cip" diff --git a/kas/opt/upstream.yml b/kas/opt/upstream.yml index 9efcb5a2a..74b6dee14 100644 --- a/kas/opt/upstream.yml +++ b/kas/opt/upstream.yml @@ -11,3 +11,4 @@ header: local_conf_header: upstream-versions: | PREFERRED_VERSION_linux-iot2050 = "6.x-upstream" + PREFERRED_VERSION_linux-iot2050-kbuildtarget = "6.x-upstream"