2011-11-07 Joel Sherrill <joel.sherrill@oarcorp.com>

PR 1953/bsps
	* console/uarts.c: Do not use /dev/console in libchip configuration
	table. Shared driver framework selects device to use as /dev/console.
This commit is contained in:
Joel Sherrill
2011-11-07 21:46:16 +00:00
parent d9bc968d5b
commit 3dcdad4ac2
4 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2011-11-07 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1953/bsps
* console/uarts.c: Do not use /dev/console in libchip configuration
table. Shared driver framework selects device to use as /dev/console.
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps

View File

@@ -93,7 +93,7 @@ unsigned long Console_Configuration_Count = NUM_DEVS;
*/
console_tbl Console_Configuration_Ports[] = {
{
"/dev/console", /* sDeviceName */
"/dev/com0", /* sDeviceName */
SERIAL_CUSTOM, /* deviceType */
&dbgu_fns, /* pDeviceFns */
NULL, /* deviceProbe */

View File

@@ -1,3 +1,9 @@
2011-11-07 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1953/bsps
* console/uarts.c: Do not use /dev/console in libchip configuration
table. Shared driver framework selects device to use as /dev/console.
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps

View File

@@ -42,15 +42,15 @@ extern console_fns ffuart_fns;
*/
console_tbl Console_Configuration_Ports[] = {
{
"/dev/console", /* sDeviceName */
"/dev/com0", /* sDeviceName */
SERIAL_CUSTOM, /* deviceType */
&ffuart_fns, /* pDeviceFns */
&ffuart_fns, /* pDeviceFns */
NULL, /* deviceProbe */
NULL, /* pDeviceFlow */
0, /* ulMargin - NOT USED */
0, /* ulHysteresis - NOT USED */
NULL, /* pDeviceParams */
FFUART_BASE, /* ulCtrlPort1 - Pointer to DBGU regs */
FFUART_BASE, /* ulCtrlPort1 - Pointer to DBGU regs */
0, /* ulCtrlPort2 - NOT USED */
0, /* ulDataPort - NOT USED */
NULL, /* getRegister - NOT USED */