Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
kernel
Commits
2e6949e6
Verified
Commit
2e6949e6
authored
7 years ago
by
Dan Robertson
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation on using gdb
parent
025ec0de
No related branches found
No related tags found
1 merge request
!65
Add documentation on using gdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+27
-1
27 additions, 1 deletion
README.md
with
27 additions
and
1 deletion
README.md
+
27
−
1
View file @
2e6949e6
...
...
@@ -6,6 +6,32 @@ Redox OS Microkernel
[

](https://doc.redox-os.org/kernel/kernel/)
[

](https://github.com/Aaronepower/tokei)
## Debugging the redox kernel
Documentation is still a work in progress
Running [qemu] with the
`-s`
flag will set up [qemu] to listen on port 1234 for
a [gdb] client to connect to it. To debug the redox kernel run.
```
make qemu debug=yes
```
This will start a VM with and listen on port 1234 for a [gdb] client. Run the following
to connect to it.
```
(gdb) target remote localhost:1234
```
This is great, but without debug info debugging can be quite difficult. The
redox build process strips the kernel of debug info and copies the debug info
to a separate file
`kernel.sym`
. You can import these symbols in [gdb] with
the following
```
(gdb) symbol-file build/kernel.sym
```
Now you can set some interesting breakpoints and
`continue`
the process.
[
qemu
]:
https://www.qemu.org
[
gdb
]:
https://www.gnu.org/software/gdb/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment