mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
binman: Allow for logging information to be displayed
Binman generally operates silently but in some cases it is useful to see what Binman is actually doing at each step. Enable some logging output with different logging levels selectable via the -v flag. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
61f564d15f
commit
eea264ead3
4 changed files with 31 additions and 4 deletions
|
@ -533,6 +533,24 @@ or with wildcards:
|
||||||
image-header bf8 8 image-header bf8
|
image-header bf8 8 image-header bf8
|
||||||
|
|
||||||
|
|
||||||
|
Logging
|
||||||
|
-------
|
||||||
|
|
||||||
|
Binman normally operates silently unless there is an error, in which case it
|
||||||
|
just displays the error. The -D/--debug option can be used to create a full
|
||||||
|
backtrace when errors occur.
|
||||||
|
|
||||||
|
Internally binman logs some output while it is running. This can be displayed
|
||||||
|
by increasing the -v/--verbosity from the default of 1:
|
||||||
|
|
||||||
|
0: silent
|
||||||
|
1: warnings only
|
||||||
|
2: notices (important messages)
|
||||||
|
3: info about major operations
|
||||||
|
4: detailed information about each operation
|
||||||
|
5: debug (all output)
|
||||||
|
|
||||||
|
|
||||||
Hashing Entries
|
Hashing Entries
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
@ -868,7 +886,6 @@ Some ideas:
|
||||||
- Add an option to decode an image into the constituent binaries
|
- Add an option to decode an image into the constituent binaries
|
||||||
- Support building an image for a board (-b) more completely, with a
|
- Support building an image for a board (-b) more completely, with a
|
||||||
configurable build directory
|
configurable build directory
|
||||||
- Support logging of binman's operations, with different levels of verbosity
|
|
||||||
- Support updating binaries in an image (with no size change / repacking)
|
- Support updating binaries in an image (with no size change / repacking)
|
||||||
- Support updating binaries in an image (with repacking)
|
- Support updating binaries in an image (with repacking)
|
||||||
- Support adding FITs to an image
|
- Support adding FITs to an image
|
||||||
|
|
|
@ -23,6 +23,7 @@ import sys
|
||||||
import fdt_util
|
import fdt_util
|
||||||
import state
|
import state
|
||||||
import tools
|
import tools
|
||||||
|
import tout
|
||||||
|
|
||||||
modules = {}
|
modules = {}
|
||||||
|
|
||||||
|
@ -272,7 +273,7 @@ class Entry(object):
|
||||||
new_size = len(data)
|
new_size = len(data)
|
||||||
if state.AllowEntryExpansion():
|
if state.AllowEntryExpansion():
|
||||||
if new_size > self.contents_size:
|
if new_size > self.contents_size:
|
||||||
print("Entry '%s' size change from %#x to %#x" % (
|
tout.Debug("Entry '%s' size change from %#x to %#x" % (
|
||||||
self._node.path, self.contents_size, new_size))
|
self._node.path, self.contents_size, new_size))
|
||||||
# self.data will indicate the new size needed
|
# self.data will indicate the new size needed
|
||||||
size_ok = False
|
size_ok = False
|
||||||
|
|
|
@ -20,6 +20,7 @@ from etype import section
|
||||||
import fdt
|
import fdt
|
||||||
import fdt_util
|
import fdt_util
|
||||||
import tools
|
import tools
|
||||||
|
import tout
|
||||||
|
|
||||||
class Image(section.Entry_section):
|
class Image(section.Entry_section):
|
||||||
"""A Image, representing an output from binman
|
"""A Image, representing an output from binman
|
||||||
|
@ -107,7 +108,7 @@ class Image(section.Entry_section):
|
||||||
for entry in self._entries.values():
|
for entry in self._entries.values():
|
||||||
if not entry.ProcessContents():
|
if not entry.ProcessContents():
|
||||||
sizes_ok = False
|
sizes_ok = False
|
||||||
print("Entry '%s' size change" % self._node.path)
|
tout.Debug("Entry '%s' size change" % self._node.path)
|
||||||
return sizes_ok
|
return sizes_ok
|
||||||
|
|
||||||
def WriteSymbols(self):
|
def WriteSymbols(self):
|
||||||
|
|
|
@ -131,13 +131,21 @@ def Info(msg):
|
||||||
"""
|
"""
|
||||||
_Output(3, msg)
|
_Output(3, msg)
|
||||||
|
|
||||||
|
def Detail(msg):
|
||||||
|
"""Display a detailed message
|
||||||
|
|
||||||
|
Args:
|
||||||
|
msg; Message to display.
|
||||||
|
"""
|
||||||
|
_Output(4, msg)
|
||||||
|
|
||||||
def Debug(msg):
|
def Debug(msg):
|
||||||
"""Display a debug message
|
"""Display a debug message
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
msg; Message to display.
|
msg; Message to display.
|
||||||
"""
|
"""
|
||||||
_Output(4, msg)
|
_Output(5, msg)
|
||||||
|
|
||||||
def UserOutput(msg):
|
def UserOutput(msg):
|
||||||
"""Display a message regardless of the current output level.
|
"""Display a message regardless of the current output level.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue