Changeset b66116e in rtems


Ignore:
Timestamp:
12/18/01 14:10:07 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
96953bbb
Parents:
7e950a4
Message:

2001-12-09 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add RTEMS_BSPOPTS_* for SERIAL_INPUT, HIF_INPUT, SERIAL_OUTPUT, HIF_OUTPUT.
  • console/console.c: Remove NO_BSP_INIT, SERIAL_INPUT, HIF_INPUT, SERIAL_OUTPUT, HIF_OUTPUT, add #include <bsp.h>.
Location:
c/src/lib/libbsp/a29k/portsw
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/a29k/portsw/ChangeLog

    r7e950a4 rb66116e  
     12001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * configure.ac: Add RTEMS_BSPOPTS_* for SERIAL_INPUT, HIF_INPUT,
     4        SERIAL_OUTPUT, HIF_OUTPUT.
     5        * console/console.c: Remove NO_BSP_INIT, SERIAL_INPUT, HIF_INPUT,
     6        SERIAL_OUTPUT, HIF_OUTPUT, add #include <bsp.h>.
     7
    182001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    29
  • c/src/lib/libbsp/a29k/portsw/configure.ac

    r7e950a4 rb66116e  
    1616RTEMS_CANONICALIZE_TOOLS
    1717
     18/* only one of the "INPUT"-defines can be defined */
     19RTEMS_BSPOPTS_SET([SERIAL_INPUT],[*],[1])
     20RTEMS_BSPOPTS_HELP([SERIAL_INPUT],[use serial input])
    1821
     22RTEMS_BSPOPTS_SET([HIF_INPUT],[*],[])
     23RTEMS_BSPOPTS_HELP([HIF_INPUT],[use HIF input])
     24
     25/* both of the following can be defined */
     26RTEMS_BSPOPTS_SET([SERIAL_OUTPUT],[*],[1])
     27RTEMS_BSPOPTS_HELP([SERIAL_OUTPUT],
     28[use serial console output])
     29
     30RTEMS_BSPOPTS_SET([HIF_OUTPUT],[*],[])
     31RTEMS_BSPOPTS_HELP([HIF_OUTPUT],
     32[use HIF console output])
    1933
    2034# Explicitly list all Makefiles here
  • c/src/lib/libbsp/a29k/portsw/console/console.c

    r7e950a4 rb66116e  
    1212 */
    1313
    14 #define NO_BSP_INIT
    15 
    16 
    17 /* only one of the following can be defined */
    18 #define SERIAL_INPUT  /* use serial input */
    19 /* #define HIF_INPUT */     /* use HIF input */
     14#include <bsp.h>
    2015
    2116#if defined(SERIAL_INPUT) && defined(HIF_INPUT)
     
    2318#endif
    2419
    25 /* both of the following can be defined */
    26 #define SERIAL_OUTPUT /* remove to disable serial port console output */
    27 /* #define HIF_OUTPUT */   /* remove to disable HIF console output */
    28 
    29 #include <bsp.h>
    3020#include <rtems/libio.h>
    3121#include "serial.h"
Note: See TracChangeset for help on using the changeset viewer.