sunxi: Kconfig: Unify sunxi Kconfig code
Unify the sunxi Kconfig code, instead of having separate code blocks for each of sun4i - sun7i. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Ian Campbell <ijc@hellion.org.uk>
This commit is contained in:
parent
69c050a671
commit
722e00cef4
|
@ -1,33 +1,11 @@
|
||||||
if TARGET_SUN4I
|
if TARGET_SUN4I || TARGET_SUN5I || TARGET_SUN6I || TARGET_SUN7I
|
||||||
|
|
||||||
config SYS_CONFIG_NAME
|
|
||||||
default "sun4i"
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
if TARGET_SUN5I
|
|
||||||
|
|
||||||
config SYS_CONFIG_NAME
|
|
||||||
default "sun5i"
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
if TARGET_SUN6I
|
|
||||||
|
|
||||||
config SYS_CONFIG_NAME
|
config SYS_CONFIG_NAME
|
||||||
string
|
string
|
||||||
default "sun6i"
|
default "sun4i" if TARGET_SUN4I
|
||||||
|
default "sun5i" if TARGET_SUN5I
|
||||||
endif
|
default "sun6i" if TARGET_SUN6I
|
||||||
|
default "sun7i" if TARGET_SUN7I
|
||||||
if TARGET_SUN7I
|
|
||||||
|
|
||||||
config SYS_CONFIG_NAME
|
|
||||||
default "sun7i"
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
if TARGET_SUN4I || TARGET_SUN5I || TARGET_SUN6I || TARGET_SUN7I
|
|
||||||
|
|
||||||
config SYS_CPU
|
config SYS_CPU
|
||||||
default "armv7"
|
default "armv7"
|
||||||
|
|
Loading…
Reference in New Issue