From 3437b6d79dcf15b2e3c2958bbc8c85825b4bc693 Mon Sep 17 00:00:00 2001 From: alichinese Date: Mon, 14 Jul 2025 10:38:53 +0800 Subject: [PATCH] tspi-3566: modify the rockchip kernel SRC_URI append method * for the configuration of common variables, it is recommended to use the += operator for appending values, as this allows other specific files to modify or reset them. If the .append method is used instead, it may cause issues during variable resetting. Signed-off-by: alichinese --- .../rockchip/recipes-kernel/linux/linux-rockchip.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/meta-openeuler-bsp/rockchip/recipes-kernel/linux/linux-rockchip.inc b/bsp/meta-openeuler-bsp/rockchip/recipes-kernel/linux/linux-rockchip.inc index ae801ad1e85..474e74d7c21 100644 --- a/bsp/meta-openeuler-bsp/rockchip/recipes-kernel/linux/linux-rockchip.inc +++ b/bsp/meta-openeuler-bsp/rockchip/recipes-kernel/linux/linux-rockchip.inc @@ -12,7 +12,7 @@ SRC_URI:remove = " \ OPENEULER_LOCAL_NAME = "rockchip-kernel" OPENEULER_REPO_NAMES = "rockchip-kernel" -SRC_URI:append = " \ +SRC_URI += " \ file://rockchip-kernel \ " -- Gitee