You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.3 KiB
68 lines
1.3 KiB
# config USE_COREMARK
|
|
# bool
|
|
# depends on USE_G_LIBC
|
|
# prompt "Use Coremark"
|
|
# help
|
|
# Include Coremark for Benchmark
|
|
|
|
config USE_LWIP
|
|
bool
|
|
prompt "Use LWIP"
|
|
default n
|
|
select USE_SYS_TICK
|
|
help
|
|
Include LWIP for Network Protocol
|
|
|
|
if USE_LWIP
|
|
source "$(STANDALONE_DIR)/third-party/lwip-2.1.2/Kconfig"
|
|
endif
|
|
|
|
config USE_LETTER_SHELL
|
|
bool
|
|
prompt "Use Letter Shell"
|
|
default n
|
|
help
|
|
Include Litter Shell for User Interactive
|
|
|
|
if USE_LETTER_SHELL
|
|
source "$(STANDALONE_DIR)/third-party/letter-shell-3.1/Kconfig"
|
|
endif
|
|
|
|
config USE_AMP
|
|
bool
|
|
prompt "Use Asymmetric Multi-processing"
|
|
default n
|
|
help
|
|
Include OpenAMP framework
|
|
|
|
if USE_AMP
|
|
config USE_LIBMETAL
|
|
bool
|
|
prompt "Use Libmetal"
|
|
help
|
|
Include Libmetal
|
|
endif
|
|
|
|
config USE_YAFFS2
|
|
bool
|
|
prompt "Use Yaffs2 file System"
|
|
|
|
if USE_YAFFS2
|
|
config USE_SIM
|
|
bool
|
|
prompt "Use SIM to test yaffs2"
|
|
endif
|
|
|
|
|
|
config USE_SDMMC_CMD
|
|
bool
|
|
prompt "Use Sd/MMC/SDIO/eMMc Cmd"
|
|
default n
|
|
help
|
|
Include Sd/MMC/SDIO/eMMc Command framework
|
|
|
|
if USE_SDMMC_CMD
|
|
source "$(STANDALONE_DIR)/third-party/sdmmc/Kconfig"
|
|
endif
|
|
|
|
|
|
|