This commit is contained in:
mii443
2025-07-11 13:15:03 +09:00
parent 539d784bed
commit 7a9bf54477
6 changed files with 97 additions and 38 deletions

View File

@@ -2,6 +2,17 @@
# It is not intended for manual editing.
version = 4
[[package]]
name = "acpi"
version = "5.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94476c7ef97af4c4d998b3f422c1b01d5211aad57c80ed200baf148d1f1efab6"
dependencies = [
"bit_field",
"bitflags 2.9.1",
"log",
]
[[package]]
name = "bit_field"
version = "0.10.2"
@@ -47,6 +58,7 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
name = "nel_os_bootloader"
version = "0.1.0"
dependencies = [
"acpi",
"goblin",
"log",
"nel_os_common",

View File

@@ -9,3 +9,4 @@ log = "0.4.27"
uefi = { version = "0.35.0", features = ["logger", "panic_handler", "alloc"] }
x86 = "0.52.0"
nel_os_common = { path = "../nel_os_common" }
acpi = "5.2.0"

View File

@@ -14,4 +14,5 @@ qemu-system-x86_64 -enable-kvm \
-cdrom nel_os.iso \
-boot d \
-cpu host \
-smp 1 \
-s