summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-06 14:24:06 +0200
committerxengineering <me@xengineering.eu>2025-04-06 14:24:06 +0200
commit5376b67a9df63d2b30cac415cb827e6b4c1674e9 (patch)
treec679795279cadf7e5b5902edf5edf33370028cfa /web
parente28796985d5f605fbdb1f5043618b1f570e747af (diff)
downloadiot-contact-5376b67a9df63d2b30cac415cb827e6b4c1674e9.tar
iot-contact-5376b67a9df63d2b30cac415cb827e6b4c1674e9.tar.zst
iot-contact-5376b67a9df63d2b30cac415cb827e6b4c1674e9.zip
Build bootloader and add to website
Meson makes this relatively easy. The current approach is nevertheless a bit hacky. For the first attempt it is still way better than CMake ExternalProject.
Diffstat (limited to 'web')
-rw-r--r--web/layouts/home.html1
-rw-r--r--web/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/web/layouts/home.html b/web/layouts/home.html
index bf534cf..4f1f7fc 100644
--- a/web/layouts/home.html
+++ b/web/layouts/home.html
@@ -3,5 +3,6 @@
<ul>
<li><a href="static/bill-of-materials.csv">bill-of-materials.csv</a></li>
<li><a href="static/schematic.pdf">schematic.pdf</a></li>
+ <li><a href="static/bootloader.bin">bootloader.bin</a></li>
</ul>
{{- end -}}
diff --git a/web/meson.build b/web/meson.build
index 1526621..270b7c3 100644
--- a/web/meson.build
+++ b/web/meson.build
@@ -13,6 +13,7 @@ website = custom_target('website',
depends: [
schematic,
bom,
+ bootloader,
],
build_by_default: true,
install: true,