u-boot-brain/board/mpl/mip405/Kconfig
Tom Rini adf32adb70 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>
2016-09-20 09:30:25 -04:00

18 lines
266 B
Plaintext

if TARGET_MIP405 || TARGET_MIP405T
config SYS_BOARD
default "mip405"
config SYS_VENDOR
default "mpl"
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