mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
44fe795c14
There is no need to expose RISCV_NDS to the Kconfig menu as it is an ax25-specific option. Introduce a dedicated Kconfig option for the cache ops of ax25 platform and use that to guard the cache ops. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de> Reviewed-by: Rick Chen <rick@andestech.com>
28 lines
404 B
Text
28 lines
404 B
Text
if TARGET_AX25_AE350
|
|
|
|
config SYS_CPU
|
|
default "ax25"
|
|
|
|
config SYS_BOARD
|
|
default "ax25-ae350"
|
|
|
|
config SYS_VENDOR
|
|
default "AndesTech"
|
|
|
|
config SYS_SOC
|
|
default "ae350"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ax25-ae350"
|
|
|
|
config ENV_SIZE
|
|
default 0x2000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET
|
|
default 0x140000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select RISCV_NDS
|
|
|
|
endif
|