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

1 # SPDX-License-Identifier: GPL-2.0+
3 # (C) Copyright 2000-2006
9 obj-y = iomux-v3.o
14 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
16 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
17 obj-$(CONFIG_FEC_MXC) += mac.o
18 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
19 obj-y += cpu.o
23 obj-y += cpu.o speed.o
24 obj-$(CONFIG_GPT_TIMER) += timer.o
25 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
28 obj-y += misc.o
29 obj-$(CONFIG_SPL_BUILD) += spl.o
32 obj-y += cpu.o
33 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
34 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
37 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
40 obj-y += cache.o init.o
41 obj-$(CONFIG_FEC_MXC) += mac.o
42 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
44 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
46 obj-$(CONFIG_SATA) += sata.o
47 obj-$(CONFIG_SECURE_BOOT) += hab.o
48 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
51 obj-y += cache.o
52 obj-$(CONFIG_SECURE_BOOT) += hab.o
55 obj-y += ddrmc-vf610.o
56 obj-$(CONFIG_DDRMC_VF610_CALIBRATION) += ddrmc-vf610-calibration.o
59 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
60 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
61 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
66 @actual=`wc -c $@ | awk '{print $$1}'`; \
68 if test $$actual -gt $$limit; then \
72 echo " excess: $$((actual - limit)) bytes" >&2; \
84 $(Q)mkdir -p $(dir $@)
88 $(Q)mkdir -p $(dir $@)
89 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
97 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
104 $(Q)mkdir -p $(dir $@)
110 …) $(cpp_flags) -x c -o spl/u-boot-spl.cfgout $(srctree)/$(IMX_CONFIG); if [ -f spl/u-boot-spl.cfgo…
111 … $(CPP) $(cpp_flags) -x c -o u-boot-dtb.cfgout $(srctree)/$(IMX_CONFIG); if [ -f u-boot-dtb.cfgout…
115 …) $(cpp_flags) -x c -o spl/u-boot-spl.cfgout $(srctree)/$(IMX_CONFIG);if [ -f spl/u-boot-spl.cfgou…
121 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
122 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
123 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
125 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
130 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
131 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
132 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
134 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
144 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
145 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
148 spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
150 $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
153 flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
162 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
165 flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
172 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
173 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
176 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
179 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
180 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
182 u-boot.uim: u-boot.bin FORCE
185 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
186 append = cat $(filter-out $< $(PHONY), $^) >> $@
189 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
191 u-boot-with-spl.imx: SPL u-boot.uim FORCE
194 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
197 quiet_cmd_u-boot-nand-spl_imx = GEN $@
198 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
199 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
201 spl/u-boot-nand-spl.imx: SPL FORCE
202 $(call if_changed,u-boot-nand-spl_imx)
205 …gets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim…
207 obj-$(CONFIG_ARM64) += sip.o
209 obj-$(CONFIG_MX5) += mx5/
210 obj-$(CONFIG_MX6) += mx6/
211 obj-$(CONFIG_MX7) += mx7/
212 obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
213 obj-$(CONFIG_IMX8M) += imx8m/
214 obj-$(CONFIG_ARCH_IMX8) += imx8/