summaryrefslogtreecommitdiff
path: root/fw/rtos
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-06 19:05:20 +0200
committerxengineering <me@xengineering.eu>2025-04-06 19:11:20 +0200
commitf6f6d285c318d28bddfb99cf04104a5306a97c78 (patch)
treeb15633e33d630811abdc72298ae7114e83de0fe1 /fw/rtos
parent7fc6bc84609022992e1827a07b95c427208e7289 (diff)
downloadiot-contact-f6f6d285c318d28bddfb99cf04104a5306a97c78.tar
iot-contact-f6f6d285c318d28bddfb99cf04104a5306a97c78.tar.zst
iot-contact-f6f6d285c318d28bddfb99cf04104a5306a97c78.zip
fw: app: Add image signing to Meson build
This automates signing the application firmware image for the MCUboot bootloader.
Diffstat (limited to 'fw/rtos')
-rw-r--r--fw/rtos/modules/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/fw/rtos/modules/meson.build b/fw/rtos/modules/meson.build
index 52f50c2..14b14f5 100644
--- a/fw/rtos/modules/meson.build
+++ b/fw/rtos/modules/meson.build
@@ -5,4 +5,6 @@ zephyr_modules = [
meson.current_source_dir() / 'mcuboot',
]
-bootloader_firmware = meson.current_source_dir() / 'mcuboot' / 'boot' / 'zephyr'
+mcuboot = meson.current_source_dir() / 'mcuboot'
+bootloader_firmware = mcuboot / 'boot' / 'zephyr'
+imgtool = mcuboot / 'scripts' / 'imgtool.py'