xref: /OK3568_Linux_fs/buildroot/board/qemu/arm-vexpress-tz/post-build.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2
3set -u
4set -e
5
6# Create flash.bin TF-A FIP image from bl1.bin and fip.bin
7cd "$BINARIES_DIR"
8dd if=bl1.bin of=flash.bin bs=4096
9dd if=fip.bin of=flash.bin seek=64 bs=4096 conv=notrunc
10