Advertisement
Guest User

Untitled

a guest
Dec 16th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.38 KB | None | 0 0
  1. ##########################################################
  2. # DO NOT EDIT THIS FILE!                                 #
  3. #                                                        #
  4. # Add files in /etc/pm/config.d/ instead!                #
  5. ##########################################################
  6.  
  7. # Default method to power down the system when hibernating.
  8. # If commented out, the system will use the kernel default as a
  9. # default value.
  10. #
  11. # Check /sys/power/disk for valid values.  The default value
  12. # will be surrounded by [square brackets].
  13.  HIBERNATE_MODE="shutdown"
  14.  
  15. # Whether we need to post the video card when resuming from
  16. # hibernate. You should not normally need to set this.  
  17. # In the future pm-utils will get this setting from HAL.
  18. #
  19. # Valid values are "no" and "yes"
  20. HIBERNATE_RESUME_POST_VIDEO="no"
  21.  
  22. # The default sleep/wake system to use.  Valid values are:
  23. #   kernel    The built-in kernel suspend/resume support.
  24. #             Use this if nothing else is supported on your system.
  25. #   uswsusp   If your system has support for the userspace
  26. #             suspend programs (s2ram/s2disk/s2both), then use this.
  27. #   tuxonice  If your system has support for tuxonice, use this.
  28. #
  29. # The system defaults to "kernel" if this is commented out.
  30.  SLEEP_MODULE="kernel"
  31.  
  32. # These variables will be handled specially when we load files in
  33. # /etc/pm/config.d.
  34. # Multiple declarations of these environment variables will result in
  35. # their contents being concatenated instead of being overwritten.
  36.  
  37. # If you need to unload any modules to suspend/resume, add them here.
  38. SUSPEND_MODULES="ath9k hp_accel lis3lv02d snd_hda_intel videobuf2_core media ath9k_hw ath9k_common mac80211 cfg80211 hp_wmi r8169 rfkill kvm_amd kvm radeon drm_kms_helper ttm k10temp ac rc_core evdev video button snd microcode powernow_k8 soundcore cpufreq_userspace processor mperf ext4 ohci_hcd ehci_hcd usb_common sdhci_pci sdhci firewire_ohci mmc_core firewire_core crc_itu_t"
  39.  
  40. # If you want to keep hooks from running, add their names  here.
  41. # HOOK_BLACKLIST=""
  42.  
  43. # If you want to unconditionally add parameters to the commandline,
  44. # add them here.
  45. #ADD_PARAMETERS="--quirk-s3-bios"
  46.  
  47. # If you want to ignore commandline parameters, add them here.
  48. # DROP_PARAMETERS=""
  49.  
  50. # If you need to synchronize the system clock across a suspend/resume or
  51. # hibernate/thaw cycle, set this variable.
  52. # NEED_CLOCK_SYNC="true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement