blob: 20a43d88e37b31d9ae7d71ecfe6755cc3aa99f1f [file] [log] [blame]
Rick Chenf94c44e2017-12-26 13:55:52 +08001menu "RISCV architecture"
2 depends on RISCV
3
4config SYS_ARCH
5 default "riscv"
6
7choice
8 prompt "Target select"
9 optional
10
Rick Chen6f4dd622018-05-29 09:54:40 +080011config TARGET_AX25_AE350
12 bool "Support ax25-ae350"
Rick Chenf94c44e2017-12-26 13:55:52 +080013
14endchoice
15
Rick Chen6f4dd622018-05-29 09:54:40 +080016source "board/AndesTech/ax25-ae350/Kconfig"
Rick Chenf94c44e2017-12-26 13:55:52 +080017
18choice
19 prompt "CPU selection"
20 default CPU_RISCV_32
21
22config CPU_RISCV_32
23 bool "RISCV 32 bit"
24 select 32BIT
25 help
26 Choose this option to build an U-Boot for RISCV32 architecture.
27
28config CPU_RISCV_64
29 bool "RISCV 64 bit"
30 select 64BIT
31 help
32 Choose this option to build an U-Boot for RISCV64 architecture.
33
34endchoice
35
36config 32BIT
37 bool
38
39config 64BIT
40 bool
41
42endmenu