diff options
author | Simon Glass <sjg@chromium.org> | 2022-03-05 20:19:00 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-03-18 19:24:25 -0600 |
commit | c9ee33ac974b5ca2a818a1b0d684d5d27675b9a4 (patch) | |
tree | c1795b4a34ff81bbff6e2d7f49adfdb934a057e7 /tools/binman/entry.py | |
parent | 80a66ae646eec82f4650bfc40f609584ba4bcebd (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/entry.py')
-rw-r--r-- | tools/binman/entry.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py index 52ba7a81a07..da77236a8a7 100644 --- a/tools/binman/entry.py +++ b/tools/binman/entry.py @@ -286,8 +286,8 @@ class Entry(object): """ return {} - def ExpandEntries(self): - """Expand out entries which produce other entries + def gen_entries(self): + """Allow entries to generate other entries Some entries generate subnodes automatically, from which sub-entries are then created. This method allows those to be added to the binman |