Lines Matching full:image
15 from image import Image
24 """Read the image descriptions from the /binman node
26 This normally produces a single Image object called 'image'. But if
32 OrderedDict of Image objects, each of which describes an image
37 images[node.name] = Image(node.name, node)
39 images['image'] = Image('image', binman_node)
88 # Try to figure out which device tree contains our image description
130 if options.image:
132 for name, image in images.iteritems():
133 if name not in options.image:
148 for image in images.values():
149 image.ExpandEntries()
151 image.AddMissingProperties()
152 image.ProcessFdt(dtb)
159 for image in images.values():
160 # Perform all steps for this image, including checking and
162 # image will be reported after earlier images are already
164 image.GetEntryContents()
165 image.GetEntryOffsets()
167 image.PackEntries()
168 image.CheckSize()
169 image.CheckEntries()
172 fname = image.WriteMap()
175 image.SetImagePos()
177 image.SetCalculatedProperties()
180 image.ProcessEntryContents()
181 image.WriteSymbols()
182 image.BuildImage()
184 image.WriteMap()