Changeset cd66632 in rtems
- Timestamp:
- 07/16/02 22:32:54 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2b947a4
- Parents:
- 27ce642
- Location:
- c/src/lib/libbsp/i386/pc386
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i386/pc386/ChangeLog
r27ce642 rcd66632 1 2002-07-16 Eric Norum <eric.norum@usask.ca> 2 3 * console/console.c: Others on the rtems-users list have expressed 4 concern about this run-time selection, so I've enclosed the changes 5 in a #ifdef RTEMS_RUNTIME_CONSOLE_SELECT conditional. 6 1 7 2002-07-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/lib/libbsp/i386/pc386/console/console.c
r27ce642 rcd66632 196 196 */ 197 197 rtems_termios_initialize (); 198 199 #ifdef RTEMS_RUNTIME_CONSOLE_SELECT 200 /* 201 * If no video card, fall back to serial port console 202 */ 203 #include <crt.h> 204 if((BSPConsolePort == BSP_CONSOLE_PORT_CONSOLE) 205 && (*(unsigned char*) NB_MAX_ROW_ADDR == 0) 206 && (*(unsigned short*)NB_MAX_COL_ADDR == 0)) { 207 BSPConsolePort = BSP_UART_COM2; 208 BSPPrintkPort = BSP_UART_COM1; 209 } 210 #endif 198 211 199 212 /*
Note: See TracChangeset
for help on using the changeset viewer.