mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
20759b2973
For now, this only provides reset and poweroff functions. Signed-off-by: Michael Walle <michael@walle.cc> [Rebased] Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
14 lines
231 B
Makefile
14 lines
231 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += sl28.o cmds.o
|
|
endif
|
|
|
|
obj-y += common.o ddr.o
|
|
|
|
obj-$(CONFIG_ARMV8_PSCI) += psci.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
obj-$(CONFIG_SPL_ATF) += spl_atf.o
|
|
endif
|