mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
binman: Allow writing a map file when something goes wrong
When we get a problem like overlapping regions it is sometimes hard to figure what what is going on. At present we don't write the map file in this case. However the file does provide useful information. Catch any packing errors and write a map file (if enabled with -m) to aid debugging. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -139,10 +139,15 @@ class Image:
|
||||
return self._section.GetEntries()
|
||||
|
||||
def WriteMap(self):
|
||||
"""Write a map of the image to a .map file"""
|
||||
"""Write a map of the image to a .map file
|
||||
|
||||
Returns:
|
||||
Filename of map file written
|
||||
"""
|
||||
filename = '%s.map' % self._name
|
||||
fname = tools.GetOutputFilename(filename)
|
||||
with open(fname, 'w') as fd:
|
||||
print('%8s %8s %8s %s' % ('ImagePos', 'Offset', 'Size', 'Name'),
|
||||
file=fd)
|
||||
self._section.WriteMap(fd, 0)
|
||||
return fname
|
||||
|
Reference in New Issue
Block a user