diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-04-03 10:19:41 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-04-03 10:19:41 +0200 |
commit | ed23702c1e203d4ebe9dabf78c17cb877b5e41a6 (patch) | |
tree | 82dca70c55f81b8c366fed16ab34a23ed8e9c9f1 | |
parent | e23b2d5416e10e7881ec5cf00469b4f6d8abf310 (diff) |
enable ACPI for generic x86/x86_64 reported by Oliver
-rw-r--r-- | target/linux/config/Config.in.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/config/Config.in.pm b/target/linux/config/Config.in.pm index 7ed913fd9..466c2994d 100644 --- a/target/linux/config/Config.in.pm +++ b/target/linux/config/Config.in.pm @@ -31,7 +31,9 @@ config ADK_KERNEL_ACPI_DOCK bool menu "Power Management support" -depends on ADK_TARGET_WITH_ACPI || ADK_TARGET_SYSTEM_LEMOTE_YEELONG +depends on ADK_TARGET_WITH_ACPI \ + || ADK_TARGET_SYSTEM_LEMOTE_YEELONG \ + || ADK_TARGET_GENERIC config ADK_HARDWARE_ACPI bool "Enable ACPI support" @@ -46,6 +48,8 @@ config ADK_HARDWARE_ACPI select ADK_KERNEL_ACPI_DOCK default y if ADK_TARGET_SYSTEM_IBM_X40 default y if ADK_TARGET_SYSTEM_PCENGINES_APU + default y if ADK_TARGET_SYSTEM_GENERIC_X86 + default y if ADK_TARGET_SYSTEM_GENERIC_X86_64 default n help Enable ACPI support. |