2
1

post-build.sh 195 B

123456789
  1. #!/bin/sh
  2. set -u
  3. set -e
  4. # Create flash.bin TF-A FIP image from bl1.bin and fip.bin
  5. cd "$BINARIES_DIR"
  6. dd if=bl1.bin of=flash.bin bs=4096
  7. dd if=fip.bin of=flash.bin seek=64 bs=4096 conv=notrunc