aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/rtos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtos/rtos.c')
-rw-r--r--src/rtos/rtos.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index a0bbc82b..3deeb68e 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -37,12 +37,14 @@ static void hex_to_str( char* dst, char * hex_src );
extern struct rtos_type FreeRTOS_rtos;
extern struct rtos_type ThreadX_rtos;
extern struct rtos_type eCos_rtos;
+extern struct rtos_type Linux_os;
static struct rtos_type *rtos_types[] =
{
&ThreadX_rtos,
&FreeRTOS_rtos,
&eCos_rtos,
+ &Linux_os,
NULL
};