-
Updated
Nov 8, 2020 - C
osdev
Here are 453 public repositories matching this topic...
-
Updated
Nov 20, 2020 - C
-
Updated
Feb 5, 2020 - Rust
-
Updated
Nov 23, 2020 - Rust
Here is a list of commands to implement to make the skift shell usable.
(The source code of uname is a good example of how commands should be written.)
- chgrp
- chown
- chmod
- cp (missing options)
- rw (replacement for dd https://sortix.org/rw/)
- df
- ln
- ls
- mkdir
- mkfifo
- mknod
- mktemp
- mv (not complete)
- realpath
The stage2 disk image must remain under 64kB to allow loading it in a single bios int 13H call from within stage1. While we don't want stage2 to get any larger, this can be a show stopper when stage2 code compiled with debug code or lower optimization causes this boundary to be exceeded.
Investigate improving the stage1 bootloader to make multiple bios calls to fulfill the stage2 read if needed
Although a new inline assembly syntax asm! was announced in Rust on 2020/06/08[1], KRaBs still uses llvm_am!.
[1] New inline assembly syntax available in nightly
According to the blog, the asm! macro should be safer and easier to use. This is expected to become the mainstream of inline assembly in the future, so
-
Updated
Nov 4, 2020 - C
display_bsod internally calls the map_framebuffer syscall to map the framebuffer, because we . were lazy and didn't want to duplicate code. However this syscall retrieves the current process to map it in its process memory.
When we're panicking during early boot, CURRENT_PROCESS is None and this panics in the panic handler.
We should instead do a second function that maps it in the k
-
Updated
Nov 20, 2020 - C
-
Updated
Oct 1, 2020 - C++
-
Updated
Jul 18, 2020 - C
-
Updated
Jun 28, 2020 - C
Improve this page
Add a description, image, and links to the osdev topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the osdev topic, visit your repo's landing page and select "manage topics."
Currently, the
uefi-servicescrate contains a panic handler, while this is useful, It is a problem if you are doing printing yourself as you can't use your own printer for panics. The best option would be to make the panic handler optional usingcfg_attr()Thank you for your time!