revitalized
This commit is contained in:
parent
2190a5c04d
commit
a46f795b5a
12 changed files with 52 additions and 86 deletions
18
Cargo.toml
18
Cargo.toml
|
@ -2,7 +2,15 @@
|
|||
name = "rustboot"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
authors = ["mtgmonkey"]
|
||||
authors = [ "mtgmonkey" ]
|
||||
|
||||
# quit QEMU
|
||||
[package.metadata.bootimage]
|
||||
test-args = [ "device", "isa-debug-exit,iobase=0xf4,iosize=0x04",
|
||||
"-serial", "stdio",
|
||||
"-display", "none" ]
|
||||
test-success-exit-code = 33 # (0x10 << 1) | 1
|
||||
test-timeout = 30 # in seconds
|
||||
|
||||
[lib]
|
||||
crate-type = ["staticlib"] # library that contains all dependencies
|
||||
|
@ -17,8 +25,8 @@ x86_64 = "0.15"
|
|||
version = "1.5"
|
||||
features = ["spin_no_std"]
|
||||
|
||||
#[profile.dev]
|
||||
#panic = "abort"
|
||||
[profile.dev]
|
||||
panic = "abort"
|
||||
|
||||
#[profile.release]
|
||||
#panic = "abort"
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue