mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-28 08:08:45 +00:00
Merge "feat(qemu): combine TF-A artefacts into ROM file" into integration
This commit is contained in:
commit
3ca0e7fdaf
1 changed files with 14 additions and 0 deletions
|
@ -287,3 +287,17 @@ ifneq (${ARCH},aarch32)
|
||||||
ENABLE_SVE_FOR_NS := 1
|
ENABLE_SVE_FOR_NS := 1
|
||||||
ENABLE_SME_FOR_NS := 1
|
ENABLE_SME_FOR_NS := 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
qemu_fw.bios: bl1 fip
|
||||||
|
$(ECHO) " DD $@"
|
||||||
|
$(Q)cp ${BUILD_PLAT}/bl1.bin ${BUILD_PLAT}/$@
|
||||||
|
$(Q)dd if=${BUILD_PLAT}/fip.bin of=${BUILD_PLAT}/$@ bs=64k seek=4 status=none
|
||||||
|
|
||||||
|
qemu_fw.rom: qemu_fw.bios
|
||||||
|
$(ECHO) " DD $@"
|
||||||
|
$(Q)cp ${BUILD_PLAT}/$^ ${BUILD_PLAT}/$@
|
||||||
|
$(Q)dd if=/dev/zero of=${BUILD_PLAT}/$@ bs=1M seek=64 count=0 status=none
|
||||||
|
|
||||||
|
ifneq (${BL33},)
|
||||||
|
all: qemu_fw.bios qemu_fw.rom
|
||||||
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue