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