From 1f3309ac0664f3bfd238af7fa17d9b5a5004510e Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Fri, 14 Nov 2025 20:16:43 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Use=20config=5Fdump=201=20for=20?= =?UTF-8?q?mc.zip=20embedding?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buildroot/share/PlatformIO/scripts/signature.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot/share/PlatformIO/scripts/signature.py b/buildroot/share/PlatformIO/scripts/signature.py index c91b5fcf2d..17bcb0d802 100755 --- a/buildroot/share/PlatformIO/scripts/signature.py +++ b/buildroot/share/PlatformIO/scripts/signature.py @@ -198,7 +198,7 @@ def compute_build_signature(env): # Get the CONFIG_EXPORT value and do an extended dump if > 100 # For example, CONFIG_EXPORT 102 will make a 'config.ini' with a [config:] group for each schema @section - config_dump = 101 if is_embed else tryint('CONFIG_EXPORT') + config_dump = 1 if is_embed else tryint('CONFIG_EXPORT') extended_dump = config_dump > 100 config_dump %= 100