1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 12:28:09 +00:00

chore(legacy/bootloader): drop unused VERSION_x_CHAR

[no changelog]
This commit is contained in:
matejcik 2022-10-21 14:33:51 +02:00 committed by matejcik
parent 2b48ced330
commit 29e064f07b
2 changed files with 0 additions and 7 deletions

View File

@ -1,7 +1,3 @@
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 11 #define VERSION_MINOR 11
#define VERSION_PATCH 0 #define VERSION_PATCH 0
#define VERSION_MAJOR_CHAR "\x01"
#define VERSION_MINOR_CHAR "\x0B"
#define VERSION_PATCH_CHAR "\x00"

View File

@ -88,9 +88,6 @@ def cli(project, version):
VERSION_MAJOR=major, VERSION_MAJOR=major,
VERSION_MINOR=minor, VERSION_MINOR=minor,
VERSION_PATCH=patch, VERSION_PATCH=patch,
VERSION_MAJOR_CHAR=hex_lit(major),
VERSION_MINOR_CHAR=hex_lit(minor),
VERSION_PATCH_CHAR=hex_lit(patch),
) )
else: else:
raise click.ClickException(f"Unknown project {project}.") raise click.ClickException(f"Unknown project {project}.")