mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-02 13:08:16 +00: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>
26 lines
349 B
Plaintext
26 lines
349 B
Plaintext
if RZA1
|
|
|
|
# required by the Ethernet driver
|
|
config R7S72100
|
|
bool
|
|
default y
|
|
|
|
# required by serial and usb driver
|
|
config CPU_RZA1
|
|
bool
|
|
default y
|
|
|
|
choice
|
|
prompt "Renesas RZ/A1 board select"
|
|
|
|
# Renesas Supported Boards
|
|
config TARGET_GRPEACH
|
|
bool "GR-PEACH board"
|
|
|
|
endchoice
|
|
|
|
# Renesas Supported Boards
|
|
source "board/renesas/grpeach/Kconfig"
|
|
|
|
endif
|