]> rtime.felk.cvut.cz Git - rtems-devel.git/commitdiff
Template application updated to build for RTEMS 4.9.x environment.
authorPavel Pisa <pisa@cmp.felk.cvut.cz>
Sun, 29 Nov 2009 12:29:22 +0000 (13:29 +0100)
committerPavel Pisa <pisa@cmp.felk.cvut.cz>
Sun, 29 Nov 2009 12:29:22 +0000 (13:29 +0100)
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
rtems-omk-template/.gitignore [new file with mode: 0644]
rtems-omk-template/appfoo/init.c
rtems-omk-template/appfoo/system.h
rtems-omk-template/config/config.csb336 [new file with mode: 0644]
rtems-omk-template/config/config.ec555
rtems-omk-template/config/config.mo376

diff --git a/rtems-omk-template/.gitignore b/rtems-omk-template/.gitignore
new file mode 100644 (file)
index 0000000..189b17f
--- /dev/null
@@ -0,0 +1,2 @@
+_build
+_compiled
index 06f57dcd4f94bef1b0c1fb556843f05f53c08f91..d24847c228ab1e4598e437261926f5dd85b5b709 100644 (file)
 #define BUILD_VERSION_STRING(major,minor,patch) \
         __XSTRING(major) "." __XSTRING(minor) "." __XSTRING(patch)
 
+#define RTEMS_VER_CODE VER_CODE(__RTEMS_MAJOR__ ,__RTEMS_MINOR__ ,__RTEMS_REVISION__)
+
+#if RTEMS_VER_CODE < VER_CODE(4,7,99)
+  #define rtems_shell_add_cmd shell_add_cmd
+  #define rtems_shell_init(m_task_name,m_task_stacksize,m_task_priority,m_devname,m_forever,m_wait,m_login_check) \
+                shell_init(m_task_name,m_task_stacksize,m_task_priority,m_devname,shell_init,m_forever)
+#elif RTEMS_VER_CODE < VER_CODE(4,9,99)
+  #define rtems_shell_init(m_task_name,m_task_stacksize,m_task_priority,m_devname,m_forever,m_wait,m_login_check) \
+          rtems_shell_init(m_task_name,m_task_stacksize,m_task_priority,m_devname,m_forever,m_wait)
+#endif
+
 void 
 bad_rtems_status(rtems_status_code status, int fail_level, const char *text)
 {
@@ -83,10 +94,10 @@ rtems_task Init(
   status = rtems_task_start( Task_1_id, Task_1, 0 );
   check_rtems_status(status, 0, "rtems_task_start of Task_1\n");
 
-  shell_init("SHLL",RTEMS_MINIMUM_STACK_SIZE+0x1000,
-              SHELL_TASK_PRIORITY,"/dev/console",B19200 | CS8, 0);
+  rtems_shell_init("SHLL",RTEMS_MINIMUM_STACK_SIZE+0x1000,
+              SHELL_TASK_PRIORITY,"/dev/console",1,0, NULL);
 
-  shell_add_cmd("testcmd", "app",
+  rtems_shell_add_cmd("testcmd", "app",
                 "test command for shell",
                 testcmd_forshell);
 
index 38498dc74801ea3d642e4c325e3fcf22daaa2aa8..727955121fbe7e1f8f16c86dec744a09dd35b071 100644 (file)
@@ -26,7 +26,8 @@ rtems_task Init(
 #include <bsp.h> /* for device driver prototypes */
 
 #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_LIBBLOCK
 
 #define TICKS_PER_SECOND 1000
 
diff --git a/rtems-omk-template/config/config.csb336 b/rtems-omk-template/config/config.csb336
new file mode 100644 (file)
index 0000000..67c02d0
--- /dev/null
@@ -0,0 +1,4 @@
+# CSB336 BSP for COGENT CSB336 and PiKRON PiMX1 boards
+# This file should be symlinked as config.target into project
+# Makefile.rules directory
+RTEMS_MAKEFILE_PATH=/opt/rtems4.9/arm-rtems4.9/csb336
index ebbb6a264b4ebff468a375e53f1c9f98252ef8da..e71e2d4dfb7dc852b5c32f2e89ad29226b218dee 100644 (file)
@@ -1,4 +1,4 @@
 # EC555 BSP for Wuerz-elektronik EC555 board
 # This file should be symlinked as config.target into project
 # Makefile.rules directory
-RTEMS_MAKEFILE_PATH=/opt/rtems/powerpc-rtems/ec555
+RTEMS_MAKEFILE_PATH=/opt/rtems4.9/powerpc-rtems4.9/ec555
index 2f5ffe409a915cff30171fb5c5782823a09000d6..e112dffb59d49c1a7a9980e50f8e3cdc931bc27c 100644 (file)
@@ -1,4 +1,4 @@
 # EC555 BSP for Wuerz-elektronik EC555 board
 # This file should be symlinked as config.target into project
 # Makefile.rules directory
-RTEMS_MAKEFILE_PATH=/opt/rtems/m68k-rtems/mo376
+RTEMS_MAKEFILE_PATH=/opt/rtems4.9/m68k-rtems4.9/mo376