Sample project 1_Image postbuild.sh arguments
I am trying to build and flash sample project from:
STM32CubeExpansion_SBSFU_V2.2.0\Projects\NUCLEO-H753ZI\Applications\1_Image
I have been able to build the modules -- SBSFU, SECoreBin and UserApp -- from Makefiles using GNU ARM toolchain.
- SECoreBin/GNUWARM/prebuild.sh .
- SECoreBin/make
- SBSFU/make
- UserApp/make
- SECoreBin/GNUWARM/postbuild.sh UserApp/build_debug/UserApp.elf UserApp/build_debug/UserApp.bin 0
The last step, postbuild.sh, generated:
- SECoreBin/Binary/iv.bin
- SECoreBin/Binary/UserApp.sfb
- SECoreBin/Binary/SBSFU_UserApp.bin
It also showed "No FW signing leaf cert" and "No leaf cert" in the output log.
To flash:
- STM32_Programmer_CLI.exe -c port=SWD index=0 reset=HWrst -e all -d SBSFU_UserApp.bin 0x08000000 -HardRst
The app doesn't startup.
My question is about the postbuild.sh script that whether the arguments I used were correct. Ultimately I want to bring up the Test Menu from the UserApp.
