board/synopsys: remove selection of CPU from the board
Both ARCangel4 and AXS10x are FPGA-based boards so they may have different CPUs. For now we have only 1 option (ARC700) and we define this as default in arch Kconfig. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
This commit is contained in:
parent
660d5f0d49
commit
e20bcb046b
|
|
@ -4,6 +4,9 @@ menu "ARC architecture"
|
||||||
config SYS_ARCH
|
config SYS_ARCH
|
||||||
default "arc"
|
default "arc"
|
||||||
|
|
||||||
|
config SYS_CPU
|
||||||
|
default "arc700"
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Target select"
|
prompt "Target select"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
if TARGET_ARCANGEL4
|
if TARGET_ARCANGEL4
|
||||||
|
|
||||||
config SYS_CPU
|
|
||||||
default "arc700"
|
|
||||||
|
|
||||||
config SYS_VENDOR
|
config SYS_VENDOR
|
||||||
default "synopsys"
|
default "synopsys"
|
||||||
|
|
||||||
|
|
@ -13,9 +10,6 @@ endif
|
||||||
|
|
||||||
if TARGET_ARCANGEL4_BE
|
if TARGET_ARCANGEL4_BE
|
||||||
|
|
||||||
config SYS_CPU
|
|
||||||
default "arc700"
|
|
||||||
|
|
||||||
config SYS_VENDOR
|
config SYS_VENDOR
|
||||||
default "synopsys"
|
default "synopsys"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
if TARGET_AXS101
|
if TARGET_AXS101
|
||||||
|
|
||||||
config SYS_CPU
|
|
||||||
default "arc700"
|
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "axs101"
|
default "axs101"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue