diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2013-11-11 21:57:26 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2013-11-11 21:57:26 +0000 |
commit | 8f00f8f0484fad506055670480b78bef9e43b05a (patch) | |
tree | af5860eb0a002e32a6c54795928949dd00e48d2f /package/kernel/broadcom-wl/patches | |
parent | 0ae198695f5454864d933a3b452c9fbef2e30ca1 (diff) | |
download | upstream-8f00f8f0484fad506055670480b78bef9e43b05a.tar.gz upstream-8f00f8f0484fad506055670480b78bef9e43b05a.tar.bz2 upstream-8f00f8f0484fad506055670480b78bef9e43b05a.zip |
broadcom-wl: change interface names
'netifd' treats all devices with a "." in their name as vlan devices.
Modify the name of virtual/WDS interfaces created by broadcom-wl to use
a "-" instead of a ".", so they will be treated as simple devices
by 'netifd'.
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38748 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/broadcom-wl/patches')
-rw-r--r-- | package/kernel/broadcom-wl/patches/013-interface-name.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/kernel/broadcom-wl/patches/013-interface-name.patch b/package/kernel/broadcom-wl/patches/013-interface-name.patch new file mode 100644 index 0000000000..3a136de037 --- /dev/null +++ b/package/kernel/broadcom-wl/patches/013-interface-name.patch @@ -0,0 +1,11 @@ +--- a/driver/wl_linux.c ++++ b/driver/wl_linux.c +@@ -1556,7 +1556,7 @@ wl_add_if(wl_info_t *wl, struct wlc_if* + + wl_if_setup(wlif->dev); + +- sprintf(wlif->dev->name, "%s%d.%d", devname, wl->pub->unit, wlif->subunit); ++ sprintf(wlif->dev->name, "%s%d-%d", devname, wl->pub->unit, wlif->subunit); + if (remote) + bcopy(remote, &wlif->remote, ETHER_ADDR_LEN); + |