summaryrefslogtreecommitdiff
path: root/fw/app
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/app
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/app')
-rw-r--r--fw/app/meson.build19
1 files changed, 18 insertions, 1 deletions
diff --git a/fw/app/meson.build b/fw/app/meson.build
index d477331..97c17f1 100644
--- a/fw/app/meson.build
+++ b/fw/app/meson.build
@@ -14,7 +14,8 @@ external_project.add_project(
verbose: true,
)
-application = custom_target('application',
+application = custom_target(
+ 'application',
output: ['application.bin'],
command: [
build_zephyr,
@@ -22,7 +23,23 @@ application = custom_target('application',
'--binary-name', 'zephyr.bin',
'--target-name', 'application.bin',
],
+)
+
+application_signed = custom_target(
+ 'application_signed',
+ output: ['application.signed.bin'],
+ command: [
+ imgtool,
+ 'sign',
+ '--version', '0.0.0',
+ '--header-size', '0x200',
+ '--slot-size', '0xc0000',
+ '--key', signing_key,
+ meson.current_build_dir() / 'application.bin',
+ meson.current_build_dir() / 'application.signed.bin',
+ ],
build_by_default: true,
+ depends: application,
install: true,
install_dir: 'website/static',
)