summaryrefslogtreecommitdiffstats
path: root/hello_world_ada
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-08-17 20:24:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-08-17 20:24:36 +0000
commited30e2b63dd8ff5c3336b1110fcd0186fa98a5d0 (patch)
tree2d8de2bbdc15af49cd2cf28e3a88998fa89666bb /hello_world_ada
parent2007-07-23 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadada-examples-ed30e2b63dd8ff5c3336b1110fcd0186fa98a5d0.tar.bz2
2007-08-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.anybsp: ep5200 renamed icecube. Trigger special case logic on RTEMS_BSP_FAMILY not RTEMS_BSP. * init.c: Remove print. * ChangeLog: New file.
Diffstat (limited to 'hello_world_ada')
-rw-r--r--hello_world_ada/ChangeLog7
-rw-r--r--hello_world_ada/Makefile.anybsp2
-rw-r--r--hello_world_ada/init.c1
3 files changed, 8 insertions, 2 deletions
diff --git a/hello_world_ada/ChangeLog b/hello_world_ada/ChangeLog
new file mode 100644
index 0000000..7ec22a4
--- /dev/null
+++ b/hello_world_ada/ChangeLog
@@ -0,0 +1,7 @@
+2007-08-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile.anybsp: ep5200 renamed icecube. Trigger special case logic
+ on RTEMS_BSP_FAMILY not RTEMS_BSP.
+ * init.c: Remove print.
+ * ChangeLog: New file.
+
diff --git a/hello_world_ada/Makefile.anybsp b/hello_world_ada/Makefile.anybsp
index a424f20..add3e36 100644
--- a/hello_world_ada/Makefile.anybsp
+++ b/hello_world_ada/Makefile.anybsp
@@ -20,7 +20,7 @@ include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
include $(PROJECT_ROOT)/make/leaf.cfg
-ifeq ($(RTEMS_BSP),ep5200)
+ifeq ($(RTEMS_BSP_FAMILY),gen5200)
LINKARGS+=-qnolinkcmds -T$(RTEMS_LINKCMDS)
endif
diff --git a/hello_world_ada/init.c b/hello_world_ada/init.c
index c5914a9..6212433 100644
--- a/hello_world_ada/init.c
+++ b/hello_world_ada/init.c
@@ -43,7 +43,6 @@ void *start_gnat_main( void * argument )
{
extern int gnat_main ( int argc, char **argv, char **envp );
- printk( "Transferring to Ada\n" );
(void) gnat_main ( 0, 0, 0 );
exit( 0 );