I have been trying to configure a pair of wireless cards (both mini-pci Atheros cards) on a Wrap-2E board, using an up to date kamikaze.

I find the existing docs confusing, partly because there are no examples of configured wireless cards in both /etc/config/wireless and the corresponding /etc/config/network.  Additionally there are some routes I want to establish across one of the wireless cards and the ethernet port.

/etc/config/wireless looks like:-
<<<<<<<<<<<<
config wifi-device      "wifi0"
        option type     "atheros"
        option mode     "11b"
        option country  "826"
        option channel  "10"

config wifi-iface
        option device   "wifi0"
        option network  "wan0"
        option mode     "adhoc"
        option ssid     "Linkchoose-1.013-014"
        option hidden   "0"
        option encryption "none"

config wifi-device      "wifi1"
        option type     "atheros"
        option mode     "11b"
        option country  "826"
        option channel  "13"

config wifi-iface
        option device   "wifi1"
        option network  "wan1"
        option mode     "ap"
        option ssid     "Linkchoose-Chilton"
        option hidden   "0"
        option encryption "none"
<<<<<<<<<<<<<<

and the corresponding /etc/config/network looks like:-
<<<<<<<<<<<<
# Copyright (C) 2006 OpenWrt.org

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 proto    "static"
        option ipaddr   "172.16.0.254"
        option netmask  "255.255.255.0"

config interface        "wan0"
        option proto    "static"
        option ipaddr   "10.100.1.14"
        option netmask  "255.255.255.252"

config interface        "wan1"
        option proto    "static"
        option ipaddr   "10.101.2.254"
        option netmask  "255.255.255.0"

config route
        option interface "wan0"
        option target   "10.100.1.1"
        option gateway  "10.100.1.13"

config route
        option interface "lan"
        option target   "10.100.1.34"
        option gateway  "10.100.1.26"
<<<<<<<<<<<<<<<<

But after boot ip addr gives:-

1: lo: <LOOPBACK> mtu 16436 qdisc noop
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop qlen 1000
    link/ether 00:0d:b9:06:70:1c brd ff:ff:ff:ff:ff:ff
3: wifi0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast qlen 199
    link/ieee802.11 00:02:6f:43:c4:16 brd ff:ff:ff:ff:ff:ff
4: wifi1: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast qlen 199
    link/ieee802.11 00:02:6f:43:19:2b brd ff:ff:ff:ff:ff:ff
5: ath0: <BROADCAST,MULTICAST> mtu 1500 qdisc noqueue
    link/ether 00:02:6f:43:c4:16 brd ff:ff:ff:ff:ff:ff
6: ath1: <BROADCAST,MULTICAST> mtu 1500 qdisc noqueue
    link/ether 00:02:6f:43:19:2b brd ff:ff:ff:ff:ff:ff

which does not seem to suggest that any of the addresses have been set.

Any ideas?