Config.in.pm 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADK_KERNEL_PM
  4. bool
  5. default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  6. config ADK_KERNEL_PM_RUNTIME
  7. bool
  8. default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  9. config ADK_KERNEL_ACPI
  10. bool
  11. config ADK_KERNEL_ACPI_SYSFS_POWER
  12. bool
  13. config ADK_KERNEL_ACPI_AC
  14. bool
  15. config ADK_KERNEL_ACPI_BATTERY
  16. bool
  17. config ADK_KERNEL_ACPI_BUTTON
  18. bool
  19. config ADK_KERNEL_ACPI_FAN
  20. bool
  21. config ADK_KERNEL_ACPI_DOCK
  22. bool
  23. menu "Power Management support"
  24. depends on ADK_TARGET_WITH_ACPI || ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  25. config ADK_HARDWARE_ACPI
  26. prompt "Enable ACPI support"
  27. bool
  28. select ADK_KERNEL_PM
  29. select ADK_KERNEL_PM_RUNTIME
  30. select ADK_KERNEL_ACPI
  31. select ADK_KERNEL_ACPI_SYSFS_POWER
  32. select ADK_KERNEL_ACPI_AC
  33. select ADK_KERNEL_ACPI_BATTERY
  34. select ADK_KERNEL_ACPI_BUTTON
  35. select ADK_KERNEL_ACPI_FAN
  36. select ADK_KERNEL_ACPI_DOCK
  37. default y if ADK_TARGET_SYSTEM_IBM_X40
  38. default y if ADK_TARGET_SYSTEM_PCENGINES_APU
  39. default n
  40. help
  41. Enable ACPI support.
  42. config ADK_KERNEL_SUSPEND
  43. prompt "Enable Suspend-to-RAM support"
  44. bool
  45. select ADK_KERNEL_PM
  46. select ADK_KERNEL_PM_RUNTIME
  47. default y if ADK_TARGET_SYSTEM_IBM_X40
  48. default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  49. default n
  50. help
  51. Enable Suspend-to-RAM support.
  52. config ADK_KERNEL_HIBERNATION
  53. prompt "Enable Suspend-to-Disk support"
  54. bool
  55. select ADK_KERNEL_PM
  56. select ADK_KERNEL_PM_RUNTIME
  57. select ADK_KERNEL_SWAP
  58. select BUSYBOX_SWAPONOFF
  59. default y if ADK_TARGET_SYSTEM_IBM_X40
  60. default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  61. default n
  62. help
  63. Enable Suspend-to-Disk support.
  64. endmenu