Hi, I'm trying to get wireless working with arch linux arm on my rasberry pi board, but not yet succefull
After plug wireless usb device and a ifconfig wlan0 up I get this
$this->bbcode_second_pass_code('', '
[ 1253.390543] r8712u: DriverVersion: v7_0.20100831
[ 1253.390673] r8712u: register rtl8712_netdev_ops to netdev_ops
[ 1253.390699] r8712u: USB_SPEED_HIGH with 4 endpoints
[ 1253.392179] r8712u: Boot from EFUSE: Autoload OK
[ 1254.181279] r8712u: CustomerID = 0x0000
[ 1254.181311] r8712u: MAC Address from efuse = cc:cc:bb:bb:aa:aa
[ 1308.467416] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin"
[ 1309.175699] r8712u: 1 RCR=0x153f00e
[ 1309.176559] r8712u: 2 RCR=0x553f00e
[ 1309.285793] ADDRCONF(NETDEV_UP): wlan0: link is not ready
')
Seems driver is loaded ok and ready, but the problem is that there is no /etc/network/interfaces file for configuration
I have this configuration on /etc/network/interfaces that worked in wheezy distro
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
wpa-driver wext
wpa-ssid ap_name
wpa-ap-scan 1
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-key-mgmt WPA-PSK
wpa-psk keykeykey
But where can I put this configuration on archlinux if there is no /etc/network/interfaces file?
Regards