summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/console/printk_support.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Move console drivers to bspsSebastian Huber2018-04-201-84/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move legacy console driver to bspsSebastian Huber2018-04-121-1/+1
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* Simplify and unify BSP_output_charSebastian Huber2017-09-121-5/+0
| | | | | | | | The BSP_output_char should output a char and not mingle with high level processing, e.g. '\n' to '\r\n' translation. Move this translation to rtems_putc(). Remove it from all the BSP_output_char implementations. Close #3122.
* i386/pc386: Fix printk with the console changes.Chris Johns2016-05-111-32/+37
|
* pc386: Add Edison base supportJoel Sherrill2015-01-041-0/+10
| | | | | | | | | The current support for the Edison supports a single polled UART for input and output plus a simulated clock tick. The activities forward for supporting the Edison have been posted on the RTEMS mailing lists and at: http://rtemsramblings.blogspot.com/2014/12/intel-edison-and-rtems-road-forward.html
* pc386: Add BSP_ENABLE_COM1_COM4 BSP optionJoel Sherrill2015-01-041-4/+6
| | | | | | This allows the support for the legacy COM1-COM4 serial ports to be completely disabled. It is needed to prevent hangs on some hardware. In particular, the Intel Edison where it is not present.
* pc386: Add BSP_ENABLE_VGA BSP optionJoel Sherrill2015-01-041-15/+22
| | | | | | This allows the VGA and keyboard console to be completely disabled. It is useful on PCs without displays and prevents a very slow boot time on the Intel Edison.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* Improve comments on console select patch.Joel Sherrill2012-02-011-6/+7
|
* Correct run-time selection of console port.Jennifer Averett2012-02-011-16/+23
| | | | This was broken by conversion of console driver to libchip style.
* 2011-11-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2011-11-181-0/+57
PR 1925 * Makefile.am, preinstall.am, console/serial_mouse_config.c, include/bsp.h, start/start.S: Converted 1386 console to the libchip style console * console/conscfg.c, console/console_control.c, console/printk_support.c, console/vgacons.c, console/vgacons.h: New files.