bootloader
bootloader copied to clipboard
An experimental pure-Rust x86 bootloader
As stated in the title: What is missing to be able to install this crate?
Currently if I run my os: ```toml [dependencies.bootloader] version = "0.10.0" features = ["binary", "uefi_bin"] ``` I get: ``` Compiling bootloader v0.10.0 error: failed to run custom build command for...
Hello I've been stepping through the bootloader code to learn more about osdev. Upon entering stage_3 I attempted to add a `call vga_printline` with a test string I defined in...
I'm trying to set up a basic skeleton for a Rust-based OS using this package to create a bootloader and boot image, and am running into the following problem: ```...
This is required to compile with latest rustc nightly.
As I've seen, the bootloader can boot in legacy BIOS ams UEFI modes. However, there is no way for the kernel to directly know in which mode it has been...
So in both the examples, `-Zbuild-std=core` is being passed from `.cargo/config.toml`. My question is how does that work with the `boot/simple_boot`sub crates that need `std` as well? Or does the...
So I have no idea where to put this, though I've spoke about it in various places and have gotten *no* response in a month or so. (I apologize if...
How can I run the cargo test using the `simple_boot` example? I have the `krun`, `kimage` and `kbuild` aliases in my `.cargo/config` file but how do I write one for...
Fixes: #164