From: Simon Glass Date: Tue, 18 Jul 2023 13:23:51 +0000 (-0600) Subject: binman: Init align_default in entry_Section X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=c06c0643329bef80a283ccc2858150b310f4ee80;p=u-boot.git binman: Init align_default in entry_Section This should be set up in the init function, to avoid a warning about a property not set up there. Fix it. Signed-off-by: Simon Glass --- diff --git a/tools/binman/etype/section.py b/tools/binman/etype/section.py index c36edd1350..77250a7525 100644 --- a/tools/binman/etype/section.py +++ b/tools/binman/etype/section.py @@ -168,6 +168,7 @@ class Entry_section(Entry): self._end_4gb = False self._ignore_missing = False self._filename = None + self.align_default = 0 def IsSpecialSubnode(self, node): """Check if a node is a special one used by the section itself