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 dbee890 commit a707edeCopy full SHA for a707ede
Documentation/kernel-parameters.txt
@@ -312,6 +312,8 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
312
acpi_osi=!* # remove all strings
313
acpi_osi=! # disable all built-in OS vendor
314
strings
315
+ acpi_osi=!! # enable all built-in OS vendor
316
+ strings
317
acpi_osi= # disable all strings
318
319
'acpi_osi=!' can be used in combination with single or
drivers/acpi/osl.c
@@ -1763,6 +1763,9 @@ void __init acpi_osi_setup(char *str)
1763
osi->enable = false;
1764
}
1765
return;
1766
+ } else if (*str == '!') {
1767
+ osi_config.default_disabling = 0;
1768
+ return;
1769
1770
enable = false;
1771
0 commit comments