Changeset c23386a in rtems


Ignore:
Timestamp:
08/08/02 12:54:15 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ef39005
Parents:
a19dd35
Message:

2002-08-07 Ralf Corsepius <corsepiu@…>

  • startup/Makefile.am: Remove -DGDB_MONITOR_ACTIVE (Not used anywhere). Add ODS60302_DEBUG conditional.
  • include/bsp.h: Fix broken bsp_cat macros (Not compliant to gcc31).
  • configure.ac: Add --enable-ods60302-debug. Add ODS60302_DEBUG conditional.
Location:
c/src/lib/libbsp/m68k/ods68302
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/ods68302/ChangeLog

    ra19dd35 rc23386a  
     12002-08-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * startup/Makefile.am: Remove -DGDB_MONITOR_ACTIVE (Not used
     4        anywhere).
     5        Add ODS60302_DEBUG conditional.
     6        * include/bsp.h: Fix broken bsp_cat macros (Not compliant to gcc31).
     7        * configure.ac: Add --enable-ods60302-debug.
     8        Add ODS60302_DEBUG conditional.
     9
    1102002-08-05      Joel Sherrill <joel@OARcorp.com>
    211
  • c/src/lib/libbsp/m68k/ods68302/configure.ac

    ra19dd35 rc23386a  
    1616RTEMS_CANONICALIZE_TOOLS
    1717
     18AC_ARG_ENABLE(ods68302-debug,
     19[AC_HELP_STRING([--enable-ods68302-debug],
     20  [whether to support bsp debugging])],
     21[case $enable_ods68302_debug in
     22 yes ) ODS68302_DEBUG=yes;;
     23 * )   ODS68302_DEBUG=no;;
     24 esac],
     25[ODS68302_DEBUG=no])
    1826
     27AM_CONDITIONAL(ODS68302_DEBUG,[test "$ODS68302_DEBUG" = "yes"])
     28
     29# FIXME: Something seem to be very broken inside of this BSP
     30#        It plays tricks with VARIANT
     31#        For now, deactivate it.
     32# BSP_VARIANT=${BSP_VARIANT-bare}
     33# AC_DEFINE_UNQUOTED([VARIANT],[${BSP_VARIANT}],[missing explanation])
    1934
    2035# Explicitly list all Makefiles here
  • c/src/lib/libbsp/m68k/ods68302/include/bsp.h

    ra19dd35 rc23386a  
    4545
    4646#define __bsp_cat(x, y) x ## y
    47 #define __bsp_xcat(x, y) __bsp_cat(x, y)
     47#define __bsp_xcat(x, y) __bsp_cat(x,y)
    4848#define __bsp_str(s) #s
    4949#define __bsp_xstr(s) __bsp_str(s)
    5050
    51 #define __BSP_HEADER_FILE__ __bsp_xcat(VARIANT, .h)
     51#define __BSP_HEADER_FILE__ __bsp_xcat(VARIANT,.h)
    5252#define __BSP_HEADER_FILE_STR__ __bsp_xstr(__BSP_HEADER_FILE__)
    5353
Note: See TracChangeset for help on using the changeset viewer.