From ebfe66e494e57f4b421f1190d6bff1d361db1b3d Mon Sep 17 00:00:00 2001 From: Sander Vanheule Date: Tue, 5 Jul 2022 10:16:08 +0200 Subject: [PATCH] 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 Fixes: f9e840b65700 ("scripts: add CAMEO tag generator") Signed-off-by: Sander Vanheule --- scripts/cameo-tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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