mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
b3d9a8b185
Following the example of most other SoCs in arch/$(ARCH)/cpu/$(CPU)/$(SOC)
move the lpc32xx code from arch/arm/cpu/arm926ejs/lpc32xx to
arch/arm/mach-lpc32xx.
Following the checklist from
commit 01f1445630
("ARM: prepare for moving SoC sources into mach-*"):
[1] move files from arch/arm/cpu/arm926ejs/lpc32xx to arch/arm/mach-lpx32xx
[2] add machine entry to arch/arm/Makefile
[3] remove "obj-y += ..." from arch/arm/cpu/arm926ejs/Makefile
[4] fix the Kconfig file path in arch/arm/Kconfig
[5] (no MAINTAINERS update)
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Trevor Woerner <twoerner@gmail.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
|