binman: Add a utility library for coreboot CBFS
authorSimon Glass <sjg@chromium.org>
Mon, 8 Jul 2019 19:18:52 +0000 (13:18 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 24 Jul 2019 19:53:46 +0000 (12:53 -0700)
commit4997a7ed05bf109b34ea0d072a33bb29209ae4ff
tree58ea3fca57b1cf9469b0c40e795e912add544c82
parent1cfdfc064a190529c988065e867a6569cdc3c168
binman: Add a utility library for coreboot CBFS

Coreboot uses a simple flash-based filesystem called Coreboot Filesystem
(CBFS) to organise files used during boot. This allows files to be named
and their position in the flash to be set. It has special features for
dealing with x86 devices which typically memory-map their SPI flash to the
top of 32-bit address space and need a 'boot block' ending there.

Create a library to help create and read CBFS files. This includes a
writer class, a reader class and associated other helpers. Only a subset
of features are currently supported.

Signed-off-by: Simon Glass <sjg@chromium.org>
.travis.yml
tools/binman/binman.py
tools/binman/cbfs_util.py [new file with mode: 0644]
tools/binman/cbfs_util_test.py [new file with mode: 0755]