Redox OS Microkernel
nasm
needs to be available on the PATH at build time.
Use this command:
cargo doc --open --target x86_64-unknown-none`.
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 gdb=yes
This will start a virtual machine with and listen on port 1234
for a GDB or LLDB client.
If you are going to use GDB, run these commands to load debug symbols and connect to your running kernel:
(gdb) symbol-file build/kernel.sym
(gdb) target remote localhost:1234
If you are going to use LLDB, run these commands to start debugging:
(lldb) target create -s build/kernel.sym build/kernel
(lldb) gdb-remote localhost:1234
After connecting to your kernel you can set some interesting breakpoints and continue
the process. See your debuggers man page for more information on useful commands to run.
-
Always use
foo.get(n)
instead offoo[n]
and try to cover for the possibility ofOption::None
. Doing the regular way may work fine for applications, but never in the kernel. No possible panics should ever exist in kernel space, because then the whole OS would just stop working. -
If you receive a kernel panic in QEMU, use
pkill qemu-system
to kill the frozen QEMU process.