blob: c9e2b8352049c0831f92b7c3e426703e7cd1545c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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_GENMAI
bool "GENMAI board"
config TARGET_GRPEACH
bool "GR-PEACH board"
endchoice
# Renesas Supported Boards
source "board/renesas/genmai/Kconfig"
source "board/renesas/grpeach/Kconfig"
endif
|