We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be3eff commit 2e0975fCopy full SHA for 2e0975f
src/efi/mod.rs
@@ -1115,6 +1115,9 @@ pub fn efi_exec(
1115
let mut ct_index = 0;
1116
1117
// Populate with FDT table if present
1118
+ // To ensure ACPI is used during boot do not include FDT table on aarch64
1119
+ // https://github.com/torvalds/linux/blob/d528014517f2b0531862c02865b9d4c908019dc4/arch/arm64/kernel/acpi.c#L203
1120
+ #[cfg(not(target_arch = "aarch64"))]
1121
if let Some(fdt_entry) = info.fdt_reservation() {
1122
ct[ct_index] = efi::ConfigurationTable {
1123
vendor_guid: Guid::from_fields(
0 commit comments