Lines Matching +full:boot +full:- +full:loader

2 # Copyright (C) 2016, Texas Instruments, Incorporated - http://www.ti.com/
4 # SPDX-License-Identifier: GPL-2.0+
8 ifneq ($(wildcard $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh),)
10 cmd_mkomapsecimg = $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh \
11 $(patsubst u-boot-spl_HS_%,%,$(@F)) $< $@ $(CONFIG_ISW_ENTRY_ADDR) \
14 cmd_mkomapsecimg = $(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh \
15 $(patsubst u-boot_HS_%,%,$(@F)) $< $@ $(CONFIG_ISW_ENTRY_ADDR) \
20 "$(TI_SECURE_DEV_PKG)/scripts/create-boot-image.sh not found." \
32 ifneq ($(wildcard $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh),)
33 cmd_omapsecureimg = $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh \
38 "$(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh not found." \
49 # Standard X-LOADER target (QPSI, NOR flash)
50 u-boot-spl_HS_X-LOADER: $(obj)/u-boot-spl.bin FORCE
53 # For MLO targets (SD card boot) the final file name that is copied to the SD
56 u-boot-spl_HS_MLO: $(obj)/u-boot-spl.bin FORCE
58 @if [ -f $@ ]; then \
59 cp -f $@ MLO; \
62 # Standard 2ND target (certain peripheral boot modes)
63 u-boot-spl_HS_2ND: $(obj)/u-boot-spl.bin FORCE
66 # Standard ULO target (certain peripheral boot modes)
67 u-boot-spl_HS_ULO: $(obj)/u-boot-spl.bin FORCE
70 # Standard ISSW target (certain devices, various boot modes), when copied to
73 u-boot-spl_HS_ISSW: $(obj)/u-boot-spl.bin FORCE
75 @if [ -f $@ ]; then \
76 cp -f $@ MLO; \
80 # so we use the SPI_X-LOADER target instead of X-LOADER and let the
81 # create-boot-image.sh script handle that
82 u-boot-spl_HS_SPI_X-LOADER: $(obj)/u-boot-spl.bin FORCE
85 # For supporting single stage boot on keystone, the image is a full u-boot
86 # file, not an SPL. This will work for all boot devices, other than SPI
89 u-boot_HS_MLO: $(obj)/u-boot.bin
91 @if [ -f $@ ]; then \
92 cp -f $@ MLO; \
95 # For supporting single stage XiP QSPI on AM43xx, the image is a full u-boot
97 # u-boot-HS_* prefix
98 u-boot_HS_XIP_X-LOADER: $(obj)/u-boot.bin FORCE
102 # components are pre-processed before being integrated into the FIT image in
106 MKIMAGEFLAGS_u-boot_HS.img = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
107 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
108 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" -E \
109 $(patsubst %,-b arch/$(ARCH)/dts/%.dtb_HS,$(subst ",,$(CONFIG_OF_LIST)))
117 u-boot-nodtb_HS.bin: u-boot-nodtb.bin FORCE
120 u-boot_HS.img: u-boot-nodtb_HS.bin u-boot.img $(patsubst %.dtb,%.dtb_HS,$(OF_LIST_TARGETS)) FORCE
122 $(Q)if [ -f $@ ]; then \
123 cp -f $@ u-boot.img; \