mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Update the instructions for manually dumping ACPI tables
This commit is contained in:
@@ -2784,13 +2784,13 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "Surface", 0x00001000)
|
|||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
print("To manually dump ACPI tables, open Command Prompt and enter the following\ncommands in sequence:")
|
print("To manually dump ACPI tables, open Command Prompt and enter the following\ncommands in sequence:")
|
||||||
print("")
|
print("")
|
||||||
print(" cd \"{}\"".format(results_path.replace("/", "\\")))
|
print(" > cd \"{}\"".format(results_path.replace("/", "\\")))
|
||||||
print(" mkdir \"ACPI Table\"")
|
print(" > mkdir ACPITables")
|
||||||
print(" cd \"ACPI Table\"")
|
print(" > cd ACPITables")
|
||||||
print(" \"{}\" -b".format(apcidump_path.replace("/", "\\")))
|
print(" > \"{}\" -b".format(apcidump_path.replace("/", "\\")))
|
||||||
print(" rename *.dat *.aml")
|
print(" > rename *.dat *.aml")
|
||||||
print("")
|
print("")
|
||||||
print("The ACPI tables will now be available in\n \"{}\\ACPI Tables\"".format(results_path.replace("/", "\\")))
|
print("The ACPI tables will now be available in\n \"{}\\ACPITables\"".format(results_path.replace("/", "\\")))
|
||||||
print("")
|
print("")
|
||||||
if sys.platform.startswith("linux") or sys.platform == "win32":
|
if sys.platform.startswith("linux") or sys.platform == "win32":
|
||||||
print("P. Dump ACPI Tables")
|
print("P. Dump ACPI Tables")
|
||||||
@@ -2799,7 +2799,7 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "Surface", 0x00001000)
|
|||||||
menu = self.utils.request_input("Please drag and drop ACPI Tables folder here: ")
|
menu = self.utils.request_input("Please drag and drop ACPI Tables folder here: ")
|
||||||
if menu.lower() == "p" and (sys.platform.startswith("linux") or sys.platform == "win32"):
|
if menu.lower() == "p" and (sys.platform.startswith("linux") or sys.platform == "win32"):
|
||||||
return self.read_dsdt(
|
return self.read_dsdt(
|
||||||
self.acpi.dump_tables(os.path.join(results_path, "ACPI Tables"))
|
self.acpi.dump_tables(os.path.join(results_path, "ACPITables"))
|
||||||
)
|
)
|
||||||
elif menu.lower() == "q":
|
elif menu.lower() == "q":
|
||||||
self.utils.exit_program()
|
self.utils.exit_program()
|
||||||
|
|||||||
Reference in New Issue
Block a user