mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-13 13:36:02 +01:00
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 01f14456306c ("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>
21 lines
313 B
Plaintext
21 lines
313 B
Plaintext
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
|