mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
ee54dfea45
The explicit arch specific build symbol allows to group supported boards, generalize common config options and it will serve as a dependency for platform only drivers. Two related board defconfigs are resynced after the change. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
20 lines
313 B
Text
20 lines
313 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"
|
|
|
|
endchoice
|
|
|
|
source "board/timll/devkit3250/Kconfig"
|
|
source "board/work-microwave/work_92105/Kconfig"
|
|
|
|
endif
|