diff options
author | Andrew F. Davis <afd@ti.com> | 2016-11-29 16:33:20 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-03 13:21:19 -0500 |
commit | d7be50921ed35e36e000a5e8daba41701a5eebb9 (patch) | |
tree | 54562749aee083bb8f3b86eb2fee34c48c7e1291 /doc/uImage.FIT | |
parent | 5ca28f67ace439ee06efd310b53621526bd06468 (diff) | |
download | u-boot-d7be50921ed35e36e000a5e8daba41701a5eebb9.tar.gz |
image: Add FIT image loadable section custom processing
To help automate the loading of custom image types we add the ability
to define custom handlers for the loadable section types. When we find
a compatible type while loading a "loadable" image from a FIT image we
run its associated handlers to perform any additional steps needed for
loading this image.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/uImage.FIT')
-rw-r--r-- | doc/uImage.FIT/source_file_format.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/uImage.FIT/source_file_format.txt b/doc/uImage.FIT/source_file_format.txt index 91aa89a77e..afff301c88 100644 --- a/doc/uImage.FIT/source_file_format.txt +++ b/doc/uImage.FIT/source_file_format.txt @@ -256,7 +256,9 @@ o config@1 (component image node of a "fpga type"). - loadables : Unit name containing a list of additional binaries to be loaded at their given locations. "loadables" is a comma-separated list - of strings. U-Boot will load each binary at its given start-address. + of strings. U-Boot will load each binary at its given start-address and + may optionaly invoke additional post-processing steps on this binary based + on its component image node type. The FDT blob is required to properly boot FDT based kernel, so the minimal configuration for 2.6 FDT kernel is (kernel, fdt) pair. |