<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-02-17)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-17 Joel Sherrill <joel.sherrill@oarcorp.com>

        * pppd/system.h: Use confdefs.h to generate device driver table.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/samples/ChangeLog.diff?r1=text&tr1=1.184&r2=text&tr2=1.185&diff_format=h">M</a></td><td width='1%'>1.185</td><td width='100%'>testsuites/samples/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/samples/pppd/system.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>testsuites/samples/pppd/system.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/samples/ChangeLog:1.184 rtems/testsuites/samples/ChangeLog:1.185
--- rtems/testsuites/samples/ChangeLog:1.184    Thu Feb 17 01:17:04 2011
+++ rtems/testsuites/samples/ChangeLog  Thu Feb 17 09:21:39 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-02-17    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * pppd/system.h: Use confdefs.h to generate device driver table.
+
</font> 2011-02-17        Sebastian Huber <Sebastian.Huber@embedded-brains.de>
 
        * pppd/system.h: Added missing include files.

<font color='#006600'>diff -u rtems/testsuites/samples/pppd/system.h:1.6 rtems/testsuites/samples/pppd/system.h:1.7
--- rtems/testsuites/samples/pppd/system.h:1.6  Thu Feb 17 01:17:04 2011
+++ rtems/testsuites/samples/pppd/system.h      Thu Feb 17 09:21:40 2011
</font><font color='#997700'>@@ -11,21 +11,19 @@
</font> 
 #include <bsp.h>
 
<font color='#880000'>-#define CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE
-#ifdef CONFIGURE_INIT
-rtems_driver_address_table Device_drivers[5] = {
-  CONSOLE_DRIVER_TABLE_ENTRY,
-  CLOCK_DRIVER_TABLE_ENTRY,
-#if defined(TTY1_DRIVER_TABLE_ENTRY)
-  TTY1_DRIVER_TABLE_ENTRY,
-#endif
-#if defined(TTY2_DRIVER_TABLE_ENTRY)
-  TTY2_DRIVER_TABLE_ENTRY,
</font><font color='#000088'>+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#ifndef TTY1_DRIVER_TABLE_ENTRY
+  #define TTY1_DRIVER_TABLE_ENTRY NULL_DRIVER_TABLE_ENTRY
</font> #endif
<font color='#880000'>-  {NULL, NULL, NULL, NULL, NULL, NULL}
-};
</font><font color='#000088'>+#ifndef TTY2_DRIVER_TABLE_ENTRY
+  #define TTY2_DRIVER_TABLE_ENTRY NULL_DRIVER_TABLE_ENTRY
</font> #endif
 
<font color='#000088'>+#define CONFIGURE_APPLICATION_EXTRA_DRIVERS \
+   { TTY1_DRIVER_TABLE_ENTRY, TTY2_DRIVER_TABLE_ENTRY }
+
</font> #define CONFIGURE_RTEMS_INIT_TASKS_TABLE
 #define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 8
 
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>