mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
ee8d037ce7
It has been a while since ARM Trusted Firmware supported UniPhier SoC family. U-Boot SPL was intended as a temporary loader that runs in secure world. It is a maintenance headache to support two different boot mechanisms. Secure firmware is realm of ARM Trusted Firmware and now U-Boot only serves as a non-secure boot loader for UniPhier ARMv8 SoCs. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
16 lines
616 B
Makefile
16 lines
616 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += boot-device.o
|
|
|
|
obj-$(CONFIG_ARCH_UNIPHIER_SLD3) += boot-device-sld3.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD4) += boot-device-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PRO4) += boot-device-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_SLD8) += boot-device-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PRO5) += boot-device-pro5.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PXS2) += boot-device-pxs2.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD6B) += boot-device-pxs2.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD11) += boot-device-ld11.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD20) += boot-device-ld11.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PXS3) += boot-device-pxs3.o
|