diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-24 07:23:11 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-10-15 08:40:02 -0600 |
commit | ed9571d269e814975c0626f92e6f322343178edf (patch) | |
tree | 583bddd2114a0c5c879412f39896078ccafadc72 /tools/binman/etype | |
parent | 51f20726ca0e49663b018daa8b42150dd3c58748 (diff) |
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>
Diffstat (limited to 'tools/binman/etype')
-rw-r--r-- | tools/binman/etype/intel_ifwi.py | 5 |
1 files changed, 5 insertions, 0 deletions
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) |