From 24e39b252de799838c1eb8f5a49f7c89129d5f71 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 15 Apr 2016 17:37:07 -0500 Subject: [PATCH] Print RTEMS version at startup --- src/RTEMS/base/rtems_init.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/RTEMS/base/rtems_init.c b/src/RTEMS/base/rtems_init.c index e89006b51..5030b0818 100644 --- a/src/RTEMS/base/rtems_init.c +++ b/src/RTEMS/base/rtems_init.c @@ -529,6 +529,12 @@ Init (rtems_task_argument ignored) putenv ("TERM=xterm"); putenv ("IOCSH_HISTSIZE=20"); + /* + * Display some OS information + */ + printf("\n***** RTEMS Version: %s *****\n", + rtems_get_version_string()); + /* * Start network */