Announcement

Collapse
No announcement yet.

stumped - xorg edgers + 2.6.35-rc1 DRI fail

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    I keep getting Permission denied whenever I try to enable dynpm:

    echo dynpm > /sys/class/drm/card0/device/power_method

    Same thing happens when trying to:

    echo low > /sys/class/drm/card0/device/power_profile

    Comment


    • #12
      try

      sudo -i

      and THEN your commands

      Comment


      • #13
        cheers, it worked - although i'm getting some intermittent flickering now.

        Any idea why i had do go into sudo -i as opposed to having to running the command with just:

        sudo echo dynpm > /sys/class/drm/card0/device/power_method

        Comment


        • #14
          With this command, you just sudo-ed 'echo'. The redirect ('> /sys/...') is still done by shell (bash), which is not sudo-ed. I found once really interesting alternative, using tee:

          echo dynpm | sudo tee /sys/class/drm/card0/device/power_method

          The only side-effect is that "dynpm" string will be emitted to stdout too.

          Comment


          • #15
            How well does the pm work now?

            Comment


            • #16
              Originally posted by hmmm View Post
              sudo echo dynpm > /sys/class/drm/card0/device/power_method
              You should put everything after 'sudo' in double quotes: ""

              Comment


              • #17
                Originally posted by Hans View Post
                How well does the pm work now?
                Well, with this kernel and ati 3200 hd my notebook freezed after enabling dynpm mode...

                Comment

                Working...
                X