change log for rtems (2011-12-13)

rtems-vc at rtems.org rtems-vc at rtems.org
Tue Dec 13 12:35:49 UTC 2011


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

	* math/init.c, mathf/init.c, mathl/init.c: Move configuration section.
	* math/domath.c, mathf/domathf.c,  mathl/domathl.c: Regenerate.
	* math/domath.in: Generate domath* prototype.

M  1.286  testsuites/libtests/ChangeLog
M    1.4  testsuites/libtests/math/domath.c
M    1.4  testsuites/libtests/math/domath.in
M    1.7  testsuites/libtests/math/init.c
M    1.3  testsuites/libtests/mathf/domathf.c
M    1.4  testsuites/libtests/mathf/init.c
M    1.3  testsuites/libtests/mathl/domathl.c
M    1.4  testsuites/libtests/mathl/init.c

diff -u rtems/testsuites/libtests/ChangeLog:1.285 rtems/testsuites/libtests/ChangeLog:1.286
--- rtems/testsuites/libtests/ChangeLog:1.285	Tue Dec 13 04:49:25 2011
+++ rtems/testsuites/libtests/ChangeLog	Tue Dec 13 06:11:10 2011
@@ -1,9 +1,15 @@
 2011-12-13	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* math/init.c, mathf/init.c, mathl/init.c: Move configuration section.
+	* math/domath.c, mathf/domathf.c,  mathl/domathl.c: Regenerate.
+	* math/domath.in: Generate domath* prototype.
+
+2011-12-13	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* complex/init.c: Move configuration section.
 	* complex/docomplex.c, complex/docomplexf.c, complex/docomplexl.c:
 	Regenerate.
-	* complex/docomplex.in: Generate prototype docomplex* prototype.
+	* complex/docomplex.in: Generate docomplex* prototype.
 
 2011-12-09	Ralf Corsépius <ralf.corsepius at rtems.org>
 

diff -u rtems/testsuites/libtests/math/domath.c:1.3 rtems/testsuites/libtests/math/domath.c:1.4
--- rtems/testsuites/libtests/math/domath.c:1.3	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/math/domath.c	Tue Dec 13 06:11:10 2011
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010 by
+ * Copyright (c) 2010, 2011 by
  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
@@ -25,6 +25,8 @@
 #define M_PI_4 0.78539816339744830962
 #endif
 
+extern void domath  (void);
+
 void
 domath  (void)
 {

diff -u rtems/testsuites/libtests/math/domath.in:1.3 rtems/testsuites/libtests/math/domath.in:1.4
--- rtems/testsuites/libtests/math/domath.in:1.3	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/math/domath.in	Tue Dec 13 06:11:10 2011
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010 by
+ * Copyright (c) 2010, 2011 by
  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
@@ -25,6 +25,8 @@
 #define M_PI_4 0.78539816339744830962
 #endif
 
+extern void domath at FSUFFIX@ (void);
+
 void
 domath at FSUFFIX@ (void)
 {

diff -u rtems/testsuites/libtests/math/init.c:1.6 rtems/testsuites/libtests/math/init.c:1.7
--- rtems/testsuites/libtests/math/init.c:1.6	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/math/init.c	Tue Dec 13 06:11:10 2011
@@ -34,6 +34,19 @@
 extern void domath(void);
 
 #if __rtems__
+/* NOTICE: the clock driver is explicitly disabled */
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS           1
+#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+
 rtems_task Init(
   rtems_task_argument ignored
 )
@@ -49,17 +62,3 @@
   exit( 0 );
 }
 
-#if __rtems__
-/* NOTICE: the clock driver is explicitly disabled */
-#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS           1
-#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
-#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-#include <rtems/confdefs.h>
-#endif

diff -u rtems/testsuites/libtests/mathf/domathf.c:1.2 rtems/testsuites/libtests/mathf/domathf.c:1.3
--- rtems/testsuites/libtests/mathf/domathf.c:1.2	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/mathf/domathf.c	Tue Dec 13 06:11:10 2011
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010 by
+ * Copyright (c) 2010, 2011 by
  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
@@ -25,6 +25,8 @@
 #define M_PI_4 0.78539816339744830962
 #endif
 
+extern void domathf (void);
+
 void
 domathf (void)
 {

diff -u rtems/testsuites/libtests/mathf/init.c:1.3 rtems/testsuites/libtests/mathf/init.c:1.4
--- rtems/testsuites/libtests/mathf/init.c:1.3	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/mathf/init.c	Tue Dec 13 06:11:10 2011
@@ -34,6 +34,19 @@
 extern void domathf(void);
 
 #if __rtems__
+/* NOTICE: the clock driver is explicitly disabled */
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS           1
+#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+
 rtems_task Init(
   rtems_task_argument ignored
 )
@@ -49,17 +62,3 @@
   exit( 0 );
 }
 
-#if __rtems__
-/* NOTICE: the clock driver is explicitly disabled */
-#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS           1
-#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
-#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-#include <rtems/confdefs.h>
-#endif

diff -u rtems/testsuites/libtests/mathl/domathl.c:1.2 rtems/testsuites/libtests/mathl/domathl.c:1.3
--- rtems/testsuites/libtests/mathl/domathl.c:1.2	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/mathl/domathl.c	Tue Dec 13 06:11:10 2011
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010 by
+ * Copyright (c) 2010, 2011 by
  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  *
  * Permission to use, copy, modify, and distribute this software
@@ -25,6 +25,8 @@
 #define M_PI_4 0.78539816339744830962
 #endif
 
+extern void domathl (void);
+
 void
 domathl (void)
 {

diff -u rtems/testsuites/libtests/mathl/init.c:1.3 rtems/testsuites/libtests/mathl/init.c:1.4
--- rtems/testsuites/libtests/mathl/init.c:1.3	Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/mathl/init.c	Tue Dec 13 06:11:10 2011
@@ -34,6 +34,19 @@
 extern void domathl(void);
 
 #if __rtems__
+/* NOTICE: the clock driver is explicitly disabled */
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS           1
+#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+
 rtems_task Init(
   rtems_task_argument ignored
 )
@@ -48,18 +61,3 @@
   fprintf( stdout, "*** END OF LONG DOUBLE MATH TEST ***\n" );
   exit( 0 );
 }
-
-#if __rtems__
-/* NOTICE: the clock driver is explicitly disabled */
-#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS           1
-#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
-#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-#include <rtems/confdefs.h>
-#endif


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

	* make/custom/qoriq.inc: Remove -W* flags.

M    1.5  c/src/lib/libbsp/powerpc/qoriq/ChangeLog
M    1.2  c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq.inc

diff -u rtems/c/src/lib/libbsp/powerpc/qoriq/ChangeLog:1.4 rtems/c/src/lib/libbsp/powerpc/qoriq/ChangeLog:1.5
--- rtems/c/src/lib/libbsp/powerpc/qoriq/ChangeLog:1.4	Thu Oct 20 02:30:24 2011
+++ rtems/c/src/lib/libbsp/powerpc/qoriq/ChangeLog	Tue Dec 13 06:17:54 2011
@@ -1,3 +1,7 @@
+2011-12-13	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* make/custom/qoriq.inc: Remove -W* flags.
+
 2011-10-20	Sebastian Huber <sebastian.huber at embedded-brains.de>
 
 	PR 1926/bsps

diff -u rtems/c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq.inc:1.1 rtems/c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq.inc:1.2
--- rtems/c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq.inc:1.1	Thu Jul 21 10:18:01 2011
+++ rtems/c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq.inc	Tue Dec 13 06:17:54 2011
@@ -11,7 +11,6 @@
 RTEMS_CPU_MODEL = qoriq
 
 CPU_CFLAGS = -mcpu=8540 -meabi -msdata -fno-common -mfloat-gprs=double -mstrict-align \
-	-D__ppc_generic \
-	-Wextra -Wno-unused -Wpointer-arith -Wcast-qual -Wconversion -Wmissing-prototypes
+	-D__ppc_generic
 
 CFLAGS_OPTIMIZE_V = -Os -g



--

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/20111213/98a7b808/attachment-0001.html>


More information about the vc mailing list