Implementation for grabbing framebuffer
Showing
Cargo.lock
0 → 100644
... | ... | @@ -2,6 +2,14 @@ |
name = "bootloader-coreboot" | ||
version = "0.1.0" | ||
authors = ["Jeremy Soller <jeremy@system76.com>"] | ||
edition = "2018" | ||
[lib] | ||
name = "bootloader" | ||
path = "src/lib.rs" | ||
crate-type = ["staticlib"] | ||
[dependencies] | ||
bitflags = "1.0.3" | ||
coreboot-table = "0.1.2" | ||
redox_syscall = "0.1.51" | ||
spin = "0.4.8" |
Makefile
0 → 100644
Xargo.toml
0 → 100644
linkers/x86.ld
0 → 100644
rust-toolchain
0 → 100644
src/arch/mod.rs
0 → 100644
src/arch/x86/debug.rs
0 → 100644
src/arch/x86/device/mod.rs
0 → 100644
src/arch/x86/macros.rs
0 → 100644
src/arch/x86/mod.rs
0 → 100644
src/devices/mod.rs
0 → 100644
src/devices/uart_16550.rs
0 → 100644
src/externs.rs
0 → 100644
src/panic.rs
0 → 100644