change log for rtems (2011-05-13)

rtems-vc at rtems.org rtems-vc at rtems.org
Fri May 13 16:10:24 UTC 2011


 *ralf*:
2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>

	* libfs/Makefile.am: Unconditionally descend into src/nfsclient.
	Include subdirs.am.

M 1.2822  cpukit/ChangeLog
M   1.48  cpukit/libfs/Makefile.am

diff -u rtems/cpukit/ChangeLog:1.2821 rtems/cpukit/ChangeLog:1.2822
--- rtems/cpukit/ChangeLog:1.2821	Fri May 13 08:49:15 2011
+++ rtems/cpukit/ChangeLog	Fri May 13 10:34:50 2011
@@ -1,3 +1,8 @@
+2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* libfs/Makefile.am: Unconditionally descend into src/nfsclient.
+	Include subdirs.am.
+
 2011-05-13	Sebastian Huber <sebastian.huber at embedded-brains.de>
 
 	* libmisc/devnull/devzero.c, libmisc/devnull/devzero.h: New files.

diff -u rtems/cpukit/libfs/Makefile.am:1.47 rtems/cpukit/libfs/Makefile.am:1.48
--- rtems/cpukit/libfs/Makefile.am:1.47	Wed Aug 25 04:37:48 2010
+++ rtems/cpukit/libfs/Makefile.am	Fri May 13 10:34:50 2011
@@ -5,12 +5,7 @@
 include $(top_srcdir)/automake/multilib.am
 include $(top_srcdir)/automake/compile.am
 
-# Pick up nfsclient
-if LIBNETWORKING
-NFSCLIENT_SUBDIR= src/nfsclient
-endif
-SUBDIRS = $(NFSCLIENT_SUBDIR)
-DIST_SUBDIRS = $(SUBDIRS)
+SUBDIRS = src/nfsclient
 
 EXTRA_DIST = README
 
@@ -100,4 +95,5 @@
 
 # ---
 include $(srcdir)/preinstall.am
+include $(top_srcdir)/automake/subdirs.am
 include $(top_srcdir)/automake/local.am


 *ralf*:
2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>

	* rtems/interr.c: Minimize diffs to cpukit/score/src/interr.c.
	* rtems/sched_cpu/rtems/score/cpu.h:
	Incorporate parts of former posix BSP.

M    1.5  tools/schedsim/ChangeLog
M    1.2  tools/schedsim/rtems/interr.c
M    1.2  tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h

diff -u rtems/tools/schedsim/ChangeLog:1.4 rtems/tools/schedsim/ChangeLog:1.5
--- rtems/tools/schedsim/ChangeLog:1.4	Thu Apr  7 13:20:32 2011
+++ rtems/tools/schedsim/ChangeLog	Fri May 13 10:50:56 2011
@@ -1,3 +1,9 @@
+2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* rtems/interr.c: Minimize diffs to cpukit/score/src/interr.c.
+	* rtems/sched_cpu/rtems/score/cpu.h: 
+	Incorporate parts of former posix BSP.
+
 2011-04-07	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* README: New file.

diff -u rtems/tools/schedsim/rtems/interr.c:1.1 rtems/tools/schedsim/rtems/interr.c:1.2
--- rtems/tools/schedsim/rtems/interr.c:1.1	Fri Dec 17 08:51:56 2010
+++ rtems/tools/schedsim/rtems/interr.c	Fri May 13 10:50:56 2011
@@ -22,9 +22,6 @@
 #include <rtems/score/sysstate.h>
 #include <rtems/score/userext.h>
 
-#include <stdlib.h>
-#include <stdio.h>
-
 /*PAGE
  *
  *  _Internal_error_Occurred
@@ -63,8 +60,7 @@
 
   _System_state_Set( SYSTEM_STATE_FAILED );
 
-  fprintf( stderr, "FATAL ERROR!!\n" );
-  exit( -1 );
+  _CPU_Fatal_halt( the_error );
 
   /* will not return from this routine */
   while (true);

diff -u rtems/tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h:1.1 rtems/tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h:1.2
--- rtems/tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h:1.1	Fri Dec 17 08:51:56 2010
+++ rtems/tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h	Fri May 13 10:50:56 2011
@@ -39,6 +39,9 @@
 extern "C" {
 #endif
 
+#include <stdio.h>  /* fprintf */
+#include <stdlib.h> /* exit */
+
 #include <rtems/score/no_cpu.h>            /* pick up machine definitions */
 #ifndef ASM
 #include <rtems/score/types.h>
@@ -919,6 +922,8 @@
  */
 #define _CPU_Fatal_halt( _error ) \
   { \
+    fprintf( stderr, "FATAL ERROR!!\n" ); \
+    exit( -1 ); \
   }
 
 /* end of Fatal Error manager macros */


 *ralf*:
Make self-contained.

M   1.13  cpukit/libnetworking/rtems/mkrootfs.h

diff -u rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.12 rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.13
--- rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.12	Fri Jun 18 05:03:40 2010
+++ rtems/cpukit/libnetworking/rtems/mkrootfs.h	Fri May 13 10:56:21 2011
@@ -24,6 +24,8 @@
 #ifndef _RTEMS_MKROOTFS_H
 #define _RTEMS_MKROOTFS_H
 
+#include <arpa/inet.h> /* in_addr_t */
+
 #include <rtems.h>
 
 #ifdef __cplusplus


 *ralf*:
2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>

	* libnetworking/rtems/mkrootfs.h: Make self-contained.

M 1.2823  cpukit/ChangeLog

diff -u rtems/cpukit/ChangeLog:1.2822 rtems/cpukit/ChangeLog:1.2823
--- rtems/cpukit/ChangeLog:1.2822	Fri May 13 10:34:50 2011
+++ rtems/cpukit/ChangeLog	Fri May 13 10:56:35 2011
@@ -1,5 +1,9 @@
 2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* libnetworking/rtems/mkrootfs.h: Make self-contained.
+
+2011-05-13	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* libfs/Makefile.am: Unconditionally descend into src/nfsclient.
 	Include subdirs.am.
 



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110513/88b5c15d/attachment.html>


More information about the vc mailing list