1if ARCH_OWL 2 3choice 4 prompt "Actions Semi Owl SoC Variant" 5 optional 6 7config MACH_S900 8 bool "Actions Semi S900 SoC" 9 select ARM64 10 11config MACH_S700 12 bool "Actions Semi S700 SoC" 13 select ARM64 14 15endchoice 16 17config SYS_TEXT_BASE 18 default 0x11000000 19 20config SYS_CONFIG_NAME 21 default "owl-common" 22 23config SYS_SOC 24 default "s900" if MACH_S900 25 default "s700" if MACH_S700 26 27endif 28