]> git.baikalelectronics.ru Git - uboot.git/commit
binman: Introduce binman, a tool for building binary images
authorSimon Glass <sjg@chromium.org>
Sat, 26 Nov 2016 03:15:51 +0000 (20:15 -0700)
committerSimon Glass <sjg@chromium.org>
Mon, 19 Dec 2016 19:09:55 +0000 (08:09 +1300)
commit61573feb985df537d31ed40202e4c4729ac8c18a
treeb5f44c6c0ddc61fb68c243e5ed536064b168ec01
parentbf50ad7572d31250d85eda268f3f9c1cf4745c71
binman: Introduce binman, a tool for building binary images

This adds the basic code for binman, including command parsing, processing
of entries and generation of images.

So far no entry types are supported. These will be added in future commits
as examples of how to add new types.

See the README for documentation.

Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
tools/binman/.gitignore [new file with mode: 0644]
tools/binman/README [new file with mode: 0644]
tools/binman/binman [new symlink]
tools/binman/binman.py [new file with mode: 0755]
tools/binman/cmdline.py [new file with mode: 0644]
tools/binman/control.py [new file with mode: 0644]
tools/binman/etype/entry.py [new file with mode: 0644]
tools/binman/fdt_test.py [new file with mode: 0644]
tools/binman/image.py [new file with mode: 0644]