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.
 
 
 
 
 
 

22 lines
369 B

menu "Arch configuration"
choice BUILD_TARGET_ARCH_TYPE
prompt "Select target arch"
default TARGET_ARMv8
help
Select arch for build
config TARGET_ARMv8
bool "Armv8"
endchoice # BUILD_TARGET_ARCH_TYPE
config ARCH_NAME
string
default "armv8" if TARGET_ARMv8
if TARGET_ARMv8
source "$SDK_DIR/arch/armv8/armv8.kconfig"
endif
endmenu