mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
b1a6bb3b59
This commit adds common arch support for Actions Semi Owl series SoCs and removes the Bubblegum96 board files. Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
22 lines
331 B
Text
22 lines
331 B
Text
if ARCH_OWL
|
|
|
|
choice
|
|
prompt "Actions Semi Owl SoC Variant"
|
|
optional
|
|
|
|
config MACH_S900
|
|
bool "Actions Semi S900 SoC"
|
|
select ARM64
|
|
|
|
endchoice
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x11000000
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "owl-common"
|
|
|
|
config SYS_SOC
|
|
default "s900" if MACH_S900
|
|
|
|
endif
|