Re: Where and (at which step) to place the firmware files

2006-02-21 Thread Khiraly
 It is still the wrong firmware directory.
 Read your distro's documentation on where to put firmware.

I think I have corrected this issue (I have made symlinks
in /usr/lib/hotplug/firmware too).

Now the script says:
buza:/usr/src/linux-2.6.16-rc4/scripts# ./bcm43xx-d80211-sta_up.sh
gcc -O0 -o /tmp/add_sta /tmp/add_sta.c
/tmp/add_sta wlan0 sta0
iwconfig wlan0.11 mode managed
ifconfig wlan0.11 up
ifconfig sta0 hw ether 00:90:4B:56:5B:27
ifconfig sta0 192.168.1.101
ifconfig sta0 up
iwconfig sta0 mode managed
wpa_supplicant -B -Ddscape -ista0 -c/etc/wpa_supplicant.conf
Unsupported driver 'dscape'.
FAILED (255)
buza:/usr/src/linux-2.6.16-rc4/scripts#

I have googled, searched in the mailing list archive, but no result.
I have bcm43xx_d80211 module loaded, no idea why is this error.
The association not working either (I dont need wpa_supplicant btw).
The wpa_supplicant.conf file:
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid=
key_mgmt=NONE
}

I try to recompile the kernel with full debug support. No idea why the
assotiation is not working.

Khiraly

___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: Where and (at which step) to place the firmware files

2006-02-21 Thread Michael Buesch
On Tuesday 21 February 2006 15:50, you wrote:
  It is still the wrong firmware directory.
  Read your distro's documentation on where to put firmware.
 
 I think I have corrected this issue (I have made symlinks
 in /usr/lib/hotplug/firmware too).
 
 Now the script says:
 buza:/usr/src/linux-2.6.16-rc4/scripts# ./bcm43xx-d80211-sta_up.sh
 gcc -O0 -o /tmp/add_sta /tmp/add_sta.c
 /tmp/add_sta wlan0 sta0
 iwconfig wlan0.11 mode managed
 ifconfig wlan0.11 up
 ifconfig sta0 hw ether 00:90:4B:56:5B:27
 ifconfig sta0 192.168.1.101
 ifconfig sta0 up
 iwconfig sta0 mode managed
 wpa_supplicant -B -Ddscape -ista0 -c/etc/wpa_supplicant.conf
 Unsupported driver 'dscape'.
 FAILED (255)

You need to patch dscape. Read the HOWTO:
http://bu3sch.de/git?p=wireless-2.6.git;a=blob;h=6d5384008f944bb9a7ec1650426c6fcfb3e9f6ef;hb=dscape;f=Documentation/networking/bcm43xx-d80211-HOWTO.txt
You can optionally try with -Dwext. That _should_ be supported, too,
without patching. But I did not try this, yet.

-- 
Greetings Michael.


pgpYqvtebXAoB.pgp
Description: PGP signature


Re: Where and (at which step) to place the firmware files

2006-02-21 Thread Michael Buesch
On Tuesday 21 February 2006 16:41, you wrote:
  http://bu3sch.de/git?p=wireless-2.6.git;a=blob;h=6d5384008f944bb9a7ec1650426c6fcfb3e9f6ef;hb=dscape;f=Documentation/networking/bcm43xx-d80211-HOWTO.txt
  You can optionally try with -Dwext. That _should_ be supported, too,
  without patching. But I did not try this, yet.
 
 I just tried and it does not seem to work out of the box.
 So you should patch wpa_supplicant as described in the HOWTO.

Oh, this does not seem to be my day...
I was wrong again.
It really seems to work with -Dwext. It just spews a few error
messages, but works nevertheless.
So I will make wext default, so that people are no longer required
to patch wpa_supplicant.

Sorry for the bandwidth wasting :P

-- 
Greetings Michael.


pgppYX4kMrKIS.pgp
Description: PGP signature


wpa_supplicant and softmac

2006-02-21 Thread Hans Fugal
I know I asked this in that other email that was so long probably nobody
read to the end where the question was, so I apologize for repeating
myself.

Has anyone had success with wpa_supplicant and the softmac stack? Is
this expected to work? When I try to use it, it seems to associate but
fails to recognize it, or perhaps fails to authenticate. Using iwconfig
by hand works fine. I'm using -Dwext

-- 
Hans Fugal ; http://hans.fugal.net
 
There's nothing remarkable about it. All one has to do is hit the 
right keys at the right time and the instrument plays itself.
-- Johann Sebastian Bach


signature.asc
Description: Digital signature


Re: wpa_supplicant and softmac

2006-02-21 Thread Larry Finger

Hans Fugal wrote:

I know I asked this in that other email that was so long probably nobody
read to the end where the question was, so I apologize for repeating
myself.

Has anyone had success with wpa_supplicant and the softmac stack? Is
this expected to work? When I try to use it, it seems to associate but
fails to recognize it, or perhaps fails to authenticate. Using iwconfig
by hand works fine. I'm using -Dwext



Yes, I use wpa_supplicant with the wext interface and the softmac stack. I use SuSE 10.0 and the 
interface is configured automatically with the script in /etc/sysconfig/network/ifcfg-wlan0 that has 
the following contents:


BOOTPROTO='dhcp'
BROADCAST=''
IPADDR=''
MTU=''
NAME='Ethernet Network Card'
NETMASK=''
NETWORK=''
REMOTE_IPADDR=''
STARTMODE='auto'
USERCONTROL='no'
WIRELESS_AP=''
WIRELESS_AUTH_MODE='psk'
WIRELESS_BITRATE='auto'
WIRELESS_CA_CERT=''
WIRELESS_CHANNEL=''
WIRELESS_CLIENT_CERT=''
WIRELESS_DEFAULT_KEY='0'
WIRELESS_ESSID='my essid'
WIRELESS_FREQUENCY=''
WIRELESS_KEY=''
WIRELESS_KEY_0=''
WIRELESS_KEY_1=''
WIRELESS_KEY_2=''
WIRELESS_KEY_3=''
WIRELESS_KEY_LENGTH='128'
WIRELESS_MODE='Managed'
WIRELESS_NICK=''
WIRELESS_NWID=''
WIRELESS_POWER='yes'
WIRELESS_WPA_IDENTITY=''
WIRELESS_WPA_PASSWORD=''
WIRELESS_WPA_PSK='my psk secret'
_nm_name='static-0'

I also added the line 'alias   wlan0   bcm43xx' to /etc/modprobe.conf.local.

Larry

___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: kismet trouble

2006-02-21 Thread Stefano Brivio
On Tue, 21 Feb 2006 19:50:45 +0100
Khiraly [EMAIL PROTECTED] wrote:

 If somebody has any ideas please inform me.

Kismet just supports the softmac version of this driver.


--
ciao
st3
___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: kismet trouble

2006-02-21 Thread Khiraly
  If somebody has any ideas please inform me.
 
 Kismet just supports the softmac version of this driver.

Hmm. Thx for the hint!
I have installed kismet from svn, with no success.
There is bcm43xx driver inside, but the error message is the same as
with the hostap driver.

FATAL: pcap reported netlink type 1 (EN10MB) for sta0.  This probably
means you're not in RFMON mode or your drivers are reporting a bad
value.  Make sure you have the correct drivers and that entering monitor
mode succeeded.

I will recompile my kernel also. Where can I read which advantage has
the dscape version (apart from full wpa-psk support)?

Khiraly

___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: kismet trouble

2006-02-21 Thread Andrea Lusuardi - UoVoBW
On Tue, 21 Feb 2006 19:50:45 +0100
Khiraly [EMAIL PROTECTED] wrote:

 Hi!
 
 Thx for the helps, Im writing this email through my wireless network.

For kismet:
i have downloaded the kismet-devel version through svn:

svn co http://svn.kismetwireless.net/code/trunk kismet-devel

then i configured, compiled and installed it:

cd kismet-devel
./configure --enable-bcm43xx
make dep
make -j2
make install
$EDITOR /usr/local/etc/kismet.conf

change the lines:

suiduser=YOURUSER
source=bcm43xx,eth1,airport

and EVERYTHING just works.
Take a look in the archive for a post explaining the injection
problems, and here you are!

bye

-- 
 Andrea Lusuardi aka UoVoBW 
Registered Linux User #364578
 http://uovobw.homelinux.org
 There's no place I can be
   Since I found Serenity
But you can't take the sky from me
___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: kismet trouble

2006-02-21 Thread Stefano Brivio
On Tue, 21 Feb 2006 22:05:40 +0100
Khiraly [EMAIL PROTECTED] wrote:

 I will recompile my kernel also. Where can I read which advantage has
 the dscape version (apart from full wpa-psk support)?

It supports virtual interfaces, full WPA support, automatic setting of
bitrate depending on link quality. WPA-PSK is supported by softmac too.


--
ciao
st3
___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: Where to get the firmware ?

2006-02-21 Thread Keywan Najafi Tonekaboni
Hi,

Am Dienstag, den 21.02.2006, 23:54 +0100 schrieb Francois Barre:
 Could someone be kind enough to point me where to download ppc
 firmwares from the net ? I can find no clue, and I have (of course) no
 Mac OSX installed on my poor little Mac Mini.

You can also download the driver for windows and extract the firmware
from the win/i386. The firmware didn't depends on the processor
architecture, because it is used by the chip.

A friend give me this link and told me he extract the firmware from this
linux-closed source driver (I guess this).

http://openwrt.inf.fh-brs.de/~nbd/wl_apsta.o

Regards,

Keywan

-- 
Keywan Najafi Tonekaboni
http://www.prometoys.net
PGP Fingerprint: D5A1 A22E 3758 C9B4 57D2  3CAF EE52 1A78 C6A0 6934

[EMAIL PROTECTED]:/# apt-get --purge remove dominion
After unpacking world will be freed.
You are about to do something potentially beneficial
To continue type in the phrase 'Yes, do as We say!'


___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


New BCM 0x4312

2006-02-21 Thread Edgar Hucek
Hi.

When you have a new chip, how do you find out which Core is for what ?

I have the following Cores on my Chip, i hope ;)

bcm43xx: Chip ID 0x4312, rev 0x0
bcm43xx: Number of cores: 4
bcm43xx: Core 0: ID 0x900, rev 0x1, vendor 0x4243, enabled
bcm43xx: Unknown core found (ID 0x900)
bcm43xx: Core 1: ID 0x812, rev 0xa, vendor 0x4243, enabled
bcm43xx: Core 2: ID 0x817, rev 0x3, vendor 0x4243, disabled
bcm43xx: Unknown core found (ID 0x817)
bcm43xx: Unknown core found (ID 0x820)

thx

ED.
___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev


Re: Where to get the firmware ?

2006-02-21 Thread Francois Barre
2006/2/22, Keywan Najafi Tonekaboni [EMAIL PROTECTED]:
 Hi,

 Am Dienstag, den 21.02.2006, 23:54 +0100 schrieb Francois Barre:
  Could someone be kind enough to point me where to download ppc
  firmwares from the net ? I can find no clue, and I have (of course) no
  Mac OSX installed on my poor little Mac Mini.

 You can also download the driver for windows and extract the firmware
 from the win/i386. The firmware didn't depends on the processor
 architecture, because it is used by the chip.

 A friend give me this link and told me he extract the firmware from this
 linux-closed source driver (I guess this).

 http://openwrt.inf.fh-brs.de/~nbd/wl_apsta.o

 Regards,

 Keywan

Thanks Keywan !
Works great, just ou of the box !
Thank you very much...
___
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
http://lists.berlios.de/mailman/listinfo/bcm43xx-dev