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 /tools/configure_zephyr.py | |
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 'tools/configure_zephyr.py')
-rwxr-xr-x | tools/configure_zephyr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure_zephyr.py b/tools/configure_zephyr.py index e709063..f4707c6 100755 --- a/tools/configure_zephyr.py +++ b/tools/configure_zephyr.py @@ -43,7 +43,7 @@ def main() -> None: command.append(f"-DEXTRA_CONF_FILE={args.extra_config}") if args.signing_key is not None: - command.append(f"-DCONFIG_BOOT_SIGNATURE_KEY_FILE=\"{args.signing_key}\"") + command.append(f'-DCONFIG_BOOT_SIGNATURE_KEY_FILE="{args.signing_key}"') subprocess.run(command, shell=False, check=True) |