Changeset b66116e in rtems
- Timestamp:
- 12/18/01 14:10:07 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 96953bbb
- Parents:
- 7e950a4
- Location:
- c/src/lib/libbsp/a29k/portsw
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/a29k/portsw/ChangeLog
r7e950a4 rb66116e 1 2001-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 1 8 2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/lib/libbsp/a29k/portsw/configure.ac
r7e950a4 rb66116e 16 16 RTEMS_CANONICALIZE_TOOLS 17 17 18 /* only one of the "INPUT"-defines can be defined */ 19 RTEMS_BSPOPTS_SET([SERIAL_INPUT],[*],[1]) 20 RTEMS_BSPOPTS_HELP([SERIAL_INPUT],[use serial input]) 18 21 22 RTEMS_BSPOPTS_SET([HIF_INPUT],[*],[]) 23 RTEMS_BSPOPTS_HELP([HIF_INPUT],[use HIF input]) 24 25 /* both of the following can be defined */ 26 RTEMS_BSPOPTS_SET([SERIAL_OUTPUT],[*],[1]) 27 RTEMS_BSPOPTS_HELP([SERIAL_OUTPUT], 28 [use serial console output]) 29 30 RTEMS_BSPOPTS_SET([HIF_OUTPUT],[*],[]) 31 RTEMS_BSPOPTS_HELP([HIF_OUTPUT], 32 [use HIF console output]) 19 33 20 34 # Explicitly list all Makefiles here -
c/src/lib/libbsp/a29k/portsw/console/console.c
r7e950a4 rb66116e 12 12 */ 13 13 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> 20 15 21 16 #if defined(SERIAL_INPUT) && defined(HIF_INPUT) … … 23 18 #endif 24 19 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>30 20 #include <rtems/libio.h> 31 21 #include "serial.h"
Note: See TracChangeset
for help on using the changeset viewer.