mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
c383379f25
Add bootaux command to support on-demand booting M33 from u-boot. It kicks M33 via ATF by "bootaux 0x201e0000 0" Signed-off-by: Peng Fan <peng.fan@nxp.com>
11 lines
218 B
Makefile
11 lines
218 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2022 NXP
|
|
|
|
obj-y += lowlevel_init.o
|
|
obj-y += soc.o clock.o clock_root.o trdc.o
|
|
obj-$(CONFIG_AHAB_BOOT) += ahab.o
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
|
obj-y += imx_bootaux.o
|
|
#endif
|