mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-20 22:21:27 +02:00
Rename arch-rmobile to arch-renesas and mach-rmobile to mach-renesas because all the chips are made by Renesas, while only a subset of them is from the R-Mobile line. Use the following command to perform the rename, with manual move of the directories using git mv and manual fix up to arch/arm/Makefile: " $ git grep -l '\<\(arch\|mach\)-rmobile\>' | \ xargs -I {} sed -i 's@\<\(arch\|mach\)-rmobile\>@\1-renesas@g' {} $ sed -i 's@rmobile@renesas@' board/*/*/Kconfig " Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
21 lines
338 B
Plaintext
21 lines
338 B
Plaintext
if RZN1
|
|
|
|
choice
|
|
prompt "Renesas RZ/N1 Board select"
|
|
default TARGET_SCHNEIDER_RZN1
|
|
|
|
config TARGET_SCHNEIDER_RZN1
|
|
bool "Schneider RZN1 board"
|
|
help
|
|
Support the Schneider RZN1D and RZN1S boards, which are based
|
|
on the Renesas RZ/N1 SoC.
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "rzn1"
|
|
|
|
source "board/schneider/rzn1-snarc/Kconfig"
|
|
|
|
endif
|