diff options
author | Sughosh Ganu | 2022-04-15 11:29:34 +0530 |
---|---|---|
committer | Heinrich Schuchardt | 2022-04-15 10:43:18 +0200 |
commit | 741ef867288bb294039e34ab2287ffe981b05b86 (patch) | |
tree | 283cab5cd74fea8b86672de3dc3fdb674117dd17 /include/configs/kontron_sl28.h | |
parent | 42a2d90cf51acea56bf19006ed5688c93c099ff0 (diff) |
capsule: board: Add information needed for capsule updates
Add a structure which defines the information that is needed for
executing capsule updates on a platform. Some information in the
structure like the dfu string is used for making the update process
more robust while some information like the per platform image GUIDs
is used for fixing issues. Initialise this structure in the board
file, and use the information for the capsule updates.
Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Diffstat (limited to 'include/configs/kontron_sl28.h')
-rw-r--r-- | include/configs/kontron_sl28.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/kontron_sl28.h b/include/configs/kontron_sl28.h index 97286b6180a..c3ab049535a 100644 --- a/include/configs/kontron_sl28.h +++ b/include/configs/kontron_sl28.h @@ -52,6 +52,11 @@ #define CONFIG_SYS_SPL_MALLOC_START 0x80200000 #define CONFIG_SYS_MONITOR_LEN (1024 * 1024) +/* GUID for capsule updatable firmware image */ +#define KONTRON_SL28_FIT_IMAGE_GUID \ + EFI_GUID(0x86ebd44f, 0xfeb8, 0x466f, 0x8b, 0xb8, \ + 0x89, 0x06, 0x18, 0x45, 0x6d, 0x8b) + /* environment */ /* see include/configs/ti_armv7_common.h */ #define ENV_MEM_LAYOUT_SETTINGS \ |