Implementing Stdio for UEFI
Hello everyone. In this post, I will go through how I implemented the stdio module for UEFI. The implementation code can be found here. ...more
Hello everyone. In this post, I will go through how I implemented the stdio module for UEFI. The implementation code can be found here. ...more
Hello everyone. In this post, I will explain the current state of std implementation for UEFI. The rust repository containing my work can be found here. In the end, we will use this fork to run a Rust binary. ...more
Hello everyone. I will continue where I left off in post with the Rust main in this post. Since we now have an allocator, the Thread::new
statement at library/std/src/rt.rs
works. So we need to fix the line where we set the main thread with guard information. This will be a short post since it turned out easier than I initially thought. ...more