diff --git a/IDE/IAR/README.md b/IDE/IAR/README.md index 8ab713d5..587fb28a 100644 --- a/IDE/IAR/README.md +++ b/IDE/IAR/README.md @@ -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 diff --git a/IDE/IAR/sign_test_app.bat b/IDE/IAR/sign_test_app.bat index 6a74fd76..d31f44e0 100644 --- a/IDE/IAR/sign_test_app.bat +++ b/IDE/IAR/sign_test_app.bat @@ -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