| OLD | NEW |
| 1 # | 1 # |
| 2 # Configuration file for Laptop Mode Tools module usb-autosuspend. | 2 # Configuration file for Laptop Mode Tools module usb-autosuspend. |
| 3 # | 3 # |
| 4 # For more information, consult the laptop-mode.conf(8) manual page. | 4 # For more information, consult the laptop-mode.conf(8) manual page. |
| 5 # | 5 # |
| 6 | 6 |
| 7 | 7 |
| 8 ############################################################################### | 8 ############################################################################### |
| 9 # USB autosuspend settings | 9 # USB autosuspend settings |
| 10 # ------------------------ | 10 # ------------------------ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 DEBUG=0 | 23 DEBUG=0 |
| 24 | 24 |
| 25 # Enable USB autosuspend feature? | 25 # Enable USB autosuspend feature? |
| 26 CONTROL_USB_AUTOSUSPEND=1 | 26 CONTROL_USB_AUTOSUSPEND=1 |
| 27 | 27 |
| 28 # The list of USB IDs that should not use autosuspend. Use lsusb to find out the | 28 # The list of USB IDs that should not use autosuspend. Use lsusb to find out the |
| 29 # IDs of your USB devices. | 29 # IDs of your USB devices. |
| 30 # Example: AUTOSUSPEND_USBID_BLACKLIST="046d:c025 0123:abcd" | 30 # Example: AUTOSUSPEND_USBID_BLACKLIST="046d:c025 0123:abcd" |
| 31 AUTOSUSPEND_USBID_BLACKLIST="" | 31 AUTOSUSPEND_USBID_BLACKLIST="" |
| 32 | 32 |
| 33 # The list of USB driver types that should not use autosuspend. The driver |
| 34 # type is given by "DRIVER=..." in a USB device's uevent file. |
| 35 # Example: AUTOSUSPEND_USBID_BLACKLIST="usbhid usb-storage" |
| 36 AUTOSUSPEND_USBTYPE_BLACKLIST="usbhid" |
| 37 |
| 33 # Trigger auto-suspension of the USB deivce under conditional circumstances | 38 # Trigger auto-suspension of the USB deivce under conditional circumstances |
| 34 BATT_SUSPEND_USB=1 | 39 BATT_SUSPEND_USB=1 |
| 35 LM_AC_SUSPEND_USB=0 | 40 LM_AC_SUSPEND_USB=0 |
| 36 NOLM_AC_SUSPEND_USB=0 | 41 NOLM_AC_SUSPEND_USB=0 |
| 37 | 42 |
| 38 # USB Auto-Suspend timeout in seconds | 43 # USB Auto-Suspend timeout in seconds |
| 39 # Number of seconds after which the USB devices should suspend | 44 # Number of seconds after which the USB devices should suspend |
| 40 AUTOSUSPEND_TIMEOUT=2 | 45 AUTOSUSPEND_TIMEOUT=2 |
| 41 | 46 |
| 42 | 47 |
| OLD | NEW |