diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-08 13:18:53 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-24 12:53:46 -0700 |
commit | ac62fba459ad94d0d6b457a47d90628cc7b76496 (patch) | |
tree | 3987eff8a4e82e1e83955e67e6fb0e14ca6cbb5c /tools/binman/control.py | |
parent | 4997a7ed05bf109b34ea0d072a33bb29209ae4ff (diff) | |
download | u-boot-ac62fba459ad94d0d6b457a47d90628cc7b76496.tar.gz |
binman: Add support for CBFS entries
Add support for putting CBFSs (Coreboot Filesystems) in an image. This
allows binman to produce firmware images used by coreboot to boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r-- | tools/binman/control.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/binman/control.py b/tools/binman/control.py index df78848e13..4a94afc864 100644 --- a/tools/binman/control.py +++ b/tools/binman/control.py @@ -12,6 +12,7 @@ import os import sys import tools +import cbfs_util import command import elf from image import Image @@ -108,6 +109,7 @@ def Binman(options, args): tout.Init(options.verbosity) elf.debug = options.debug + cbfs_util.VERBOSE = options.verbosity > 2 state.use_fake_dtb = options.fake_dtb try: tools.SetInputDirs(options.indir) |