mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
9608e7de6a
ED Mini V2 is based on Orion 5x which boots at fixed address 0xFFFF0000 in NOR Flash. Place SPL there, and switch U-Boot from .bin to .img format, stored in NOR Flash at 0xFFF90000. Note: this patch was tested on HW and works, i.e. it boots U-Boot properly, but SPL console output currently does not appear, due to GD being trashed by arch/arm/lib/spl.c. This trashing is soon to be removed, and then ED Mini V2 SPL console output will become visible. Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
17 lines
228 B
Text
17 lines
228 B
Text
if ORION5X
|
|
|
|
choice
|
|
prompt "Marvell Orion board select"
|
|
|
|
config TARGET_EDMINIV2
|
|
bool "LaCie Ethernet Disk mini V2"
|
|
select SUPPORT_SPL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "orion5x"
|
|
|
|
source "board/LaCie/edminiv2/Kconfig"
|
|
|
|
endif
|