bootimage icon indicating copy to clipboard operation
bootimage copied to clipboard

Tool to create bootable disk images from a Rust OS kernel.

Results 16 bootimage issues
Sort by recently updated
recently updated
newest added

Bootloaders like GRUB have a config file that can be used to pass in boot time parameters that can be used by kernel to enable disable some features at boot...

I want create iso, for my kernel, but seems bootimage supports only .bin.

Would be nice to have minimal support for aarch64 and riscv bare metal targets.

Just a quick little change to allow bootimage to work with aarch64. I haven't been able to actually _test_ it because I don't have a working aarch64-compatible bootloader (im using...

I run in an issue by the attempt to run example-kernels and hope to find help this way. The cli `cargo bootimage --target x86_64-bootimage-example-kernels.json` finished successfully, but `cargo xrun` failed...

I think bootimage has some problems with the custom test runner on CLion/Rust plugin. CLion can create a Cargo run configuration for tests. This creates the following cargo command: ```...

Hello, I get an error when trying to install bootimage, this is the output after running the install command: Updating crates.io index Installing bootimage v0.9.0 error: failed to compile `bootimage...

I'm writing a kernel that runs on both the Raspberry Pi 3 and x86_64. I'm trying to use bootloader+bootimage exclusively for the x86_64 version, but not any other architecture. As...

The debug sections (eg. debug_line) are stripped even in debug builds, even though kernels might want to use that for things like line numbers.

enhancement

1. Install QEMU natively on Windows 2. Under WSL setup cargo 3. In `~/bin/qemu-system-x86_64` put `exec /mnt/c/Program\ Files/qemu/qemu-system-x86_64.exe "$@"` and make the file executable 3. run `cargo xrun` 4. run...