From 6915087e2a71dd10b780db6dbfe4c8edff9d4249 Mon Sep 17 00:00:00 2001 From: Timple Raj M Date: Mon, 23 Jan 2023 14:17:27 +0530 Subject: [PATCH] pack_v2: fix for emmc apps image This patch provides the fix for emmc apps image generation. The partition variable value has to be marked as null for the partitions to be skipped in apps image generation. Change-Id: I0067c527f0de38eb513e27fadfeee2accb69f3d3 Signed-off-by: Timple Raj M --- tools/pack_v2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/pack_v2.py b/tools/pack_v2.py index 2a564398c9..4f20f97597 100644 --- a/tools/pack_v2.py +++ b/tools/pack_v2.py @@ -1333,6 +1333,7 @@ class Pack(object): if filename == "": continue except KeyError, e: + partition = "" print "Skipping partition '%s'" % section.attrib['label'] pass