<!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-08-29)</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-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * include/rtems/userenv.h, score/src/threadhandler.c: Formatting.
        * sapi/src/exshutdown.c: Add comments.
</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.2908&r2=text&tr2=1.2909&diff_format=h">M</a></td><td width='1%'>1.2909</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/userenv.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/include/rtems/userenv.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/sapi/src/exshutdown.c.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%'>cpukit/sapi/src/exshutdown.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadhandler.c.diff?r1=text&tr1=1.35&r2=text&tr2=1.36&diff_format=h">M</a></td><td width='1%'>1.36</td><td width='100%'>cpukit/score/src/threadhandler.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2908 rtems/cpukit/ChangeLog:1.2909
--- rtems/cpukit/ChangeLog:1.2908       Mon Aug 22 13:26:06 2011
+++ rtems/cpukit/ChangeLog      Mon Aug 29 16:30:29 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-08-29    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * include/rtems/userenv.h, score/src/threadhandler.c: Formatting.
+       * sapi/src/exshutdown.c: Add comments.
+
</font> 2011-08-22        Jennifer Averett <Jennifer.Averett@OARcorp.com>
 
        PR 1876

<font color='#006600'>diff -u rtems/cpukit/include/rtems/userenv.h:1.7 rtems/cpukit/include/rtems/userenv.h:1.8
--- rtems/cpukit/include/rtems/userenv.h:1.7    Fri Jun 24 12:52:55 2011
+++ rtems/cpukit/include/rtems/userenv.h        Mon Aug 29 16:30:32 2011
</font><font color='#997700'>@@ -46,20 +46,19 @@
</font> #endif
 
 typedef struct {
<font color='#880000'>- rtems_id                         task_id;
- rtems_filesystem_location_info_t current_directory;
- rtems_filesystem_location_info_t root_directory;
- /* Default mode for all files. */
- mode_t                           umask;
- nlink_t                          link_counts;
- /* _POSIX_types */
- uid_t                            uid;
- gid_t                            gid;
- uid_t                            euid;
- gid_t                            egid;
- char      login_buffer[LOGIN_NAME_MAX];
-
- pid_t                            pgrp; /* process group id */
</font><font color='#000088'>+  rtems_id                         task_id;
+  rtems_filesystem_location_info_t current_directory;
+  rtems_filesystem_location_info_t root_directory;
+  /* Default mode for all files. */
+  mode_t                           umask;
+  nlink_t                          link_counts;
+  /* _POSIX_types */
+  uid_t                            uid;
+  gid_t                            gid;
+  uid_t                            euid;
+  gid_t                            egid;
+  char      login_buffer[LOGIN_NAME_MAX];
+  pid_t                            pgrp; /* process group id */
</font> } rtems_user_env_t;
 
 extern rtems_user_env_t * rtems_current_user_env;

<font color='#006600'>diff -u rtems/cpukit/sapi/src/exshutdown.c:1.6 rtems/cpukit/sapi/src/exshutdown.c:1.7
--- rtems/cpukit/sapi/src/exshutdown.c:1.6      Wed Jul 13 13:34:22 2011
+++ rtems/cpukit/sapi/src/exshutdown.c  Mon Aug 29 16:30:32 2011
</font><font color='#997700'>@@ -49,11 +49,19 @@
</font> 
     _System_state_Set( SYSTEM_STATE_SHUTDOWN );
     _Thread_Stop_multitasking();
<font color='#000088'>+
+    /*******************************************************************
+     *******************************************************************
+     *******************************************************************
+     ******     RETURN TO RTEMS_INITIALIZE_START_MULTITASKING()   ******
+     ******                 AND THEN TO BOOT_CARD()               ******
+     *******************************************************************
+     *******************************************************************
+     *******************************************************************/
</font>   }
   _Internal_error_Occurred(
     INTERNAL_ERROR_CORE,
     true,
     INTERNAL_ERROR_SHUTDOWN_WHEN_NOT_UP
   );
<font color='#880000'>-
</font> }

<font color='#006600'>diff -u rtems/cpukit/score/src/threadhandler.c:1.35 rtems/cpukit/score/src/threadhandler.c:1.36
--- rtems/cpukit/score/src/threadhandler.c:1.35 Mon Aug 15 03:23:49 2011
+++ rtems/cpukit/score/src/threadhandler.c      Mon Aug 29 16:30:32 2011
</font><font color='#997700'>@@ -29,7 +29,15 @@
</font> #include <rtems/score/threadq.h>
 #include <rtems/score/userext.h>
 #include <rtems/score/wkspace.h>
<font color='#000088'>+#if defined(RTEMS_SMP)
+  #include <rtems/score/smp.h>
+#endif
+
</font> 
<font color='#000088'>+/*
+ *  Conditional magic to determine what style of C++ constructor
+ *  initialization this target and compiler version uses.
+ */
</font> #if defined(__AVR__)
   #undef __USE_INIT_FINI__
 #endif
<font color='#997700'>@@ -53,11 +61,6 @@
</font>   #define EXECUTE_GLOBAL_CONSTRUCTORS
 #endif
 
<font color='#880000'>-#if defined(RTEMS_SMP)
-  #include <rtems/score/smp.h>
-#endif
-
-
</font> /*
  *  _Thread_Handler
  *
<font color='#997700'>@@ -81,7 +84,6 @@
</font>  *
  *  Output parameters:  NONE
  */
<font color='#880000'>-
</font> void _Thread_Handler( void )
 {
   ISR_Level  level;
<font color='#997700'>@@ -104,7 +106,6 @@
</font>    * have to put level into a register for those cpu's that use
    * inline asm here
    */
<font color='#880000'>-
</font>   level = executing->Start.isr_level;
   _ISR_Set_level(level);
 
<font color='#997700'>@@ -150,7 +151,6 @@
</font>           _SMP_Request_other_cores_to_perform_first_context_switch();
         _Thread_Enable_dispatch();
       #endif
<font color='#880000'>-
</font>     }
  #endif
 
</pre>
<p> </p>
<a name='cs2'></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-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * rtems/include/rtems/rtems/tasks.h: Formatting.
</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.2909&r2=text&tr2=1.2910&diff_format=h">M</a></td><td width='1%'>1.2910</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/include/rtems/rtems/tasks.h.diff?r1=text&tr1=1.45&r2=text&tr2=1.46&diff_format=h">M</a></td><td width='1%'>1.46</td><td width='100%'>cpukit/rtems/include/rtems/rtems/tasks.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2909 rtems/cpukit/ChangeLog:1.2910
--- rtems/cpukit/ChangeLog:1.2909       Mon Aug 29 16:30:29 2011
+++ rtems/cpukit/ChangeLog      Mon Aug 29 16:31:17 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-08-29        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
<font color='#000088'>+   * rtems/include/rtems/rtems/tasks.h: Formatting.
+
+2011-08-29     Joel Sherrill <joel.sherrilL@OARcorp.com>
+
</font>   * include/rtems/userenv.h, score/src/threadhandler.c: Formatting.
        * sapi/src/exshutdown.c: Add comments.
 

<font color='#006600'>diff -u rtems/cpukit/rtems/include/rtems/rtems/tasks.h:1.45 rtems/cpukit/rtems/include/rtems/rtems/tasks.h:1.46
--- rtems/cpukit/rtems/include/rtems/rtems/tasks.h:1.45 Fri Jun 17 10:54:59 2011
+++ rtems/cpukit/rtems/include/rtems/rtems/tasks.h      Mon Aug 29 16:31:18 2011
</font><font color='#997700'>@@ -22,7 +22,8 @@
</font>  *     - wake up when specified
  */
 
<font color='#880000'>-/*  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#997700'>@@ -387,9 +388,9 @@
</font>  *  set to entry_point with the initial argument.
  */
 rtems_status_code rtems_task_start(
<font color='#880000'>-  rtems_id     id,
-  rtems_task_entry entry_point,
-  rtems_task_argument     argument
</font><font color='#000088'>+  rtems_id             id,
+  rtems_task_entry     entry_point,
+  rtems_task_argument  argument
</font> );
 
 /**
</pre>
<p> </p>
<a name='cs3'></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-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * Makefile.am, startup/bspstart.c: Formatting.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/powerpc/beatnik/ChangeLog.diff?r1=text&tr1=1.23&r2=text&tr2=1.24&diff_format=h">M</a></td><td width='1%'>1.24</td><td width='100%'>c/src/lib/libbsp/powerpc/beatnik/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/powerpc/beatnik/Makefile.am.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%'>c/src/lib/libbsp/powerpc/beatnik/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c.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%'>c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/powerpc/beatnik/ChangeLog:1.23 rtems/c/src/lib/libbsp/powerpc/beatnik/ChangeLog:1.24
--- rtems/c/src/lib/libbsp/powerpc/beatnik/ChangeLog:1.23       Wed Jul 13 13:35:19 2011
+++ rtems/c/src/lib/libbsp/powerpc/beatnik/ChangeLog    Mon Aug 29 16:32:56 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-08-29    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * Makefile.am, startup/bspstart.c: Formatting.
+
</font> 2011-07-13        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        PR 1824/cpukit

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/powerpc/beatnik/Makefile.am:1.6 rtems/c/src/lib/libbsp/powerpc/beatnik/Makefile.am:1.7
--- rtems/c/src/lib/libbsp/powerpc/beatnik/Makefile.am:1.6      Fri Jun 17 00:30:41 2011
+++ rtems/c/src/lib/libbsp/powerpc/beatnik/Makefile.am  Mon Aug 29 16:32:56 2011
</font><font color='#997700'>@@ -9,7 +9,6 @@
</font> noinst_PROGRAMS =
 EXTRA_DIST      =<span style="background-color: #FF0000"> </span>
 
<font color='#880000'>-
</font> include $(top_srcdir)/../../../../automake/compile.am
 include $(top_srcdir)/../../bsp.am
 
<font color='#997700'>@@ -64,7 +63,7 @@
</font> libbsp_a_SOURCES += startup/bspstart.c \
     ../shared/motorola/vpd.c startup/reboot.c startup/i2c_init.c \
     ../../powerpc/shared/startup/panic.c \
<font color='#880000'>-   ../../powerpc/shared/startup/bspgetworkarea.c \
</font><font color='#000088'>+    ../../powerpc/shared/startup/bspgetworkarea.c \
</font>     ../../powerpc/shared/startup/probeMemEnd.c \
     ../../powerpc/shared/startup/pretaskinghook.c \
     ../../powerpc/shared/startup/zerobss.c \
<font color='#997700'>@@ -72,7 +71,7 @@
</font>     ../../powerpc/shared/startup/pgtbl_activate.c \
     ../../powerpc/shared/startup/sbrk.c ../../shared/bootcard.c \
     startup/bspclean.c ../../shared/bsplibc.c ../../shared/bsppost.c \
<font color='#880000'>-   ../../shared/bsppredriverhook.c \
</font><font color='#000088'>+    ../../shared/bsppredriverhook.c \
</font>     ../../shared/gnatinstallhandler.c
 
 include_bsp_HEADERS += ../shared/motorola/vpd.h
<font color='#997700'>@@ -87,8 +86,8 @@
</font> libbsp_a_SOURCES +=  \
     ../../powerpc/shared/console/uart.c \
     ../../powerpc/shared/console/console.c \
<font color='#880000'>-   ../../powerpc/shared/console/consoleIo.h \
-       ../../powerpc/shared/console/uart.h
</font><font color='#000088'>+    ../../powerpc/shared/console/consoleIo.h \
+    ../../powerpc/shared/console/uart.h
</font> 
 #irq
 include_bsp_HEADERS += irq/irq.h
<font color='#997700'>@@ -98,7 +97,7 @@
</font> #marvell
 include_bsp_HEADERS += marvell/gtreg.h marvell/gtintrreg.h \
     marvell/gti2creg.h marvell/gti2c_busdrv.h marvell/gt_timer.h \
<font color='#880000'>-   marvell/gtpcireg.h
</font><font color='#000088'>+    marvell/gtpcireg.h
</font> 
 libbsp_a_SOURCES += marvell/discovery.c marvell/gti2c.c marvell/gt_timer.c
 
<font color='#997700'>@@ -107,8 +106,8 @@
</font> include_bsp_HEADERS += ../shared/flash/flashPgmPvt.h
 
 libbsp_a_SOURCES += ../shared/flash/flash.c \
<font color='#880000'>-   ../shared/flash/intelFlash.c \
-       flash/flashcfg.c
</font><font color='#000088'>+    ../shared/flash/intelFlash.c \
+    flash/flashcfg.c
</font> 
 #pci
 include_bsp_HEADERS += ../../powerpc/shared/pci/pci.h
<font color='#997700'>@@ -133,10 +132,10 @@
</font>     ../../shared/vmeUniverse/VMEDMA.h
 
 libbsp_a_SOURCES += ../shared/vme/vmeconfig.c \
<font color='#880000'>-   ../shared/vme/vme_universe.c \
</font><font color='#000088'>+    ../shared/vme/vme_universe.c \
</font>     ../../shared/vmeUniverse/vmeUniverse.c \
     ../../shared/vmeUniverse/vmeTsi148.c \
<font color='#880000'>-   ../../shared/vmeUniverse/bspVmeDmaList.c
</font><font color='#000088'>+    ../../shared/vmeUniverse/bspVmeDmaList.c
</font> 
 #network
 if HAS_NETWORKING
<font color='#997700'>@@ -161,22 +160,22 @@
</font> # with BSD stuff;
 network_if_mve.rel: network_if_mve_tmp.rel
        $(OBJCOPY) -G rtems_mve_attach -G rtems_mve_early_link_check_ops \
<font color='#880000'>-              -G BSP_mve_ack_irqs -G BSP_mve_disable_irqs \
-                  -G BSP_mve_enable_irqs -G BSP_mve_init_hw \
-                  -G BSP_mve_ack_irq_mask -G BSP_mve_disable_irq_mask \
-                  -G BSP_mve_enable_irq_mask -G BSP_mve_setup_1 \
-                  -G BSP_mve_read_eaddr -G BSP_mve_send_buf \
-               -G BSP_mve_send_buf_raw \
-                  -G BSP_mve_setup -G BSP_mve_stop_hw \
-                  -G BSP_mve_swipe_rx -G BSP_mve_swipe_tx \
-                  -G BSP_mve_detach -G BSP_mve_media_ioctl \
-                          -G BSP_mve_get_tid \
-                          -G BSP_mve_dump_stats -G BSP_mve_ack_link_chg \
-                          -G BSP_mve_mcast_filter_clear \
-                          -G BSP_mve_mcast_filter_accept_all \
-                          -G BSP_mve_mcast_filter_accept_add \
-                          -G BSP_mve_mcast_filter_accept_del \
-                          -G mveth_serial_ctrl_config_val \
</font><font color='#000088'>+                   -G BSP_mve_ack_irqs -G BSP_mve_disable_irqs \
+                   -G BSP_mve_enable_irqs -G BSP_mve_init_hw \
+                   -G BSP_mve_ack_irq_mask -G BSP_mve_disable_irq_mask \
+                   -G BSP_mve_enable_irq_mask -G BSP_mve_setup_1 \
+                   -G BSP_mve_read_eaddr -G BSP_mve_send_buf \
+                   -G BSP_mve_send_buf_raw \
+                   -G BSP_mve_setup -G BSP_mve_stop_hw \
+                   -G BSP_mve_swipe_rx -G BSP_mve_swipe_tx \
+                   -G BSP_mve_detach -G BSP_mve_media_ioctl \
+                   -G BSP_mve_get_tid \
+                   -G BSP_mve_dump_stats -G BSP_mve_ack_link_chg \
+                   -G BSP_mve_mcast_filter_clear \
+                   -G BSP_mve_mcast_filter_accept_all \
+                   -G BSP_mve_mcast_filter_accept_add \
+                   -G BSP_mve_mcast_filter_accept_del \
+                   -G mveth_serial_ctrl_config_val \
</font>              $^ $@
 
 include_bsp_HEADERS += network/if_gfe/if_gfe_pub.h

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c:1.6 rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c:1.7
--- rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c:1.6       Wed Jul 13 13:35:19 2011
+++ rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c   Mon Aug 29 16:32:56 2011
</font><font color='#997700'>@@ -249,7 +249,6 @@
</font>   intrStackStart = (uint32_t)__rtems_end;
   intrStackSize  = rtems_configuration_get_interrupt_stack_size();
 
<font color='#880000'>-
</font>   /*
    * Initialize default raw exception handlers. See vectors/vectors_init.c
    */
<font color='#997700'>@@ -348,7 +347,7 @@
</font>    * they can use atexit()
    */
 
<font color='#880000'>-  bsp_clicks_per_usec            = BSP_bus_frequency/(BSP_time_base_divisor * 1000);
</font><font color='#000088'>+  bsp_clicks_per_usec = BSP_bus_frequency/(BSP_time_base_divisor * 1000);
</font> 
 #ifdef SHOW_MORE_INIT_SETTINGS
   printk("Configuration.work_space_size = %x\n", Configuration.work_space_size);<span style="background-color: #FF0000"> </span>
</pre>
<p> </p>
<a name='cs4'></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-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * configure.ac: Formatting. Remove duplication BSP_HAS_SMP.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/pc386/ChangeLog.diff?r1=text&tr1=1.278&r2=text&tr2=1.279&diff_format=h">M</a></td><td width='1%'>1.279</td><td width='100%'>c/src/lib/libbsp/i386/pc386/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/pc386/configure.ac.diff?r1=text&tr1=1.42&r2=text&tr2=1.43&diff_format=h">M</a></td><td width='1%'>1.43</td><td width='100%'>c/src/lib/libbsp/i386/pc386/configure.ac</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.278 rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.279
--- rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.278   Mon Aug  1 08:41:36 2011
+++ rtems/c/src/lib/libbsp/i386/pc386/ChangeLog Mon Aug 29 16:36:02 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-08-29    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * configure.ac: Formatting. Remove duplication BSP_HAS_SMP.
+
</font> 2011-08-01        Jennifer Averett <Jennifer.Averett@OARcorp.com>
 
        PR 1802

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/pc386/configure.ac:1.42 rtems/c/src/lib/libbsp/i386/pc386/configure.ac:1.43
--- rtems/c/src/lib/libbsp/i386/pc386/configure.ac:1.42 Mon Aug  1 08:41:37 2011
+++ rtems/c/src/lib/libbsp/i386/pc386/configure.ac      Mon Aug 29 16:36:02 2011
</font><font color='#997700'>@@ -80,11 +80,6 @@
</font>   AC_MSG_ERROR([pc386 both TSC and 8254 specified for clock driver])
 fi
 
<font color='#880000'>-RTEMS_BSPOPTS_SET([BSP_HAS_SMP],[*],[1])
-RTEMS_BSPOPTS_HELP([BSP_HAS_SMP],
-[Always defined when on a pc386 to enable the pc386 support for
- determining the CPU core number in an SMP configuration.])
-
</font> ## The PC386 BSP supports SMP configurations if this is enabled.
 RTEMS_BSPOPTS_SET([BSP_HAS_SMP],[*],[1])
 RTEMS_BSPOPTS_HELP([BSP_HAS_SMP],
<font color='#997700'>@@ -95,11 +90,9 @@
</font> RTEMS_I386_GAS_CODE16
 AM_CONDITIONAL(RTEMS_GAS_CODE16,[test "$RTEMS_GAS_CODE16" = "yes"])
 
<font color='#880000'>-
</font> AM_CONDITIONAL(HAS_NETWORKING,[test "$HAS_NETWORKING" = "yes"])
 AM_CONDITIONAL(HAS_SMP,[test "$rtems_cv_HAS_SMP" = "yes"])
 
<font color='#880000'>-
</font> AC_SUBST([RTEMS_ROOT],[${rtems_updir}'$(top_builddir)'])
 
 RTEMS_CONFIG_BUILD_SUBDIRS(tools)
</pre>
<p> </p>
<a name='cs5'></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-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * bootcard.c: Correct printk() format.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/shared/ChangeLog.diff?r1=text&tr1=1.188&r2=text&tr2=1.189&diff_format=h">M</a></td><td width='1%'>1.189</td><td width='100%'>c/src/lib/libbsp/shared/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/shared/bootcard.c.diff?r1=text&tr1=1.50&r2=text&tr2=1.51&diff_format=h">M</a></td><td width='1%'>1.51</td><td width='100%'>c/src/lib/libbsp/shared/bootcard.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/shared/ChangeLog:1.188 rtems/c/src/lib/libbsp/shared/ChangeLog:1.189
--- rtems/c/src/lib/libbsp/shared/ChangeLog:1.188       Thu Jul 21 10:28:32 2011
+++ rtems/c/src/lib/libbsp/shared/ChangeLog     Mon Aug 29 16:38:08 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-08-29    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * bootcard.c: Correct printk() format.
+
</font> 2011-07-21        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * include/uart-output-char.h, src/uart-output-char.c: Support for

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/shared/bootcard.c:1.50 rtems/c/src/lib/libbsp/shared/bootcard.c:1.51
--- rtems/c/src/lib/libbsp/shared/bootcard.c:1.50       Wed Jul 13 13:35:04 2011
+++ rtems/c/src/lib/libbsp/shared/bootcard.c    Mon Aug 29 16:38:09 2011
</font><font color='#997700'>@@ -178,9 +178,9 @@
</font> 
   if ( work_area_size <= Configuration.work_space_size ) {
     printk(
<font color='#880000'>-      "bootcard: work space too big for work area: %p > %p\n",
-      (void *) Configuration.work_space_size,
-      (void *) work_area_size
</font><font color='#000088'>+      "bootcard: work space too big for work area: 0x%08x > 0x%08x\n",
+      Configuration.work_space_size,
+      work_area_size
</font>     );
     bsp_cleanup(1);
     return 1;
</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>