summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--artifacts/meson.build3
-rw-r--r--fw/app/meson.build4
-rw-r--r--web/index.html4
3 files changed, 5 insertions, 6 deletions
diff --git a/artifacts/meson.build b/artifacts/meson.build
index 9e14232..278c695 100644
--- a/artifacts/meson.build
+++ b/artifacts/meson.build
@@ -4,8 +4,7 @@ artifacts = [
schematic,
bom,
simulation,
- bootloader,
- application_signed,
+ update_image,
factory_image,
]
diff --git a/fw/app/meson.build b/fw/app/meson.build
index 27b4a41..6665fe4 100644
--- a/fw/app/meson.build
+++ b/fw/app/meson.build
@@ -28,8 +28,8 @@ version = '0.0.0'
header_size = '0x200'
slot_size = '0xc0000'
-application_signed = custom_target(
- output: ['application.signed.bin'],
+update_image = custom_target(
+ output: ['update-image.bin'],
command: [
imgtool,
'sign',
diff --git a/web/index.html b/web/index.html
index 1f23096..e5bf005 100644
--- a/web/index.html
+++ b/web/index.html
@@ -18,8 +18,8 @@
<h4>Firmware</h4>
<ul>
- <li><a href="application.signed.bin">application.signed.bin</a></li>
- <li><a href="bootloader.bin">bootloader.bin</a></li>
+ <li><a href="factory-image.bin">factory-image.bin</a></li>
+ <li><a href="update-image.bin">update-image.bin</a></li>
<li><a href="simulation-linux-amd64.exe">simulation-linux-amd64.exe</a></li>
</ul>
</main>