diff options
author | xengineering <me@xengineering.eu> | 2025-03-22 21:39:13 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-22 22:30:41 +0100 |
commit | 62be0c0585b147686ad3a41fdce181c8a7e95cd1 (patch) | |
tree | c59339340f5b9fd405acc7e6c2a90380299f6bd0 /fw/nucleo.sh | |
parent | 09722ba833f4af39dc9b5894de15c1e823cb6ea8 (diff) | |
download | iot-contact-62be0c0585b147686ad3a41fdce181c8a7e95cd1.tar iot-contact-62be0c0585b147686ad3a41fdce181c8a7e95cd1.tar.zst iot-contact-62be0c0585b147686ad3a41fdce181c8a7e95cd1.zip |
fw: btl: Move MCUboot build here
The directory structure should be less nested and with shorter paths.
This is a first step.
Diffstat (limited to 'fw/nucleo.sh')
-rwxr-xr-x | fw/nucleo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fw/nucleo.sh b/fw/nucleo.sh index be694b8..f625ce6 100755 --- a/fw/nucleo.sh +++ b/fw/nucleo.sh @@ -23,12 +23,12 @@ SCRIPT="$(realpath "$0")" FW="$(dirname "$SCRIPT")" ROOT="$(dirname "$FW")" BUILD="${ROOT}/nucleo" -BOOTLOADER_FIRMWARE="${BUILD}/fw/bootloader/zephyr/zephyr.bin" +BOOTLOADER_FIRMWARE="${BUILD}/fw/btl/zephyr/zephyr.bin" APPLICATION_FIRMWARE="${BUILD}/fw/zephyr/zephyr.bin" APPLICATION_FIRMWARE_SIGNED="${BUILD}/fw/zephyr/zephyr.signed.bin" BOOTLOADER_FLASH_ADDRESS='0x8000000' APPLICATION_FLASH_ADDRESS='0x8040000' -MCUBOOT="${ROOT}/fw/zephyrproject/bootloader/mcuboot" +MCUBOOT="${ROOT}/fw/btl/mcuboot" IMGTOOL="${MCUBOOT}/scripts/imgtool.py" KEY="${HOME}/mcuboot/key.pem" BOARD='nucleo_f767zi' |