Changes between Version 2 and Version 3 of TBR/BSP/Mvme167


Ignore:
Timestamp:
02/05/09 04:33:54 (15 years ago)
Author:
Strauman
Comment:

/* RTEMS/BSP Configuration */

Legend:

Unmodified
Added
Removed
Modified
  • TBR/BSP/Mvme167

    v2 v3  
    2424In order to get the console to do what I want (the mvme712 transition board has one of the serial ports (port 0) labeled 'Console' and that's where 167Bug interacts with me and that's what I want RTEMS to use for the console. ''Unfortunately, by default RTEMS will use port 1 and not port 0'' so you may not see anything on your terminal unless you either use a second terminal or provide different configuration settings. The console port and mode (IRQ-driven vs. polling, termios vs. non-termios) are configured at the time you say 'configure' but you pass the desired values ''on the commandline to configure''. I use
    2525
     26{{{
    2627configure CD2401_IO_MODE=1 CD2401_USE_TERMIOS=1 CONSOLE_MINOR=0 PRINTK_MINOR=0  <other configure options>
     28}}}
    2729
    2830which chooses IRQ-driven mode (0 == polled), termios mode (0 == non-termios), and selects serial port 0 for console and printk output (use the desired serial port # here -- remember that this defaults to 1 if not set)