diff options
| author | xengineering <me@xengineering.eu> | 2025-05-24 11:31:11 +0200 | 
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2025-05-24 11:31:11 +0200 | 
| commit | a82bdbbec681cec0c6f5304318b6010f1752dbf6 (patch) | |
| tree | 539d4610508c1bb3069c5f11ee63977e534b2a68 /web | |
| parent | f38300b15627e5234f0f0a07c31c32135901dee7 (diff) | |
| parent | bf8d20fe4d8d3369dd7f63e95f53613dbbfa3603 (diff) | |
| download | iot-contact-a82bdbbec681cec0c6f5304318b6010f1752dbf6.tar iot-contact-a82bdbbec681cec0c6f5304318b6010f1752dbf6.tar.zst iot-contact-a82bdbbec681cec0c6f5304318b6010f1752dbf6.zip  | |
Merge build system improvements
- remove flash targets (replaced by easy to flash `factory-image.bin`)
- replaced installation step by copy targets
- provide `factory-image.bin` and `update-image.bin`
Diffstat (limited to 'web')
| -rw-r--r-- | web/index.html | 4 | ||||
| -rw-r--r-- | web/meson.build | 7 | 
2 files changed, 3 insertions, 8 deletions
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> diff --git a/web/meson.build b/web/meson.build index f8c2024..19551a5 100644 --- a/web/meson.build +++ b/web/meson.build @@ -1,6 +1 @@ -website = fs.copyfile( -  meson.current_source_dir() / 'index.html', -  'index.html', -  install: true, -  install_dir: '/', -) +index_html = fs.copyfile(meson.current_source_dir() / 'index.html')  | 
