Lines Matching +full:u +full:- +full:boot

1 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright (C) 2016, Texas Instruments, Incorporated - http://www.ti.com/
6 ifneq ($(wildcard $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh),)
8 cmd_mkomapsecimg = $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh \
9 $(patsubst u-boot-spl_HS_%,%,$(@F)) $< $@ $(CONFIG_ISW_ENTRY_ADDR) \
12 cmd_mkomapsecimg = $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh \
13 $(patsubst u-boot_HS_%,%,$(@F)) $< $@ $(CONFIG_ISW_ENTRY_ADDR) \
18 "$(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh not found." \
30 ifneq ($(wildcard $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh),)
31 cmd_omapsecureimg = $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh \
36 "$(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh not found." \
47 # Standard X-LOADER target (QPSI, NOR flash)
48 u-boot-spl_HS_X-LOADER: $(obj)/u-boot-spl.bin FORCE
51 # For MLO targets (SD card boot) the final file name that is copied to the SD
54 u-boot-spl_HS_MLO: $(obj)/u-boot-spl.bin FORCE
56 @if [ -f $@ ]; then \
57 cp -f $@ MLO; \
60 # Standard 2ND target (certain peripheral boot modes)
61 u-boot-spl_HS_2ND: $(obj)/u-boot-spl.bin FORCE
64 # Standard ULO target (certain peripheral boot modes)
65 u-boot-spl_HS_ULO: $(obj)/u-boot-spl.bin FORCE
68 # Standard ISSW target (certain devices, various boot modes), when copied to
71 u-boot-spl_HS_ISSW: $(obj)/u-boot-spl.bin FORCE
73 @if [ -f $@ ]; then \
74 cp -f $@ MLO; \
78 # so we use the SPI_X-LOADER target instead of X-LOADER and let the
79 # create-boot-image.sh script handle that
80 u-boot-spl_HS_SPI_X-LOADER: $(obj)/u-boot-spl.bin FORCE
83 # For supporting single stage boot on keystone, the image is a full u-boot
84 # file, not an SPL. This will work for all boot devices, other than SPI
87 u-boot_HS_MLO: $(obj)/u-boot.bin
89 @if [ -f $@ ]; then \
90 cp -f $@ MLO; \
93 # For supporting single stage XiP QSPI on AM43xx, the image is a full u-boot
95 # u-boot-HS_* prefix
96 u-boot_HS_XIP_X-LOADER: $(obj)/u-boot.bin FORCE
100 # components are pre-processed before being integrated into the FIT image in
104 MKIMAGEFLAGS_u-boot_HS.img = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
105 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
106 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" -E \
107 $(patsubst %,-b arch/$(ARCH)/dts/%.dtb_HS,$(subst ",,$(CONFIG_OF_LIST)))
115 u-boot-nodtb_HS.bin: u-boot-nodtb.bin FORCE
118 u-boot_HS.img: u-boot-nodtb_HS.bin u-boot.img $(patsubst %.dtb,%.dtb_HS,$(OF_LIST_TARGETS)) FORCE
120 $(Q)if [ -f $@ ]; then \
121 cp -f $@ u-boot.img; \