aboutsummaryrefslogtreecommitdiff
path: root/doc/uImage.FIT/sign-configs.its
AgeCommit message (Collapse)AuthorFilesLines
2018-01-15doc: FIT image: fix incorrect examples of DT node unit addressAndre Przywara1-9/+9
The DT spec demands a unit-address of a node name to match the "reg" property in that node. Newer dtc versions will throw warnings if this is not the case. Fix all occurences in the FIT image example files where this was not observed, to not give bad examples to the reader. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2013-06-26image: Add support for signing of FIT configurationsSimon Glass1-0/+45
While signing images is useful, it does not provide complete protection against several types of attack. For example, it it possible to create a FIT with the same signed images, but with the configuration changed such that a different one is selected (mix and match attack). It is also possible to substitute a signed image from an older FIT version into a newer FIT (roll-back attack). Add support for signing of FIT configurations using the libfdt's region support. Please see doc/uImage.FIT/signature.txt for more information. Signed-off-by: Simon Glass <sjg@chromium.org>