Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-03-20 Thread PradeepGurumath

Hi all,

We have tried  lshal | grep net, but it does not show our WiFi interface -
implying that HAL is not yet aware of our interface.

Now our questions:
1) How do we make our WiFi interface visible to HAL?
2) How HAL identifies various interfaces in the system ?
3) What are the entries in platform_device which are responsible for
exporting an interface to HAL?
More specifically, is probe function responsible in anyway, to make the
interface visible to HAL?

thanks and regards,
Pradeep.



Patryk Zawadzki wrote:
 
 On Thu, Jan 8, 2009 at 10:46 AM, Pradeep Gurumath
 pradeepgurum...@gmail.com wrote:
 Hi all,

 We are integrating Wireless LAN driver with GNOME on a customer
 proprietary
 board.

 The issue we are facing is that our network interface (WLAN) does not
 appear
 in the GNOME-NetworkManager Applet.

 We need to identify, configure and connect to various network interfaces
 available in the system - in particular, the WLAN interface.
 However the GNOME-NetworkManager (version 0.7) fails to recognise the
 available network interfaces.
 
 What does the following command return?
 
 lshal | grep net
 
 -- 
 Patryk Zawadzki
 ___
 NetworkManager-list mailing list
 NetworkManager-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/networkmanager-list
 
 

-- 
View this message in context: 
http://www.nabble.com/GNOME-NetworkManager-fails-to-recognise-WLAN-Interface-tp21348701p22618728.html
Sent from the Gnome - NetworkManager mailing list archive at Nabble.com.

___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Pradeep Gurumath
Hi all,

We are integrating Wireless LAN driver with GNOME on a customer proprietary
board.

The issue we are facing is that our network interface (WLAN) does not appear
in the GNOME-NetworkManager Applet.

We need to identify, configure and connect to various network interfaces
available in the system - in particular, the WLAN interface.
However the GNOME-NetworkManager (*version 0.7*) fails to recognise the
available network interfaces.
As a result, when we click on the nw interfaces icon on the top right corner
of the screen, the nw Interfaces are not being shown.
As soon as the NetworkManager applet comes up during the boot, we get the
following warning,

*** (nm-applet:2760): WARNING **: No connections defined*
*** (nm-applet:2760): WARNING **: No networks found in the configuration
database
*
Meanwhile, when we try running the command 'ifconfig', it shows all the
available NW Interfaces including the WLAN interface.
We are even able to configure, connect and browse the web (using both wget
and web2) using the Command Line Interface. So we are sure that the
available wireless NW Interface is working properly. With this, we even rule
out the possibility of wpa_supplicant being the source of the problem.

Few of the things we have tried so far
1) Changed the /etc/network/interface to include our WLAN interface.
2) Made the WLAN interface up before even the NetworkManager applet is
started.
3) Restarted the NetworkManager applet to force it to refresh the nw
interface list.
4) Restarted the default wpa_supplicant to see if it helps the matter.

We want to know if we are missing some sort of configuration in any init
scripts which feeds the NetworkManager as to where to pick up the NW
interfaces from.

If anybody has worked on the GNOME-Network Manager earlier or has a clue
about this, kindly share with us.

thanks,
pradeep.
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Patryk Zawadzki
On Thu, Jan 8, 2009 at 10:46 AM, Pradeep Gurumath
pradeepgurum...@gmail.com wrote:
 Hi all,

 We are integrating Wireless LAN driver with GNOME on a customer proprietary
 board.

 The issue we are facing is that our network interface (WLAN) does not appear
 in the GNOME-NetworkManager Applet.

 We need to identify, configure and connect to various network interfaces
 available in the system - in particular, the WLAN interface.
 However the GNOME-NetworkManager (version 0.7) fails to recognise the
 available network interfaces.

What does the following command return?

lshal | grep net

-- 
Patryk Zawadzki
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Tambet Ingo
On Thu, Jan 8, 2009 at 11:46, Pradeep Gurumath
pradeepgurum...@gmail.com wrote:
 We are integrating Wireless LAN driver with GNOME on a customer proprietary
 board.

 The issue we are facing is that our network interface (WLAN) does not appear
 in the GNOME-NetworkManager Applet.

 We need to identify, configure and connect to various network interfaces
 available in the system - in particular, the WLAN interface.
 However the GNOME-NetworkManager (version 0.7) fails to recognise the
 available network interfaces.
 As a result, when we click on the nw interfaces icon on the top right corner
 of the screen, the nw Interfaces are not being shown.
 As soon as the NetworkManager applet comes up during the boot, we get the
 following warning,
 ** (nm-applet:2760): WARNING **: No connections defined
 ** (nm-applet:2760): WARNING **: No networks found in the configuration
 database
 Meanwhile, when we try running the command 'ifconfig', it shows all the
 available NW Interfaces including the WLAN interface.
 We are even able to configure, connect and browse the web (using both wget
 and web2) using the Command Line Interface. So we are sure that the
 available wireless NW Interface is working properly. With this, we even rule
 out the possibility of wpa_supplicant being the source of the problem.

 Few of the things we have tried so far
 1) Changed the /etc/network/interface to include our WLAN interface.
 2) Made the WLAN interface up before even the NetworkManager applet is
 started.
 3) Restarted the NetworkManager applet to force it to refresh the nw
 interface list.
 4) Restarted the default wpa_supplicant to see if it helps the matter.

 We want to know if we are missing some sort of configuration in any init
 scripts which feeds the NetworkManager as to where to pick up the NW
 interfaces from.

 If anybody has worked on the GNOME-Network Manager earlier or has a clue
 about this, kindly share with us.

nm-applet is a frontend for NetworkManager daemon and presents the
information from NM. NetworkManager uses HAL to get it's devices. It
looks for HAL UDIs which' info.capability property has string
net.80211 (wifi) or net.80203 (ethernet).

So if a device is missing from NM, first make sure HAL recognizes the
device as a network device.

Tambet
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list