KGDB is a source level debugger for linux kernel. It is used along with gdb to debug linux kernel. It requires two machines that are connected via a serial connection.

learn more… | top users | synonyms

1
vote
0answers
22 views

How to configure kgdb with Grub2?

I need to setup a kernel debug session so that I can peek & poke some registers on a PCIe HW device. I am using Ubuntu 12.04, which uses Grub2. Based on my /boot/config-3.5.0-23-generic file, ...
0
votes
0answers
45 views

KDB and KGDB via serial not connecting to target

I compiled with all my "Kernel Hacking" options as instructed. I added the kgboc=ttyS0,115200 to the command line in GRUB. I've tested out my serial connection minicom to minicom. I don't have a ...
1
vote
1answer
178 views

problems to connect GDB over an serial port to an KGDB build Kernel

i want to debug an MIPS linux driver from my 64bit suse machine over serial ttyS0. The used gdb works greate over LAN with the debugging of applications but not with kgdb over serial. I used this ...
0
votes
0answers
102 views

(GDB) Can not set breakpoint to debug kernel

I use KGDB/GDB to debug kernel via Serial Port. When target machine display "Waiting for connection from remote gdb... " I run gdbmod from dev-machine. Then (gdb) target remote /dev/ttyS0 Remote ...
0
votes
0answers
52 views

USB to USB kgdb debugging

I have a system with no serial ports. My only network is one of those corporate networks full of security etc. I want to do that host to target kgdb debugging. So I want to debug USB to USB. I ...
8
votes
2answers
381 views

How to use kgdb on ARM??

Im using ARMv7 as a target machine. I have compiled the Linux source 2.6.34.13 for target. Target is connected with Host(Linux Development machine) through serial port using minicom. Target is ...
1
vote
0answers
76 views

kgdb cannot find the source code when debugging kernel module

I want to debug a kernel module with kgdb,do as the following: gdb: add-symbol-file /home/gaoqiang/kernel-32/fs/ext4/ext4.ko 0xffffffffa0122000 -s .bss 0xffffffffa016b380 -s .data 0xffffffffa0168400 ...
-1
votes
1answer
96 views

How to Check Kgdb is enabled or not?

I have a kernel image and would like to debug with kgdb. The .config also not available, otherwise I could check the flags in it. In /proc/sys/ folder also there is no entry about kgdb. Is there any ...
1
vote
2answers
631 views

Debugging Linux kernel code on Android platforms

It seems this subject hadn't have nice solution and a good reference explains what one should do to debug his code. here are reference without any solution. Can anyone contribute his knowledge for ...
11
votes
1answer
3k views

Android: Kernel Debugging with KGDB

I'm trying to do kernel debugging for my Nexus One, and have been following instructions from http://bootloader.wikidot.com/android:kgdb. I was wondering if someone has actually got this to work? And ...