mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
3bf801a217
Add support for Inverse Path USB armory board, an open source flash-drive sized computer based on Freescale i.MX53 SoC. http://inversepath.com/usbarmory Signed-off-by: Andrej Rosano <andrej@inversepath.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Chris Kuethe <chris.kuethe@gmail.com> Cc: Fabio Estevam <festevam@gmail.com> Cc: Vagrant Cascadian <vagrant@debian.org> Tested-By: Vagrant Cascadian <vagrant@debian.org> Tested-by: Chris Kuethe <chris.kuethe@gmail.com>
27 lines
276 B
Text
27 lines
276 B
Text
if ARCH_MX5
|
|
|
|
config MX5
|
|
bool
|
|
default y
|
|
|
|
config MX51
|
|
bool
|
|
|
|
config MX53
|
|
bool
|
|
|
|
choice
|
|
prompt "MX5 board select"
|
|
|
|
config TARGET_USBARMORY
|
|
bool "Support USB armory"
|
|
select CPU_V7
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "mx5"
|
|
|
|
source "board/inversepath/usbarmory/Kconfig"
|
|
|
|
endif
|