2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>

PR 1917/bsps
	* Makefile.am, console/conscfg.c: Modifications to add dynamic tables
	for libchip serial drivers.
This commit is contained in:
Jennifer Averett
2011-10-18 18:35:25 +00:00
parent d5286a1fd8
commit e1ddcec09e
6 changed files with 24 additions and 16 deletions

View File

@@ -1,3 +1,9 @@
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps
* Makefile.am, console/conscfg.c: Modifications to add dynamic tables
for libchip serial drivers.
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* include/bsp.h:

View File

@@ -40,7 +40,9 @@ libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
# clock
libbsp_a_SOURCES += clock/clockdrv.c ../../../shared/clockdrv_shell.h
# console
libbsp_a_SOURCES += console/conscfg.c ../../shared/console.c
libbsp_a_SOURCES += console/conscfg.c ../../shared/console.c \
../../shared/console_select.c ../../shared/console_control.c \
../../shared/console_read.c ../../shared/console_write.c
# debugio
libbsp_a_SOURCES += console/debugio.c
# timer

View File

@@ -38,7 +38,7 @@
#define MC68681_FUNCTIONS &mc68681_fns_polled
#endif
console_tbl Console_Port_Tbl[] = {
console_tbl Console_Configuration_Ports[] = {
{
"/dev/com0", /* sDeviceName */
SERIAL_MC68681, /* deviceType */
@@ -64,10 +64,6 @@ console_tbl Console_Port_Tbl[] = {
* Declare some information used by the console driver
*/
#define NUM_CONSOLE_PORTS (sizeof(Console_Port_Tbl)/sizeof(console_tbl))
#define NUM_CONSOLE_PORTS (sizeof(Console_Configuration_Ports)/sizeof(console_tbl))
unsigned long Console_Port_Count = NUM_CONSOLE_PORTS;
console_data Console_Port_Data[NUM_CONSOLE_PORTS];
rtems_device_minor_number Console_Port_Minor;
unsigned long Console_Configuration_Count = NUM_CONSOLE_PORTS;

View File

@@ -1,3 +1,9 @@
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps
* Makefile.am, console/conscfg.c: Modifications to add dynamic tables
for libchip serial drivers.
2011-06-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Fix broken path to clockdrv_shell.h.

View File

@@ -40,7 +40,9 @@ libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppretaskinghook.c \
libbsp_a_SOURCES += clock/clockdrv.c
libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
# console
libbsp_a_SOURCES += console/conscfg.c ../../shared/console.c
libbsp_a_SOURCES += console/conscfg.c ../../shared/console.c \
../../shared/console_select.c ../../shared/console_control.c \
../../shared/console_read.c ../../shared/console_write.c
# timer
libbsp_a_SOURCES += timer/timer.c

View File

@@ -28,7 +28,7 @@
#define MG5UART_FUNCTIONS &mg5uart_fns_polled
#endif
console_tbl Console_Port_Tbl[] = {
console_tbl Console_Configuration_Ports[] = {
{
"/dev/com0", /* sDeviceName */
SERIAL_MG5UART, /* deviceType */
@@ -73,13 +73,9 @@ console_tbl Console_Port_Tbl[] = {
* Declare some information used by the console driver
*/
#define NUM_CONSOLE_PORTS (sizeof(Console_Port_Tbl)/sizeof(console_tbl))
#define NUM_CONSOLE_PORTS (sizeof(Console_Configuration_Ports)/sizeof(console_tbl))
unsigned long Console_Port_Count = NUM_CONSOLE_PORTS;
console_data Console_Port_Data[NUM_CONSOLE_PORTS];
rtems_device_minor_number Console_Port_Minor;
unsigned long Console_Configuration_Count = NUM_CONSOLE_PORTS;
/*
* printk() support that simply routes printk to stderr