diff options
author | xengineering <me@xengineering.eu> | 2025-05-24 11:17:46 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-05-24 11:17:46 +0200 |
commit | b1838d1c5b6bd27757d50d784543ea0ae16c1769 (patch) | |
tree | a40c216f88f13bba25442f7b07ae80696442a519 /fw/meson.build | |
parent | f38300b15627e5234f0f0a07c31c32135901dee7 (diff) | |
download | iot-contact-b1838d1c5b6bd27757d50d784543ea0ae16c1769.tar iot-contact-b1838d1c5b6bd27757d50d784543ea0ae16c1769.tar.zst iot-contact-b1838d1c5b6bd27757d50d784543ea0ae16c1769.zip |
Remove `st-flash`-based build targets
This was used since flashing was complex. Thus the build system should
help making it easier.
The new approach is more to provide artifacts by the build system which
are easy to flash / remote-update. A `factory-image.bin` and
`update-image.bin` should be provided.
Diffstat (limited to 'fw/meson.build')
-rw-r--r-- | fw/meson.build | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/fw/meson.build b/fw/meson.build index f61058c..8194827 100644 --- a/fw/meson.build +++ b/fw/meson.build @@ -7,14 +7,3 @@ subdir('rtos') subdir('app') subdir('btl') subdir('sim') - -erase = custom_target( - build_always_stale: true, - build_by_default: false, - command: [ - 'st-flash', - '--connect-under-reset', - 'erase', - ], - output: ['erase'], -) |