Linux ubuntu minimal - update to frodo final, problems with suspend
#1
Sad 
Hi guys,

I installed Ubuntu minimal + xbmc following this thread.

Everything was working fine until I updated my system to frodo final. Now my system hangs when I try to suspend it,
shutdown and rebootwork OK.

I see no other posts abut this so I think i messed up on upgrade,
Blush I did not read manpge for
Code:
sudo apt-get

and just enterd:
Code:
sudo apt-get update
and then
Code:
sudo apt-get upgrade

So something else on my system got upgraded aswell but i do not know what.
After that suspend is not working.
here is my debug log,
I see no crash log though.

I am not best for linux so if you need more info just say/ask.

I just remeberd i have made an extra udev rule:
Code:
SUBSYSTEM=="usb", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="0001" RUN+="/bin/sh -c 'echo enabled > /sys$env{DEVPATH}/../power/wakeup'"

and one resume script to reset my USB ports after resume
Code:
#!/bin/sh
case "${1}" in
        hibernate|suspend)
              # Switch USB buses off
        echo -n "0000:00:1d.7" | tee /sys/bus/pci/drivers/ehci_hcd/unbind
        
        ;;
        resume|thaw)
        # Switch USB buses on
        echo -n "0000:00:1d.7" | tee /sys/bus/pci/drivers/ehci_hcd/bind

        ;;
esac

But system worked fine with them before upgrade.

I know i could try roll back but at this point would not like to mess up my system even more,
so hope one of you gurus can help me out.

Sorry for a bit longer post and thank you.


Reply

Logout Mark Read Team Forum Stats Members Help
ubuntu minimal - update to frodo final, problems with suspend0