From 0c5d3bade260c8417595cbf2210bf9b5d1526b16 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Thu, 4 Sep 2025 15:30:58 +0200 Subject: [PATCH] u-boot: v2025.10: prepare 0000.patching_config.yaml for null-patch-free u-boot - this maps copying files from dirs in the patch directory directly to the u-boot tree, without any .patch required: - `defconfig` -> `configs` (useful for all) - `dt_uboot` -> `arch/arm/dts` (useful for most; use for xx-u-boot.dtsi or stuff without CONFIG_OF_UPSTREAM) - `dt_upstream_rockchip` -> `dts/upstream/src/arm64/rockchip` (useful for Rockchip boards) - other mappings (eg `dt_upstream_xxx`) might be added later --- patch/u-boot/v2025.10/0000.patching_config.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 patch/u-boot/v2025.10/0000.patching_config.yaml diff --git a/patch/u-boot/v2025.10/0000.patching_config.yaml b/patch/u-boot/v2025.10/0000.patching_config.yaml new file mode 100644 index 0000000000..99b2cd2140 --- /dev/null +++ b/patch/u-boot/v2025.10/0000.patching_config.yaml @@ -0,0 +1,6 @@ +config: + + overlay-directories: + - { source: "defconfig", target: "configs" } # copies all files in defconfig dir to the configs/ dir in the u-boot source tree + - { source: "dt_upstream_rockchip", target: "dts/upstream/src/arm64/rockchip" } # copies all files in dt_upstream_rockchip dir to the dts/upstream/src/arm64/rockchip dir in the u-boot source tree + - { source: "dt_uboot", target: "arch/arm/dts" } # copies all files in dt_uboot dir to the arch/arm/dts dir in the u-boot source tree