Looking for custom tlv documentation #2273
-
I am trying to add additional data to my images, which should be used as an additional information about whether the image should be booted or not (one hardware with one bootloader becoming different devices later in the production process). So the data should be combined with the image and needs to be signed as part of the image.
But which tags are actually free to use? @michalek-no maybe you can shed some light on this since it looks like you added the info about that option recently. So I guess you worked with it as well? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The list of the TLV types used by MCUboot can be found in image.h. In that header, there are areas defined for vendor-specific types: mcuboot/boot/bootutil/include/bootutil/image.h Lines 134 to 143 in 6cbea0a The API for iterating over the TLVs of an image can be found at the end of the same header. |
Beta Was this translation helpful? Give feedback.
The list of the TLV types used by MCUboot can be found in image.h. In that header, there are areas defined for vendor-specific types:
mcuboot/boot/bootutil/include/bootutil/image.h
Lines 134 to 143 in 6cbea0a
The API for iterating over the TLVs of an image can be found at the end of the same header.