Tested on STM32F439ZI successfully. Instructions updated.

pull/549/head
David Garske 2025-01-24 13:12:21 -08:00 committed by Daniele Lacamera
parent 4c2d2b7e6e
commit 71346b8b81
2 changed files with 2 additions and 3 deletions

View File

@ -33,11 +33,10 @@ ST-Link utilities (e.g. [STSW-LINK004](https://www.st.com/en/development-tools/s
This step is required to compile the bootloader.
Open a command line terminal in the [IAR](./) directory. Execute the following script:
Open a command line terminal in the [IDE/IAR](./) directory. Execute the following script:
```
generate_key.bat
```
The script will generate a keypair. The file `wolfboot_signing_private_key.der` in the root of the repository contains the private key that will be used

View File

@ -2,7 +2,7 @@ echo off
if "%~1"=="" goto fail
keytools\sign.exe --ecc256 --sha256 Debug\Exe\wolfboot-test-app.bin wolfboot_signing_private_key.der %1
keytools\sign.exe --ecc256 --sha256 Debug\Exe\wolfboot-test-app.bin ..\..\wolfboot_signing_private_key.der %1
goto out