summaryrefslogtreecommitdiff
path: root/board/mpl/mip405/Kconfig
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-09-20 01:55:34 (GMT)
committerTom Rini <trini@konsulko.com>2016-09-20 13:30:25 (GMT)
commitadf32adb706760b1c527d0d4d6b4976b36f19338 (patch)
treee5cde6d5f66b5dd1521568f59a0a51a8b1bf19a4 /board/mpl/mip405/Kconfig
parenta4d88920e5d0b67a92f8041f5e0fac0ce027bb48 (diff)
downloadu-boot-adf32adb706760b1c527d0d4d6b4976b36f19338.tar.xz
PowerPC: Update MIP405/MIP405T to use Kconfig better
Convert CONFIG_MIP405T from SYS_EXTRA_OPTIONS to a real config There are two boards, MIP405 and MIP405T that have a few differences. Start by checking for CONFIG_TARGET_MIP405. Then introduce CONFIG_TARGET_MIP405T and use that not CONFIG_MIP405T. Next, convert also convert the usage of CONFIG_ISO_STRING to be based on Kconfig. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/mpl/mip405/Kconfig')
-rw-r--r--board/mpl/mip405/Kconfig7
1 files changed, 6 insertions, 1 deletions
diff --git a/board/mpl/mip405/Kconfig b/board/mpl/mip405/Kconfig
index 48ba91a..e003a43 100644
--- a/board/mpl/mip405/Kconfig
+++ b/board/mpl/mip405/Kconfig
@@ -1,4 +1,4 @@
-if TARGET_MIP405
+if TARGET_MIP405 || TARGET_MIP405T
config SYS_BOARD
default "mip405"
@@ -9,4 +9,9 @@ config SYS_VENDOR
config SYS_CONFIG_NAME
default "MIP405"
+config ISO_STRING
+ string
+ default "MEV-10082-001" if TARGET_MIP405T
+ default "MEV-10072-001" if TARGET_MIP405
+
endif