u-boot/board/sunxi/Kconfig
Maxime Ripard 8a6564dacb ARM: sunxi: Add basic A31 support
Add a new sun6i machine that supports UART and MMC.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
[wens@csie.org: use SPDX labels, adapt to Kconfig system, drop ifdef
		around mmc and smp code, drop MACH_TYPE]
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
2014-10-24 09:35:38 +02:00

45 lines
509 B
Plaintext

if TARGET_SUN4I
config SYS_CONFIG_NAME
default "sun4i"
endif
if TARGET_SUN5I
config SYS_CONFIG_NAME
default "sun5i"
endif
if TARGET_SUN6I
config SYS_CONFIG_NAME
string
default "sun6i"
endif
if TARGET_SUN7I
config SYS_CONFIG_NAME
default "sun7i"
endif
if TARGET_SUN4I || TARGET_SUN5I || TARGET_SUN6I || TARGET_SUN7I
config SYS_CPU
default "armv7"
config SYS_BOARD
default "sunxi"
config SYS_SOC
default "sunxi"
config FDTFILE
string "Default fdtfile env setting for this board"
endif