mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
faf78fd464
Add basic support for running U-Boot on the Embedded Artists LPC3250 Developer's Kit v2 board by launching U-Boot from the board's s1l loader (which comes pre-installed on the board). Signed-off-by: Trevor Woerner <twoerner@gmail.com>
24 lines
444 B
Text
24 lines
444 B
Text
if ARCH_LPC32XX
|
|
|
|
config SYS_SOC
|
|
default "lpc32xx"
|
|
|
|
choice
|
|
prompt "NXP LPC32xx board select"
|
|
|
|
config TARGET_DEVKIT3250
|
|
bool "Timll DevKit3250"
|
|
|
|
config TARGET_WORK_92105
|
|
bool "Work Microwave Work_92105"
|
|
|
|
config TARGET_EA_LPC3250DEVKITV2
|
|
bool "Embedded Artists LPC3250 Developer's Kit v2"
|
|
|
|
endchoice
|
|
|
|
source "board/timll/devkit3250/Kconfig"
|
|
source "board/work-microwave/work_92105/Kconfig"
|
|
source "board/ea/ea-lpc3250devkitv2/Kconfig"
|
|
|
|
endif
|