Gentoo Archives: gentoo-user

From: Thanasis <thanasis@××××××××××.org>
To: gentoo-user@l.g.o
Cc: Mick <michaelkintzios@×××××.com>
Subject: Re: [gentoo-user] How to save a change to radeon power profile
Date: Sun, 18 Nov 2012 14:15:40
Message-Id: 50A8ED20.7090201@asyr.hopto.org
In Reply to: [gentoo-user] How to save a change to radeon power profile by Mick
1 on 11/18/2012 02:37 PM Mick wrote the following:
2 > I would like to check the difference between the power management profile
3 > settings of 'default' and 'auto' for my radeon card. I can change it from
4 > default with:
5 >
6 > # echo auto > /sys/class/drm/card0/device/power_profile
7 >
8 > # cat /sys/class/drm/card0/device/power_profile
9 > auto
10 >
11 > but, upon reboot it has reverted back to 'default' :-(
12 >
13 >
14 > I looked under sysctl but can't find anything. How can I set the profile to
15 > 'auto' to survive between reboots?
16
17 create a script in /etc/local.d as root and make it executable :
18
19 cd /etc/local.d
20 cat > set_radeon_to_auto
21 echo auto > /sys/class/drm/card0/device/power_profile
22 (CTRL-D)
23 chmod +x set_radeon_to_auto

Replies

Subject Author
Re: [gentoo-user] How to save a change to radeon power profile Thanasis <thanasis@××××××××××.org>