u-boot-brain/board/AndesTech/ax25-ae350/Kconfig
Bin Meng 44fe795c14 riscv: ax25: Hide the ax25-specific Kconfig option
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>
2018-12-18 09:56:26 +08:00

29 lines
404 B
Plaintext

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