Il mio problema era che non riuscivo a trovare una spiegazione sui comandi da dare per installare dei driver...ne ho fatte di ricerche, ma non ho mai trovato queste informazioni!
Comunque grazie al tuo aiuto ho trovato quello che cercavo...
ho scaricato questo pacchetto hybrid-portsrc-x86_32-v5_10_91_9.tar.gz e seguito questi passaggi
On the target machine, setup the source/hybrid/build directory
1. Create a new directory: mkdir hybrid_wl
2. Go to that directory: cd hybrid_wl
3. Untar the appropriate 32/64 bit file
to that directory
32 bit: tar -xzf <path>/hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
After untar'ing you should have a src and lib sub directory plus a Linux
2.6 "kbuild" external makefile (Makefile). The lib sub directory has the pre-built
binary, wlc_hybrid.o_shipped.
You use the standard Linux 2.6 kernel build system as follows to make a Linux loadable
kernel module (LKM):
On the target machine, and cd'ed to the directory that contains the Makefile (fragment)
4. Cleanup (optional): make -C /lib/modules/<2.6.xx.xx>/build M=`pwd` clean
5. Build the LKM, i.e. wl.ko: make -C /lib/modules/<2.6.xx.xx>/build M=`pwd`
al posto di pwd ho messo il percorso del file makefile all'interno della directory hybrid_wl
You should now have a LKM, wl.ko inside this directory.
On this or a machine with the same kernel version, install the driver.
1. Validate you don't have loaded (or built into the kernel) the Linux community provided
driver for Broadcom hardware. This exists in two forms: either "bcm43xx" or a split form
of "b43" plus "b43legacy". If these modules were loaded you would either
a) rmmod bcm43xx or
b) rmmod b43; rmmod b43legacy
tutti e 3 non erano presenti
1a. Validate you don't have a older wl.ko driver loaded from previous install.
If the module exist, remove it and replace with new driver:
a) rmmod wl.ko
non era presente
2. Replacing existing driver with wl.ko just build in step 5 above.
(most likely path to find wl.ko is: /lib/modules/<kernel_version>/kernel/driver/net/wireless
or /lib/modules/<kernel_version>/kernel.net/update/)
ho copiato il file wl.ko dalla directory hybrid_wl a /lib/modules/<kernel_version>/kernel/drivers/net/wireless perchè l'altro percorso non esisteva
3. depmod
fin qui tutto ok
4. modprobe wl
Quando lancio il comando "modprobe wl" da /lib/modules/<kernel_version>/kernel/drivers/net/wireless mi scrive
FATAL: Module wl not found
Ho sbagliato qualcosa? Cosa devo fare?
Sono riuscito a risolovere...
ho copiato il file wl.ko nella directory /lib/modules/2.6.27.7-smp/kernel/net/wireless
ho dato i comandi
depmod e modprobe wl
adesso la rileva come eth1