Go to file
Ron Williams ba613ce628 Nanosleep: Return time remaining after interrupt 2025-02-26 21:00:23 +00:00
.helix Updates .helix config to the new file format 2024-10-01 14:36:11 +00:00
linkers Remove old aarch64 asm code 2024-10-29 07:59:12 -06:00
res Add support for graphical debug, to be used during ACPI phase 2018-03-11 11:36:58 -06:00
rmm@63669069f4 Update rmm 2024-10-23 04:06:26 +03:00
slab_allocator@a9e2bb08a8 Update linked_list_allocator 2018-04-28 21:45:19 -06:00
src Nanosleep: Return time remaining after interrupt 2025-02-26 21:00:23 +00:00
targets Initial RISC-V implementation 2024-10-20 16:24:21 +03:00
.gitignore Add the sys:stat scheme 2025-02-22 14:27:10 +00:00
.gitlab-ci.yml Use redoxer for CI jobs 2024-11-01 06:51:13 +03:00
.gitmodules Initial RISC-V implementation 2024-10-20 16:24:21 +03:00
ARM-AARCH64-PORT-OUTLINE.md Update status: Toolchain spec done 2018-04-16 02:53:59 +05:30
Cargo.lock Add one-way close message for schemes. 2025-02-21 15:56:05 +01:00
Cargo.toml Add the sys:stat scheme 2025-02-22 14:27:10 +00:00
LICENSE Create LICENSE 2017-09-26 12:57:43 -06:00
Makefile Use redoxer for CI jobs 2024-11-01 06:51:13 +03:00
README.md Document how to contribute and do development in the README 2025-01-09 12:00:00 +00:00
build.rs Remove old aarch64 asm code 2024-10-29 07:59:12 -06:00
clippy.sh Clippy fixes 2022-11-11 13:19:14 -07:00
config.toml.example Support XSAVE, XSAVEOPT, and AVX2. 2023-09-14 10:54:30 +02:00
rustfmt.toml Address minor warts 2024-10-27 18:14:12 -03:00

README.md

Kernel

Redox OS Microkernel

docs SLOCs counter MIT licensed

Requirements

  • nasm needs to be available on the PATH at build time.

Building The Documentation

Use this command:

cargo doc --open --target x86_64-unknown-none`.

Debugging

QEMU

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.

GDB

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

LLDB

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.

Notes

  • Always use foo.get(n) instead of foo[n] and try to cover for the possibility of Option::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.

How To Contribute

To learn how to contribute to this system component you need to read the following document:

Development

To learn how to do development with this system component inside the Redox build system you need to read the Build System and Coding and Building pages.

How To Build

To build this system component you need to download the Redox build system, you can learn how to do it on the Building Redox page.

This is necessary because they only work with cross-compilation to a Redox virtual machine, but you can do some testing from Linux.