<br><br><div class="gmail_quote">On Mon, Jul 26, 2010 at 6:10 PM, <a href="mailto:rtems-vc@rtems.org">rtems-vc@rtems.org</a> <span dir="ltr"><<a href="mailto:rtems-vc@rtems.org">rtems-vc@rtems.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">




<div text="#000000" bgcolor="#ffffff">
<a name="12a10ce7d11e1f4c_cs1"></a>
<table bgcolor="#eeeeee" border="0" cellpadding="5" cellspacing="0" width="100%">
<tbody><tr><td colspan="3" bgcolor="#dddddd">
 <font color="#bb2222"><b>joel</b></font>
</td></tr>
<tr><td colspan="3" bgcolor="#dddddd"><pre><div class="im">2010-07-26     Joel Sherrill <<a href="mailto:joel.sherrill@oarcorp.com" target="_blank">joel.sherrill@oarcorp.com</a></div>>

        * sapi/include/confdefs.h: Do not cover up user configuation mistakes
        on filesystems -- cite them as errors.
</pre></td></tr>
<tr><td width="1%"><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2521&r2=text&tr2=1.2522&diff_format=h" target="_blank">M</a></td><td width="1%">1.2522</td><td width="100%">
cpukit/ChangeLog</td></tr>
<tr><td width="1%"><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/sapi/include/confdefs.h.diff?r1=text&tr1=1.145&r2=text&tr2=1.146&diff_format=h" target="_blank">M</a></td><td width="1%">
1.146</td><td width="100%">cpukit/sapi/include/confdefs.h</td></tr>
</tbody></table>
<pre><font color="#006600">diff -u rtems/cpukit/ChangeLog:1.2521 rtems/cpukit/ChangeLog:1.2522
--- rtems/cpukit/ChangeLog:1.2521       Mon Jul 26 15:27:03 2010
+++ rtems/cpukit/ChangeLog      Mon Jul 26 16:28:06 2010
</font><font color="#997700">@@ -1,5 +1,10 @@
</font><div class="im"> 2010-07-26        Joel Sherrill <<a href="mailto:joel.sherrill@oarcorp.com" target="_blank">joel.sherrill@oarcorp.com</a>>
 
</div><font color="#000088">+     * sapi/include/confdefs.h: Do not cover up user configuation mistakes
+       on filesystems -- cite them as errors.
+
+2010-07-26     Joel Sherrill <<a href="mailto:joel.sherrill@oarcorp.com" target="_blank">joel.sherrill@oarcorp.com</a>>
+
</font><div class="im">   * rtems/src/ratemonperiod.c: Remove tabs.
 
 2010-07-26     Joel Sherrill <joel.sherrilL@OARcorp.com>

</div><font color="#006600">diff -u rtems/cpukit/sapi/include/confdefs.h:1.145 rtems/cpukit/sapi/include/confdefs.h:1.146
--- rtems/cpukit/sapi/include/confdefs.h:1.145  Thu Jul  1 04:51:14 2010
+++ rtems/cpukit/sapi/include/confdefs.h        Mon Jul 26 16:28:06 2010
</font><font color="#997700">@@ -223,27 +223,27 @@
</font>   #endif
 
   /*
<font color="#880000">-   * If disabling the file system undef everything. If DEVFS as the base
-   * filesystem undefine all other filesystems because you cannot mount other
-   * filesystems. Same for miniIMFS.
-   */
-  #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM) || \
-      defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM) || \
-      defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
-    #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
-      #undef CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
-      #undef CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
-    #elif defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
-      #undef CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
-    #endif
-    #undef CONFIGURE_FILESYSTEM_MINIIMFS
-    #undef CONFIGURE_FILESYSTEM_IMFS
-    #undef CONFIGURE_FILESYSTEM_DEVFS
-    #undef CONFIGURE_FILESYSTEM_TFTPFS
-    #undef CONFIGURE_FILESYSTEM_FTPFS
-    #undef CONFIGURE_FILESYSTEM_NFS
-    #undef CONFIGURE_FILESYSTEM_DOSFS
-    #undef CONFIGURE_FILESYSTEM_RFS
</font><font color="#000088">+   * If disabling the file system, give a compile error if the user has
+   * configured other filesystem parameters.
+   */
+  #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
+     #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM) || \
+        defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
+       #error "Filesystem disabled but a base filesystem configured."
+     #endif
+
+    #if defined(CONFIGURE_FILESYSTEM_MINIIMFS) || \
+        defined(CONFIGURE_FILESYSTEM_IMFS) || \
+        defined(CONFIGURE_FILESYSTEM_DEVFS) || \
+        defined(CONFIGURE_FILESYSTEM_TFTPFS) || \
+        defined(CONFIGURE_FILESYSTEM_FTPFS) || \
+        defined(CONFIGURE_FILESYSTEM_NFS) || \
+        defined(CONFIGURE_FILESYSTEM_DOSFS) || \
+        defined(CONFIGURE_FILESYSTEM_RFS)
+        #error "Configured filessystems but root filesystem was not IMFS!"
+        #error "Filesystems coule be disabled, DEVFS is root, or"
</font></pre></div></blockquote><div>typo? "coule" = could? <br></div><br></div><br>