openSUSE Forums > Network/Internet > Wireless » no wireless after resume from S3

Go Back   openSUSE Forums > Network/Internet > Wireless
Forums FAQ Members List Search Today's Posts Mark Forums Read


Wireless Questions about wireless networking setup, use, and wireless specific applications

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 17-Jun-2009, 21:22
Puzzled Penguin
 
Join Date: Jun 2009
Posts: 6
smsmith050 hasn't been rated much yet
Default no wireless after resume from S3

Open Suse 11.1, Linux linux-ma5q 2.6.27.23-0.1-pae
wireless card = BCM4328
driver = broadcom wl
system = Compaq 6715b

On resume from S3 the wireless will not connect.
iwlist scan shows my network so I think the wireless card works.
killed NetworkManager as root
restarted NetworkManager& and now wireless connects.

maybe this will help someone
Reply With Quote
  #2 (permalink)  
Old 05-Jul-2009, 13:47
Puzzled Penguin
 
Join Date: Jul 2009
Location: Germany
Posts: 2
quintus22 hasn't been rated much yet
Default Re: no wireless after resume from S3

I see the same problem on my site. The reason is that the dhclient isn't started.
Does anybody know how it should work after resume?
Reply With Quote
  #3 (permalink)  
Old 06-Jul-2009, 09:42
santasemilla's Avatar
Puzzled Penguin
 
Join Date: Aug 2008
Location: Houghton, MI
Posts: 26
santasemilla hasn't been rated much yet
Default Re: no wireless after resume from S3

I was just going to open a thread because of this problem. I have it since last week. The only work around I found was to start my laptop with the wifi switch off, and then turn it on once Suse (11.1) is up an running. I have this problem with KDE & Gnome.

...Any help with this will by much appreciated!
Reply With Quote
  #4 (permalink)  
Old 24-Sep-2009, 03:47
Puzzled Penguin
 
Join Date: Sep 2008
Location: Finland
Posts: 15
Adenozinas hasn't been rated much yet
Default Re: no wireless after resume from S3

Hi,
yap i have the same thing. I resume from sleep or hibernation and i can't connect to wireless although i see networks. Closing and starting KNetworkManager/KDE3 as user does not help. I have to restart to get connected. Can anyone enlighten confused lizards?
Reply With Quote
  #5 (permalink)  
Old 24-Sep-2009, 08:18
Wise Penguin
 
Join Date: Mar 2009
Posts: 1,824
Akoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the rough
Default Re: no wireless after resume from S3

Pm-utils - openSUSE

Either adding the kernel module to the list of "SUSPEND_MODULES" or creating a custom hook which

a) reloads kernel modules

and/or

b) restarts network services

will most likely solve the problem.
__________________
“Never attribute to malice that which can be adequately explained by stupidity.” (R.J. Hanlon)
Reply With Quote
  #6 (permalink)  
Old 23-Oct-2009, 03:20
Puzzled Penguin
 
Join Date: Sep 2008
Location: Finland
Posts: 15
Adenozinas hasn't been rated much yet
Default Re: no wireless after resume from S3

Quote:
Originally Posted by Akoellh View Post
Pm-utils - openSUSE

Either adding the kernel module to the list of "SUSPEND_MODULES" or creating a custom hook which

a) reloads kernel modules

and/or

b) restarts network services

will most likely solve the problem.
thanks for advice.

"adding the kernel module to the list of "SUSPEND_MODULES"" I have no idea how to do it and where? edit hook called modules ?

as for modules reload i post my "50modules" hook that is present in pm-utils, is it enough?
Code:
#!/bin/bash

. /usr/lib/pm-utils/functions

suspend_modules()
{
	[ -z "$SUSPEND_MODULES" ] && return 0
	for x in $SUSPEND_MODULES ; do
		echo "trying to unload: $x"
		modunload $x
	done
	return 0
}

resume_modules()
{
	[ -z "$RESUME_MODULES" ] && return 0
	for x in $RESUME_MODULES ; do
	 	echo "trying to reload: $x"
		modprobe $x
	done
}

case "$1" in
	hibernate|suspend)
		suspend_modules
		;;
	thaw|resume)
		resume_modules
		;;
	*)
		;;
esac

exit $?
and as for restart of network service hook: what number should it be and should it be something like: /etc/rc.d/network restart
I would appreciate your help alot .
A
Reply With Quote
Reply

Bookmarks


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




 

Search Engine Friendly URLs by vBSEO 3.3.0 RC2