• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Smartlink Modem und APM Suspend

Gamic

Member
Hallo,

ich nutze ein IBM Thinkpad (mit SUSE 9.1), das ein Smartlink kompatibles Modem enthält.

Das Thinkpad läuft mit APM hervorragend. Das einzige Problem ist nur, daß nach einem Suspend das Modem nicht mehr funktioniert.

Nach dem Suspend ist deshalb eine neu-Initialisierung des Smartlink Modem Drivers erforderlich:

Code:
/etc/init.d/slmodemd restart

Tritt bei anderen Smartlink/Thinkpad Anwendern dieses Problem auch auf? Und wie kann man den Modem Treiber nach dem Suspend automatisch neu aufrufen?

Viele Grüße
Michael
 
OP
G

Gamic

Member
Ich habe es herausgefunden:

Eintrag in /etc/sysconfig/powersave/common

Code:
## Path:        	System/Powermanagement/Powersave/Suspend
## Type:        	string
## Default:     	"hotplug"
## ServiceRestart: 	
#
# All services that have to be stopped before suspend and restarted
# again, when machine resumes.
# If you notice problems of some services this could be related to 
# a suspend. A restart of the service could solve the problem.
#
POWERSAVE_SUSPEND_RESTART_SERVICES="hotplug slmodemd"

## Path:        	System/Powermanagement/Powersave/Standby
## Type:        	string
## Default:     	"hotplug"
## ServiceRestart:
## Description: Standby Options 	
#
# All services that have to be stopped before suspend and restarted
# again, when machine resumes.
# If you notice problems of some services this could be related to 
# a suspend. A restart of the service could solve the problem.
#
POWERSAVE_STANDBY_RESTART_SERVICES="hotplug slmodemd"
 
Oben