You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
195 B
9 lines
195 B
#!/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
|
|
|