


Oh sorry, I thought you already bought ityoda@gentoo wrote:no, i have to buy it first.
But i think it will work, when the USB Ports will work on my xbox

Code: Select all
# modprobe <driver_name>Code: Select all
# echo "driver_name" >> /etc/modules.autoload.d/kernel-2.X
# modules-update

Code: Select all
#emerge zd1211

It it recommended that if you use a kernel minor to 2.6.23 you should build zd1211rw as a module "[...] as otherwise the driver may try to upload firmware before the filesystem is up."uno83 wrote:Device Drivers --->
Network device support --->
Wireless LAN --->
[*] Wireless LAN (IEEE 802.11)
<*> ZyDAS ZD1211/ZD1211B USB-wireless support

Code: Select all
# lsusb
Bus 001 Device 003: ID 0ace:1211 ZyDAS 802.11b/g USB2 WiFiCode: Select all
# grep ZD1211RW /usr/src/linux/.config
CONFIG_ZD1211RW=m
# CONFIG_ZD1211RW_DEBUG is not setCode: Select all
# lsmod
Module Size Used by
zd1211rw 46596 0Code: Select all
# dmesg | grep zd1211rw
zd1211rw 1-2:1.0: firmware version 4605
zd1211rw 1-2:1.0: zd1211 chip 0ace:1211 v4802 high 00-02-72 AL2230_RF pa0 -----
zd1211rw 1-2:1.0: eth1
usbcore: registered new interface driver zd1211rwCode: Select all
# cat /etc/conf.d/net
hotplug_eth0="yes"
config_eth0=( "192.168.1.101/24" )
routes_eth0=( "default gw 192.168.1.1" )
# wireless (eth2)
modules=( "wpa_supplicant" )
wpa_supplicant_eth2="-Dwext -c /etc/wpa_supplicant/wpa_supplicant.conf"
iwconfig_eth2="mode managed"
config_eth2=( "dhcp" )Code: Select all
# cat /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
ap_scan=1
network={
ssid="UAB"
key_mgmt=NONE
priority=1
}Code: Select all
# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0B:6A:4F:FF:0D
inet addr:192.168.1.101 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:478 errors:0 dropped:0 overruns:0 frame:0
TX packets:599 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:248418 (242.5 Kb) TX bytes:60701 (59.2 Kb)
Interrupt:17 Base address:0xd400
eth2 Link encap:Ethernet HWaddr 00:02:72:4E:10:65
inet addr:192.168.1.110 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:131 errors:26 dropped:39 overruns:0 frame:26
TX packets:46 errors:2 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:17670 (17.2 Kb) TX bytes:2511 (2.4 Kb)