Ticket #8043: acpi-copy-dsdt.patch

File acpi-copy-dsdt.patch, 1.1 KB (added by scgtrp, 13 years ago)
  • src/add-ons/kernel/bus_managers/acpi/acpi_busman.c

     
    9797                    true, true);
    9898                acpiAvoidFullInit = get_driver_boolean_parameter(settings,
    9999                    "acpi_avoid_full_init", false, false);
     100                AcpiGbl_CopyDsdtLocally = get_driver_boolean_parameter(settings,
     101                    "acpi_copy_dsdt", false, false);
    100102                unload_driver_settings(settings);
    101103            }
    102104
  • data/settings/kernel/drivers/kernel

     
    6464    # Avoids running _INI and _STA methods and final object initialization,
    6565    # which may be used to for debugging ACPI issues, false by default
    6666
     67#acpi_copy_dsdt true
     68    # Makes a copy of the DSDT during boot, to work around BIOSes that
     69    # corrupt it, false by default
     70
    6771#disable_ioapic true
    6872    # Disables IO-APIC support, enabled by default
    6973