ARM: zynq: Run distribution boot commands first
This patch is doing two things. 1. Exchanging order of boot commands. distro_bootcmd is run first followed by Xilinx boot command. 2. Remove CONFIG_BOOTCOMMAND from configs (and follow mainline) by creating Xilinx distribution bootcommand and wiring it as the last bootcommand. QSPI, NAND distribution boot command will be added later. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
@@ -153,11 +153,18 @@
|
||||
#define BOOT_TARGET_DEVICES_DHCP(func)
|
||||
#endif
|
||||
|
||||
#define BOOTENV_DEV_XILINX(devtypeu, devtypel, instance) \
|
||||
"bootcmd_xilinx=run $modeboot\0"
|
||||
|
||||
#define BOOTENV_DEV_NAME_XILINX(devtypeu, devtypel, instance) \
|
||||
"xilinx "
|
||||
|
||||
#define BOOT_TARGET_DEVICES(func) \
|
||||
BOOT_TARGET_DEVICES_MMC(func) \
|
||||
BOOT_TARGET_DEVICES_USB(func) \
|
||||
BOOT_TARGET_DEVICES_PXE(func) \
|
||||
BOOT_TARGET_DEVICES_DHCP(func)
|
||||
BOOT_TARGET_DEVICES_DHCP(func) \
|
||||
func(XILINX, xilinx, na)
|
||||
|
||||
#include <config_distro_bootcmd.h>
|
||||
#endif /* CONFIG_SPL_BUILD */
|
||||
|
||||
Reference in New Issue
Block a user