Пример #1
0
 def SetCalculatedProperties(self):
     """Set the value of device-tree properties calculated by binman"""
     super().SetCalculatedProperties()
     for entry in self._cbfs_entries.values():
         state.SetInt(entry._node, 'offset', entry.offset)
         state.SetInt(entry._node, 'size', entry.size)
         state.SetInt(entry._node, 'image-pos', entry.image_pos)
         if entry.uncomp_size is not None:
             state.SetInt(entry._node, 'uncomp-size', entry.uncomp_size)
Пример #2
0
 def SetCalculatedProperties(self):
     """Set the value of device-tree properties calculated by binman"""
     state.SetInt(self._node, 'offset', self.offset)
     state.SetInt(self._node, 'size', self.size)
     base = self.section.GetRootSkipAtStart() if self.section else 0
     state.SetInt(self._node, 'image-pos', self.image_pos - base)
     if self.GetImage().allow_repack:
         if self.orig_offset is not None:
             state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
         if self.orig_size is not None:
             state.SetInt(self._node, 'orig-size', self.orig_size, True)
     if self.uncomp_size is not None:
         state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
     state.CheckSetHashValue(self._node, self.GetData)