diff options
author | Marek Vasut <marex@denx.de> | 2014-12-16 14:07:21 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-14 11:37:39 -0500 |
commit | 67ddd955fc7a10c3808503a98838a3501ffafece (patch) | |
tree | 2b2325015eea70b69dea064c735f68d45111bf3f /common/image.c | |
parent | 9637c4b2dd5e84418f7367e5361ba9ff6726e377 (diff) |
image: bootm: Add OpenRTOS image type
Add separate image type for the Wittenstein OpenRTOS .
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/image.c')
-rw-r--r-- | common/image.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c index e691a517894..ad7a46d08d8 100644 --- a/common/image.c +++ b/common/image.c @@ -120,6 +120,10 @@ static const table_entry_t uimage_os[] = { { IH_OS_SOLARIS, "solaris", "Solaris", }, { IH_OS_SVR4, "svr4", "SVR4", }, #endif +#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC) + { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", }, +#endif + { -1, "", "", }, }; |