<!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-testing (2010-06-28)</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>2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>

        * bit_rtems: Clean up external directory building.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems/ChangeLog.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>rtems/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems/bit_rtems.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%'>rtems/bit_rtems</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/rtems/ChangeLog:1.15 rtems-testing/rtems/ChangeLog:1.16
--- rtems-testing/rtems/ChangeLog:1.15  Thu Jun 17 11:47:24 2010
+++ rtems-testing/rtems/ChangeLog       Mon Jun 28 07:23:56 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-06-28    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * bit_rtems: Clean up external directory building.
+
</font> 2010-06-17        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * bit_all_bsps, bit_rtems, common.sh: Update to 4.11 and add sparc64.

<font color='#006600'>diff -u rtems-testing/rtems/bit_rtems:1.6 rtems-testing/rtems/bit_rtems:1.7
--- rtems-testing/rtems/bit_rtems:1.6   Thu Jun 17 11:47:33 2010
+++ rtems-testing/rtems/bit_rtems       Mon Jun 28 07:23:56 2010
</font><font color='#997700'>@@ -114,7 +114,6 @@
</font>       bf537Stamp) ENABLE_BSP="${ENABLE_BSP} BFIN_ON_SKYEYE=1" ;;
       eZKit533)   ENABLE_BSP="${ENABLE_BSP} BFIN_ON_SKYEYE=1"   ;;
       edb7312)    ENABLE_BSP="${ENABLE_BSP} ON_SKYEYE=1" ;;
<font color='#880000'>-      leon3)      ENABLE_BSP="${ENABLE_BSP}" ;;
</font>       gumstix)    ENABLE_BSP="${ENABLE_BSP} ON_SKYEYE=1" ;;
       lm32_evr)   ENABLE_BSP="${ENABLE_BSP} ON_SIMULATOR=1" ;;
       csb637)
<font color='#997700'>@@ -138,6 +137,9 @@
</font>       #   ENABLE_BSP="${ENABLE_BSP} BSP_VIDEO_80x50=1"
       #   ;;
       pc386) ENABLE_BSP="--enable-rtemsbsp=pc386 BSP_VIDEO_80x50=1" ;;
<font color='#000088'>+      sis)
+         ENABLE_BSP="${ENABLE_BSP} CONSOLE_USE_INTERRUPTS=1"
+         ;;
</font>       *)     ENABLE_BSP=--enable-rtemsbsp="${BSP_TO_TEST}" ;;
     esac
 
<font color='#997700'>@@ -267,7 +269,7 @@
</font> if [ ${ENABLE_RTEMS_TCPIP} = yes ] ; then
   case ${CPU} in
     avr) TCPIP_FLAG="--disable-networking" ;;
<font color='#880000'>-    *)   TCPIP_FLAG="--enable-networking --enable-shttpd" ;;
</font><font color='#000088'>+    *)   TCPIP_FLAG="--enable-networking" ;;
</font>   esac
 else
   TCPIP_FLAG="--disable-networking"
<font color='#997700'>@@ -321,17 +323,12 @@
</font>   ENABLE_MP_FLAG="--disable-multiprocessing"
 fi
 
<font color='#880000'>-if [ ${ENABLE_RTEMS_SMP} = yes ] ; then
-  ENABLE_SMP_FLAG="--enable-smp"
-else
-  ENABLE_SMP_FLAG="--disable-smp"
-fi
-
</font> # Some CPUs do not have C++ support
 if [ ${ENABLE_RTEMS_CXX} = yes ] ; then
   case ${CPU} in
<font color='#880000'>-    avr|bfin|tic4x) ENABLE_RTEMS_CXX="--disable-cxx" ;;
-    *)              ENABLE_RTEMS_CXX="--enable-cxx" ;;
</font><font color='#000088'>+    avr|bfin|m32c|m32r|tic4x)
+       ENABLE_RTEMS_CXX="--disable-cxx" ;;
+    *) ENABLE_RTEMS_CXX="--enable-cxx" ;;
</font>   esac
 else
   ENABLE_RTEMS_CXX="--disable-cxx"
<font color='#997700'>@@ -359,7 +356,7 @@
</font> 
 ENABLE_ARGS="\
     --prefix=${INSTALL_POINT} \
<font color='#880000'>-    ${DISABLE_INLINES_FLAG} ${ENABLE_MP_FLAG} ${ENABLE_SMP_FLAG} \
</font><font color='#000088'>+    ${DISABLE_INLINES_FLAG} ${ENABLE_MP_FLAG} \
</font>     ${ENABLE_RTEMS_DEBUG} ${ENABLE_RTEMS_CXX} \
     ${ENABLE_RTEMS_RDBG} ${ENABLE_RTEMS_MAINTAINER_MODE} \
     ${RTEMS_TESTS_FLAG} ${TCPIP_FLAG} \
<font color='#997700'>@@ -489,14 +486,12 @@
</font> 
   if [ ${RUN_RTEMS_TESTS} = yes ] ; then
     case ${BSP_TO_TEST} in
<font color='#880000'>-      edb7312)  testable=yes ;;  # arm/edb7312
-      rtl22xx)  testable=yes ;;  # arm/rtl22xx
-      pc386)    testable=yes ;;  # i386/pc386
-      lm32_evr) testable=yes ;;  # lm32/lm32_evr
-      jmr3904)  testable=yes ;;  # mips/jmr3904
-      psim)     testable=yes ;;  # powerpc/psim
-      sis)      testable=yes ;;  # sparc/sis
-      erc32|leon2|leon3)         # sparc using tsim
</font><font color='#000088'>+      edb7312) testable=yes ;;  # arm/edb7312
+      rtl22xx) testable=yes ;;  # arm/rtl22xx
+      jmr3904) testable=yes ;;  # mips/jmr3904
+      psim)    testable=yes ;;  # powerpc/psim
+      sis)     testable=yes ;;  # sparc/sis
+      erc32|leon2|leon3)        # sparc using tsim
</font>         case `uname -n` in
           england*|iceland*) testable=yes ;;<span style="background-color: #FF0000"> </span>
           *)                 testable=no ;;
<font color='#997700'>@@ -510,17 +505,11 @@
</font>     testable=no
   fi
 
<font color='#880000'>-  # This should run the tests
-  case ${BSP_TO_TEST} in
-    pc386) EXEEXT=exe ;;
-    *)     EXEEXT=ralf ;;
-  esac
-
</font>   # If not multilib, grab the ticker.ralf and save it out
   if [ X${BSP_TO_TEST} != X ] ; then
     mkdir -p ../ticker-executables
<font color='#880000'>-    cp `find . -name ticker.${EXEEXT}` \
-        ../ticker-executables/${CPU}-${BSP_TO_TEST}-ticker.${EXEEXT}
</font><font color='#000088'>+    cp `find . -name ticker.ralf` \
+        ../ticker-executables/${CPU}-${BSP_TO_TEST}-ticker.ralf
</font>   fi
 
   if [ ${testable} = yes ] ; then
<font color='#997700'>@@ -530,23 +519,21 @@
</font> 
     mkdir ${testdir}
     check_fatal $? "failed to mkdir test directory for ${BSP_TO_TEST}."
<font color='#880000'>-    cp `find . -name "*.${EXEEXT}"` ${testdir}
</font><font color='#000088'>+    cp `find . -name "*.ralf"` ${testdir}
</font> 
     case ${BSP_TO_TEST} in
<font color='#880000'>-      jmr3904)  runner=jmr3904 ;;
-      psim)     runner=psim ;;
-      posix)    runner="" ;;
</font><font color='#000088'>+      jmr3904)  running=jmr3904 ;;
+      psim)     running=psim ;;
+      posix)    running="" ;;
</font>       # ARM
       edb7312)  runner=edb7312 ;;
       gumstix)  runner=gumstix ;;
       rtl22xx)  runner=rtl22xx ;;
<font color='#880000'>-      # i386
-      pc386)    runner=pc386 ;;
</font>       # SPARC
       erc32)    runner=erc32 ;;
       leon2)    runner=leon  ;;
       leon3)    runner=leon3 ;;
<font color='#880000'>-      sis)      runner=sis ;;
</font><font color='#000088'>+      sis)      running=sis ;;
</font>       *) ;;
     esac
 
<font color='#997700'>@@ -554,7 +541,7 @@
</font>     check_fatal $? "failed to enter test directory for ${BSP_TO_TEST}."
 
     # This should run the tests
<font color='#880000'>-    ${runner} *.${EXEEXT}
</font><font color='#000088'>+    ${runner} *.ralf
</font> 
     # Check Logs
     echo "Checking Logs for Proper Test Completion ..."
<font color='#997700'>@@ -582,23 +569,24 @@
</font>       find ${INSTALL_POINT}/${target}/lib -name "*rtems*.a" | xargs -e rm -f
       rm -rf ${INSTALL_POINT}/${target}/lib/include
   else
<font color='#000088'>+    SUITES=
</font>     case ${BSP_TO_TEST} in
       posix|bare*) ;;
       *)
         if [ -d ../examples-v2 ] ; then
<font color='#880000'>-          SUITES=examples-v2
</font><font color='#000088'>+          SUITES="${SUITES} examples-v2"
</font>         else<span style="background-color: #FF0000"> </span>
           echo "WARNING! examples-v2 not found"
         fi
 
         if [ -d ../class-examples ] ; then
<font color='#880000'>-          SUITES=class-examples
</font><font color='#000088'>+          SUITES="${SUITES} class-examples"
</font>         else<span style="background-color: #FF0000"> </span>
           echo "WARNING! class-examples not found"
         fi
 
         if [ -d ../examples ] ; then
<font color='#880000'>-          SUITES=examples
</font><font color='#000088'>+          SUITES="${SUITES} examples"
</font>         else<span style="background-color: #FF0000"> </span>
           echo "WARNING! examples not found"
         fi
<font color='#997700'>@@ -610,7 +598,7 @@
</font>         fi
 
         # Build application level tests that use "make"
<font color='#880000'>-        for suite in examples-v2
</font><font color='#000088'>+        for suite in ${SUITES}
</font>         do
           cd ..
           cd ${suite}
<font color='#997700'>@@ -631,7 +619,8 @@
</font> 
         # Build TCP/IP demos and addons
         if [ ${ENABLE_RTEMS_POSIX} = yes -a  \
<font color='#880000'>-              ${ENABLE_RTEMS_TCPIP} = yes ] ; then
</font><font color='#000088'>+             ${ENABLE_RTEMS_TCPIP} = yes -a \
+             -d ../rtems-addon-packages ] ; then
</font> 
           cd ../rtems-addon-packages
           check_fatal $? "failed cd to rtems-addon-packages."
</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>