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
362 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/Kconfig"
endif
endmenu