[xtensa-cvscommit] linux/arch/xtensa/kernel gdb-stub.c,1.6,1.7
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-03-26 01:04:36
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv14216/arch/xtensa/kernel
Modified Files:
gdb-stub.c
Log Message:
Remove redundant code. Update response string to "KGDB".
Index: gdb-stub.c
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/gdb-stub.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** gdb-stub.c 29 Jan 2003 06:17:59 -0000 1.6
--- gdb-stub.c 26 Mar 2003 01:04:32 -0000 1.7
***************
*** 739,759 ****
case 'q':
! if (!strncmp(input_buffer, "qxtn", 4)) {
! #if 0
! output_buffer[0] = 'L';
! output_buffer[1] = 'i';
! output_buffer[2] = 'n';
! output_buffer[3] = 'u';
! output_buffer[4] = 'x';
! output_buffer[5] = 0;
! #else
! output_buffer[0] = 'I';
! output_buffer[1] = 'S';
! output_buffer[2] = 'S';
! output_buffer[3] = '3';
! output_buffer[4] = 0;
! #endif
! strcpy(output_buffer, "XMON2.5");
! }
break;
--- 739,744 ----
case 'q':
! if (!strncmp(input_buffer, "qxtn", 4))
! strcpy(output_buffer, "KGDB");
break;
|