aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/kernel_debugger.c
Commit message (Collapse)AuthorAgeFilesLines
* misc: remove kernel debugger coreDima Zavin2011-11-141-89/+0
| | | | | | | | | | | | The current split between this and the fiq debugger is awkward and does not have any benefit (the interface between the two is also too simplistic). The fiq debugger code itself needs a lot of refactoring, part of which would be to split out some components that are arch indpendent. So, for now, move this very small piece back into the fiq_debugger. Change-Id: Ie4ec2a2f5d907be1691a0eb6ae9304aad29ecd14 Signed-off-by: Dima Zavin <dima@android.com>
* misc: kernel_debugger: Add help commandDmitry Shmidt2011-06-141-0/+10
| | | | Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
* misc: kernel_debugger: fix handle_sysrq callErik Gilling2011-06-141-1/+1
| | | | | | Change-Id: I58376b7de56751fd57a038fb8f908f36fe60dda1 Signed-off-by: Todd Poynor <toddpoynor@google.com> Author: Erik Gilling <konkers@android.com>
* kernel_debugger_core: add interrupt-context debugger coreBrian Swetland2011-06-141-0/+79
This provides kernel_debugger() which can be called from an interrupt context low level debugger wedge to execute commands that inspect kernel state. It doesn't do much on its own. Signed-off-by: Brian Swetland <swetland@google.com> kernel_debugger_core: Add sysrq command. sysrq <c> will run the sysrq command <c> and dump what was added to the kernel log while the command ran. Signed-off-by: Brian Swetland <swetland@google.com> Signed-off-by: Arve Hjønnevåg <arve@android.com>