buildroot/board/qemu/arm-vexpress-tz/post-build.sh

10 lines
195 B
Bash
Raw Normal View History

2024-02-18 09:22:07 +08:00
#!/bin/sh
set -u
set -e
# Create flash.bin TF-A FIP image from bl1.bin and fip.bin
cd "$BINARIES_DIR"
dd if=bl1.bin of=flash.bin bs=4096
dd if=fip.bin of=flash.bin seek=64 bs=4096 conv=notrunc