diff options
author | Maxim Moskalets <maximmosk4@gmail.com> | 2024-06-21 14:42:10 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-05 13:57:02 -0600 |
commit | 2abf14df5dd3944ab22352b397c63516bcf312c3 (patch) | |
tree | 612aeafd93a130757d8f41ea86dc3020fc2ce133 /include | |
parent | 6074f6e85783f582e8524778fff170ff05b35a91 (diff) | |
download | u-boot-2abf14df5dd3944ab22352b397c63516bcf312c3.tar.gz u-boot-2abf14df5dd3944ab22352b397c63516bcf312c3.tar.bz2 u-boot-2abf14df5dd3944ab22352b397c63516bcf312c3.zip |
cmd: bootm: add ELF file support
Some operating systems (e.g. seL4) and embedded applications are ELF
images. It is convenient to use FIT-images to implement trusted boot.
Added "elf" image type for booting using bootm command.
Signed-off-by: Maxim Moskalets <maximmosk4@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index c5b288f62b..9daaee15cd 100644 --- a/include/image.h +++ b/include/image.h @@ -100,6 +100,7 @@ enum { IH_OS_TEE, /* Trusted Execution Environment */ IH_OS_OPENSBI, /* RISC-V OpenSBI */ IH_OS_EFI, /* EFI Firmware (e.g. GRUB2) */ + IH_OS_ELF, /* ELF Image (e.g. seL4) */ IH_OS_COUNT, }; |