From: Simon Glass <sjg@chromium.org>
Date: Sat, 24 Aug 2019 13:23:11 +0000 (-0600)
Subject: binman: Support writing symbols into entries within an IFWI
X-Git-Tag: v2025.01-rc5-pxa1908~2744^2~31
X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=ed9571d269e814975c0626f92e6f322343178edf;p=u-boot.git

binman: Support writing symbols into entries within an IFWI

The Intel IFWI (Integrated Firmware Image) is effectively a section with
other entries inside it. Support writing symbol information into entries
within it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/tools/binman/etype/intel_ifwi.py b/tools/binman/etype/intel_ifwi.py
index 17792defe9..36aadc210c 100644
--- a/tools/binman/etype/intel_ifwi.py
+++ b/tools/binman/etype/intel_ifwi.py
@@ -118,3 +118,8 @@ class Entry_intel_ifwi(Entry_blob):
             entry._ifwi_subpart = fdt_util.GetString(node, 'ifwi-subpart')
             entry._ifwi_entry_name = fdt_util.GetString(node, 'ifwi-entry')
             self._ifwi_entries[entry._ifwi_subpart] = entry
+
+    def WriteSymbols(self, section):
+        """Write symbol values into binary files for access at run time"""
+        for entry in self._ifwi_entries.values():
+            entry.WriteSymbols(self)