Sorry, here is 14.10
Code:
ringi@ringi-Lenovo-Ideapad-Flex-15:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
powersave
powersave
powersave
powersave
ringi@ringi-Lenovo-Ideapad-Flex-15:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq
856109
899804
899937
800195
ringi@ringi-Lenovo-Ideapad-Flex-15:~$
Current Date/Time: Sat Feb 14 12:40:17 UTC 2015
Distro Release: Ubuntu 14.10
Kernel Release: Linux 3.16.0-30-generic
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) Haswell Mobile
OpenGL version string: 3.0 Mesa 10.3.2
Not software rendered: yes
Not blacklisted: yes
GLX fbconfig: yes
GLX texture from pixmap: yes
GL npot or rect textures: yes
GL vertex program: yes
GL fragment program: yes
GL vertex buffer object: yes
GL framebuffer object: yes
GL version is 1.4+: yes
Peppermint support: yes
dpkg-query: package 'mesa-utils' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
Package: mesa-common-dev
dpkg-query: package 'mesa-common-dev' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
Package: xserver-xorg-core
Installed: 2:1.16.0-1ubuntu1.2
Package: xserver-common
Installed: 2:1.16.0-1ubuntu1.2
Package: xserver-xephyr
Installed: 2:1.16.0-1ubuntu1.2
Tree Map of PCI Devices:
-[0000:00]-+-00.0 Intel Corporation Haswell-ULT DRAM Controller
+-02.0 Intel Corporation Haswell-ULT Integrated Graphics Controller
+-03.0 Intel Corporation Haswell-ULT HD Audio Controller
+-14.0 Intel Corporation 8 Series USB xHCI HC
+-16.0 Intel Corporation 8 Series HECI #0
+-1b.0 Intel Corporation 8 Series HD Audio Controller
+-1c.0-[01]----00.0 Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller
+-1c.2-[02]----00.0 Qualcomm Atheros AR9485 Wireless Network Adapter
+-1d.0 Intel Corporation 8 Series USB EHCI #1
+-1f.0 Intel Corporation 8 Series LPC Controller
+-1f.2 Intel Corporation 8 Series SATA Controller 1 [AHCI mode]
\-1f.3 Intel Corporation 8 Series SMBus Controller
Code:
ringi@ringi-Lenovo-Ideapad-Flex-15:~$ cat /etc/init.d/ondemand
#! /bin/sh
### BEGIN INIT INFO
# Provides: ondemand
# Required-Start: $remote_fs $all
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Set the CPU Frequency Scaling governor to "ondemand"
### END INIT INFO
# Don't run if we're going to start an Android LXC container:
[ ! -f /etc/init/lxc-android-config.conf ] || exit 0
PATH=/sbin:/usr/sbin:/bin:/usr/bin
. /lib/init/vars.sh
. /lib/lsb/init-functions
AVAILABLE="/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors"
case "$1" in
start)
start-stop-daemon --start --background --exec /etc/init.d/ondemand -- background
;;
background)
sleep 60 # probably enough time for desktop login
[ -f $AVAILABLE ] || exit 0
read governors < $AVAILABLE
case $governors in
*interactive*)
GOVERNOR="interactive"
break
;;
*ondemand*)
GOVERNOR="ondemand"
break
;;
*powersave*)
GOVERNOR="powersave"
break
;;
*)
exit 0
;;
esac
for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
do
[ -f $CPUFREQ ] || continue
echo -n $GOVERNOR > $CPUFREQ
done
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop)
;;
*)
echo "Usage: $0 start|stop" >&2
exit 3
;;
esac
ringi@ringi-Lenovo-Ideapad-Flex-15:~$
Bookmarks