summaryrefslogtreecommitdiff
path: root/tools/binman/control.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-03-05 20:19:00 -0700
committerSimon Glass <sjg@chromium.org>2022-03-18 19:24:25 -0600
commitc9ee33ac974b5ca2a818a1b0d684d5d27675b9a4 (patch)
treec1795b4a34ff81bbff6e2d7f49adfdb934a057e7 /tools/binman/control.py
parent80a66ae646eec82f4650bfc40f609584ba4bcebd (diff)
binman: Rename ExpandEntries to gen_entries
Leave the 'expand' term for use by entry types which have an expanded version of themselves. Rename this method to indicate that it generates subentries. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r--tools/binman/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/control.py b/tools/binman/control.py
index c9d7a08bbc2..d4c8dc89201 100644
--- a/tools/binman/control.py
+++ b/tools/binman/control.py
@@ -507,7 +507,7 @@ def PrepareImagesAndDtbs(dtb_fname, select_images, update_fdt, use_expanded):
# entry offsets remain the same.
for image in images.values():
image.CollectBintools()
- image.ExpandEntries()
+ image.gen_entries()
if update_fdt:
image.AddMissingProperties(True)
image.ProcessFdt(dtb)