1include core/arch/arm/kernel/link.mk 2 3all: $(link-out-dir)/tee-raw.bin 4 5.PHONY: uTee 6uTee: $(link-out-dir)/uTee 7cleanfiles += $(link-out-dir)/uTee 8$(link-out-dir)/uTee: $(link-out-dir)/tee-raw.bin 9 @$(cmd-echo-silent) ' MKIMAGE $@' 10 $(q)ADDR=`printf 0x%x $$(($(subst UL,,$(CFG_TZDRAM_START))))`; \ 11 mkimage -A arm -O linux -C none -a $$ADDR -e $$ADDR -d $< $@ 12