summaryrefslogtreecommitdiff
path: root/tools/binman/func_test.py
Commit message (Collapse)AuthorAgeFilesLines
* binman: Rename tests to ftestSimon Glass2017-11-221-813/+0
| | | | | | | | | | At present these tests use the same filename as patman. This adds confusion when running all tests, since error messages look very similar. In fact binman tries to run the wrong tests at present. Rename the tests. Signed-off-by: Simon Glass <sjg@chromium.org>
* tools: binman: Add a new entry type for Intel VBTBin Meng2017-09-161-1/+8
| | | | | | | This adds a new entry type for Intel Video BIOS Table. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
* fdt: Drop fdt_select.pySimon Glass2017-06-021-1/+1
| | | | | | | | | This file was used to select between the normal and fallback libfdt implementations. Now that we only have one, it is not needed. Drop it and fix up all users. Signed-off-by: Simon Glass <sjg@chromium.org>
* binman: Rename fdt variable to dtbSimon Glass2017-06-021-2/+2
| | | | | | | Since fdt is the name of a module, use a different name for variables to avoid a conflict. Signed-off-by: Simon Glass <sjg@chromium.org>
* fdt: Drop fdt_fallback librarySimon Glass2017-06-021-29/+13
| | | | | | Drop this now-unused library and associated tests. Signed-off-by: Simon Glass <sjg@chromium.org>
* binman: Add support for building x86 images with FSP/CMCSimon Glass2016-12-201-0/+14
| | | | | | | | Add support for two more from the inexhaustible supply of x86 binary blob types. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>
* binman: Add support for building x86 ROMs with SPLSimon Glass2016-12-201-0/+88
| | | | | | | | When building for 64-bit x86 we need an SPL binary in the ROM. Add support for this. Also increase entry test code coverage to 100%. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>
* binman: Add support for u-boot.img as an input binarySimon Glass2016-12-201-0/+5
| | | | | | | Add an entry type for u-boot.img (a legacy U-Boot image) and a simple test. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>
* binman: Add support for building x86 ROMsSimon Glass2016-12-201-3/+176
| | | | | | | | | | | | The structure of x86 ROMs is pretty complex. There are various binary blobs to place in the image. Microcode requires special handling so that it is available to very early code and can be used without any memory whatsoever. Add support for the various entry types that are currently needed, along with some tests. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>
* binman: Add basic entry types for U-BootSimon Glass2016-12-201-0/+542
Add entries to support some standard U-Boot binaries, such as u-boot.bin, u-boot.dtb, etc. Also add some tests for these. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>