diff options
author | njl <njl@FreeBSD.org> | 2003-12-18 04:39:57 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-12-18 04:39:57 +0000 |
commit | 8bfbe55f94c2a9837f50cc74d5b44e4eb26f79e0 (patch) | |
tree | 35d5bfa9e44f237f3b47c628938cd6ba7d2622a4 /etc/defaults | |
parent | 1c08e0c3ab645a4b6ccd7b9bba66d235bd321c78 (diff) | |
download | FreeBSD-src-8bfbe55f94c2a9837f50cc74d5b44e4eb26f79e0.zip FreeBSD-src-8bfbe55f94c2a9837f50cc74d5b44e4eb26f79e0.tar.gz |
Add power_profile, a script that changes the ACPI CPU Cx idle state and/or
the throttling state in response to line transitions. Future plans
include adding support for CPU frequency changes.
Add a devd.conf entry for calling this script.
The default values for this are:
performance_cx_lowest="HIGH" # Use HLT (C0) online
performance_throttle_state="HIGH" # 100% (no throttling)
economy_cx_lowest="LOW" # Use the lowest Cx state possible
economy_throttle_state="HIGH" # 100% (no throttling)
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/rc.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index bf013d4..4146e30 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -441,6 +441,10 @@ watchdogd_enable="NO" # Start the software watchdog daemon devfs_rulesets="/etc/defaults/devfs.rules /etc/devfs.rules" # Files containing # devfs(8) rules. devfs_system_ruleset="" # The name of a ruleset to apply to /dev +performance_cx_lowest="HIGH" # Online CPU idle state +performance_throttle_state="HIGH" # Online throttling state +economy_cx_lowest="LOW" # Offline CPU idle state +economy_throttle_state="HIGH" # Offline throttling state ############################################################## ### Jail Configuration ####################################### |