diff options
author | Marek Vasut | 2024-03-17 07:23:38 +0100 |
---|---|---|
committer | Marek Vasut | 2024-04-18 05:20:45 +0200 |
commit | 85f4b9114194fbf70960e34765bc788d45bddd4d (patch) | |
tree | 4c5d59b9d6b347caf8d7a4b92ab340b16ba64de9 /configs/koelsch_defconfig | |
parent | a712a54dc427708195e6405af4b072d869d0dd8f (diff) |
ARM: dts: renesas: Stop using the -u-boot DTs for build
The U-Boot build system can automatically paste -u-boot.dtsi at the
end of matching .dts during build. Stop emulating this behavior and
rename the -u-boot.dts files to -u-boot.dtsi, drop "#include...dts"
from those new u-boot.dtsi files, and update board configuration
accordingly.
The rename, '#include...dts` scrubbing and configuration update has
been done using the following script:
```
$ find . -name r[78]\*-u-boot.dts | sort -u | while read line ; do \
git mv ${line%-u-boot.dts}-u-boot.dts ${line%-u-boot.dts}-u-boot.dtsi ; \
done
$ sed -i '/^#include.*dts"/ d' `find . -name r[78]\*-u-boot.dtsi`
$ sed -i 's@-u-boot@@g' `git grep -li renesas configs`
```
The Salvator-X and ULCB board files have been updated manually.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Acked-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'configs/koelsch_defconfig')
-rw-r--r-- | configs/koelsch_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/koelsch_defconfig b/configs/koelsch_defconfig index 963e02d6b54..ad411b45141 100644 --- a/configs/koelsch_defconfig +++ b/configs/koelsch_defconfig @@ -16,7 +16,7 @@ CONFIG_ENV_SIZE=0x40000 CONFIG_ENV_OFFSET=0xC0000 CONFIG_ENV_SECT_SIZE=0x40000 CONFIG_DM_GPIO=y -CONFIG_DEFAULT_DEVICE_TREE="r8a7791-koelsch-u-boot" +CONFIG_DEFAULT_DEVICE_TREE="r8a7791-koelsch" CONFIG_SPL_TEXT_BASE=0xe6300000 CONFIG_ARCH_RENESAS_BOARD_STRING="Koelsch" CONFIG_R8A7791=y |