Hi, I have built an x86_64 Arch version of Openwrt.
my base hardware is;
Intel Celeron J1900 CPU
8GB RAM
USB pen boot drive (for development)
3 x GbE NIC (Intel i211)
Several Wifi cards tested;
Intel 6205 (mPCIe)
Intel 7260 (mPCIe)
Ralink RT5390 (mPCIe)
Ralink RT5370 (USB)
Ralink RT2890 (mPCIe)
Besides the Intel 7260 if have been able to get all of the above cards to function at 802.11g
Reference the 7260, I would love to get this working but so far no joy, I have made the modifications suggested here, https://forum.openwrt.org/viewtopic.php?id=54488 but the card is shown in lspci but the drivers are not loaded? any help here would be really appreciated.
For all of the other cards, I can get them to work but as soon as I enable htmode in /etc/config/wireless the wlan0 disappears from the list in ifconfig and the network dies.
/etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option channel '1'
option hwmode '11g'
option path 'pci0000:00/0000:00:1c.1/0000:02:00.0'
option txpower '20'
option country '00'
config wifi-iface
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt'
option encryption 'none'
/etc/config/network
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config interface 'lan'
option ifname 'eth0'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.0.100'
option netmask '255.255.255.0'
option gateway '192.168.0.1'
option dns '8.8.8.8'
option ip6assign '60'
#config interface 'wan'
# option ifname 'eth0'
# option proto 'dhcp'
config globals 'globals'
option ula_prefix 'fdd2:4b06:4dd7::/48'
my thinking is that there is something I have set incorrectly in the build that has disabled HT (802.11n) so when I enable it in the config file it cannot function, but this is a total guess.
I have been working on this for several weeks now and this is my final problem to fix.
Any pointers would be really appreciated, I am sure it is just me being a bit thick and apologies if this is covered somewhere else I have searched for an answer but cannot find one.
thanks..