1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 07:20:23 +03:00

ar7: Add minimal kgdb implementation (#114).

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7109 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
ejka 2007-05-06 15:25:02 +00:00
parent a9edfbb40d
commit 6c2af31eb0

View File

@ -29,6 +29,7 @@
#include <asm/io.h>
#include <asm/bootinfo.h>
#include <asm/mips-boards/prom.h>
#include <asm/gdb-stub.h>
#include <asm/ar7/ar7.h>
@ -243,6 +244,13 @@ static void __init console_config(void)
if (strstr(prom_getcmdline(), "console="))
return;
#ifdef CONFIG_KGDB
strcat(prom_getcmdline(), " console=kgdb");
prom_printf("Please connect GDB to this port\n");
kgdb_enabled = 1;
return;
#endif
if ((s = prom_getenv("modetty0"))) {
baud = simple_strtoul(s, &p, 10);
s = p;
@ -301,4 +309,16 @@ int prom_putchar(char c)
return 1;
}
#ifdef CONFIG_KGDB
int putDebugChar(char c)
{
return prom_putchar(c);
}
char getDebugChar(void)
{
return prom_getchar();
}
#endif
EXPORT_SYMBOL(prom_getenv);