summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorIan Campbell <ijc@hellion.org.uk>2014-10-24 21:20:45 +0100
committerHans de Goede <hdegoede@redhat.com>2014-11-05 13:09:57 +0100
commitc3be279322301a983ab37b05f6748ceabf4b7aa3 (patch)
tree33c8fc8df844ddefc7837828dd5f28242e7af384 /board
parent2c7e3b90468535ed7b31bd070c662b47f51db6fd (diff)
downloadblackbird-obmc-uboot-c3be279322301a983ab37b05f6748ceabf4b7aa3.tar.gz
blackbird-obmc-uboot-c3be279322301a983ab37b05f6748ceabf4b7aa3.zip
sunxi: kconfig: Rename TARGET_SUN[45678]I to MACH_SUN[45678]I.
Now we have CONFIG_ARCH_SUNXI as the toplevel, CONFIG_MACH_SUN[45678]I as the per-SoC option and leave CONFIG_TARGET_BLAH free for individual boards in the future. Done automatically with: sed -i -e 's/TARGET_\(SUN[45678]I\)/MACH_\1/g' $(git grep -l TARGET_SUN[45678]I) Signed-off-by: Ian Campbell <ijc@hellion.org.uk> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'board')
-rw-r--r--board/sunxi/Kconfig20
1 files changed, 10 insertions, 10 deletions
diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig
index e700495554..faa38ba27b 100644
--- a/board/sunxi/Kconfig
+++ b/board/sunxi/Kconfig
@@ -3,26 +3,26 @@ if ARCH_SUNXI
choice
prompt "Sunxi SoC Variant"
-config TARGET_SUN4I
+config MACH_SUN4I
bool "sun4i (Allwinner A10)"
select CPU_V7
select SUPPORT_SPL
-config TARGET_SUN5I
+config MACH_SUN5I
bool "sun5i (Allwinner A13)"
select CPU_V7
select SUPPORT_SPL
-config TARGET_SUN6I
+config MACH_SUN6I
bool "sun6i (Allwinner A31)"
select CPU_V7
-config TARGET_SUN7I
+config MACH_SUN7I
bool "sun7i (Allwinner A20)"
select CPU_V7
select SUPPORT_SPL
-config TARGET_SUN8I
+config MACH_SUN8I
bool "sun8i (Allwinner A23)"
select CPU_V7
@@ -30,11 +30,11 @@ endchoice
config SYS_CONFIG_NAME
string
- default "sun4i" if TARGET_SUN4I
- default "sun5i" if TARGET_SUN5I
- default "sun6i" if TARGET_SUN6I
- default "sun7i" if TARGET_SUN7I
- default "sun8i" if TARGET_SUN8I
+ default "sun4i" if MACH_SUN4I
+ default "sun5i" if MACH_SUN5I
+ default "sun6i" if MACH_SUN6I
+ default "sun7i" if MACH_SUN7I
+ default "sun8i" if MACH_SUN8I
config SYS_BOARD
default "sunxi"
OpenPOWER on IntegriCloud