summaryrefslogtreecommitdiffstats
path: root/scripts/cameo-tag.py
diff options
context:
space:
mode:
authorSander Vanheule <sander@svanheule.net>2022-07-05 10:16:08 +0200
committerSander Vanheule <sander@svanheule.net>2022-07-05 10:18:06 +0200
commitebfe66e494e57f4b421f1190d6bff1d361db1b3d (patch)
tree402b726371e7d8ed35936d3beaffc71fa95fba39 /scripts/cameo-tag.py
parente763c4c89fc5569d7264ff60837eb4aff69a0bfb (diff)
downloadopenwrt-ebfe66e494e57f4b421f1190d6bff1d361db1b3d.tar.gz
openwrt-ebfe66e494e57f4b421f1190d6bff1d361db1b3d.tar.bz2
openwrt-ebfe66e494e57f4b421f1190d6bff1d361db1b3d.zip
scripts: fix CAMEO tag generator
What should have been only cosmetic changes, ended up in breaking the script. Rename UIMAGE_CRC_SLICE back to (the original) UIMAGE_CRC_OFF. Fixes issue #10204 "cameo-tag.py broken" Reported-by: Markus Stockhausen <markus.stockhausen@gmx.de> Fixes: f9e840b65700 ("scripts: add CAMEO tag generator") Signed-off-by: Sander Vanheule <sander@svanheule.net>
Diffstat (limited to 'scripts/cameo-tag.py')
-rwxr-xr-xscripts/cameo-tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cameo-tag.py b/scripts/cameo-tag.py
index 643dd387e8..becd69f8e7 100755
--- a/scripts/cameo-tag.py
+++ b/scripts/cameo-tag.py
@@ -52,7 +52,7 @@ import zlib
READ_UNTIL_EOF = -1
UIMAGE_HEADER_SIZE = 64
-UIMAGE_CRC_SLICE = 4
+UIMAGE_CRC_OFF = 4
UIMAGE_CRC_END = 8
UIMAGE_NAME_OFF = 32
UIMAGE_NAME_END = 56