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)
commitbf7fd50b3ba56b53dc13a681d19c845be903c3e0
treeb5f44c6c0ddc61fb68c243e5ed536064b168ec01
parent0b4bc1b3ab1850fccbade3e6103f2036f6bdb364
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]