1.4.1-disable-sata-alpm.patch 778 B

123456789101112131415161718192021222324252627
  1. Description: Disable SATA link power management by default, as it still causes disk errors and corruptions on many hardware.
  2. Author: Martin Pitt <martin.pitt@ubuntu.com>
  3. Bug-Ubuntu: https://launchpad.net/bugs/539467
  4. Index: pm-utils/pm/power.d/sata_alpm
  5. ===================================================================
  6. --- pm-utils.orig/pm/power.d/sata_alpm 2011-02-01 15:53:09.164867778 +0100
  7. +++ pm-utils/pm/power.d/sata_alpm 2011-02-01 15:53:28.954867786 +0100
  8. @@ -2,7 +2,7 @@
  9. . "${PM_FUNCTIONS}"
  10. -SATA_ALPM_ENABLE=${SATA_ALPM_ENABLE:-true}
  11. +SATA_ALPM_ENABLE=${SATA_ALPM_ENABLE:-false}
  12. help() {
  13. cat <<EOF
  14. @@ -16,7 +16,7 @@
  15. This hook has 1 parameter:
  16. SATA_ALPM_ENABLE = whether to use SATA ALPM on battery.
  17. -Defaults to "true".
  18. +Defaults to "false".
  19. EOF
  20. }