Re: [lldb-dev] Remote Kernel Debugging using LLDB

2016-07-28 Thread hrishikesh chaudhari via lldb-dev
to your > ~/.lldbinit file giving it the file path to your kext, > > settings set platform.plugin.darwin-kernel.kext-directories > /your/directory/here > > and lldb will index the kexts in that directory when it starts the kernel > debug session. > > > > On Ju

Re: [lldb-dev] Remote Kernel Debugging using LLDB

2016-07-28 Thread hrishikesh chaudhari via lldb-dev
t file giving it the file path to your kext, settings set platform.plugin.darwin-kernel.kext-directories /your/directory/here and lldb will index the kexts in that directory when it starts the kernel debug session. > On Jul 28, 2016, at 5:55 AM, hrishikesh chaudhari via lldb-dev < lldb-dev@l

Re: [lldb-dev] Remote Kernel Debugging using LLDB

2016-07-28 Thread hrishikesh chaudhari via lldb-dev
sessions that talk about kernel > debugging, e.g. > > https://developer.apple.com/videos/play/wwdc2013/707/ > > (there are PDFs of the slides of the presentation - the lldb part comes at > the end) > > > > On Jul 27, 2016, at 10:31 PM, hrishikesh chaudhari via lldb-dev &l

[lldb-dev] Remote Kernel Debugging using LLDB

2016-07-27 Thread hrishikesh chaudhari via lldb-dev
Hi, I have been trying to debug my kernel Extension. In order to enter a kernel into a panic mode, I have put hard debug point using (int $3). When the target system starts, the kernel waits into panic mode for debugger to attach. Now the problem is: What should I set target in lldb command? I ha