mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
e4db417895
Remove the ramoops region from high_mmio when constructing the system allocator. This means the aarch64 code no longer needs to manually adjust high_mmio when determining the pci regions. BUG=b:181736020 TEST=Check arcvm pstore still works Change-Id: I81ca398a1984f0efb30c0a4d4b620bd50fe9df85 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3516667 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: David Stevens <stevensd@chromium.org>
27 lines
712 B
TOML
27 lines
712 B
TOML
[package]
|
|
name = "arch"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
power-monitor-powerd = ["power_monitor/powerd"]
|
|
gdb = ["gdbstub_arch"]
|
|
|
|
[dependencies]
|
|
acpi_tables = { path = "../acpi_tables" }
|
|
anyhow = "*"
|
|
base = { path = "../base" }
|
|
devices = { path = "../devices" }
|
|
gdbstub_arch = { version = "0.1.0", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
libc = "*"
|
|
minijail = "*"
|
|
power_monitor = { path = "../power_monitor" }
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "1.0.20"
|
|
vm_control = { path = "../vm_control" }
|
|
vm_memory = { path = "../vm_memory" }
|