diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2009-07-21 14:23:05 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2009-07-21 14:23:05 +0000 |
commit | 19ec97d913abda4af6d9d2b97ca3e0203b73dfec (patch) | |
tree | 4254f12581ae7e08dd2a84b3d546835153ff6bdf /sys/modules | |
parent | 2620dac06ec3949e6c517cf5e2dcc10bd0a5a85d (diff) | |
download | FreeBSD-src-19ec97d913abda4af6d9d2b97ca3e0203b73dfec.zip FreeBSD-src-19ec97d913abda4af6d9d2b97ca3e0203b73dfec.tar.gz |
Enable mesh support.
Submitted by: jkim
Approved by: re (kib)
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/wlan/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/modules/wlan/Makefile b/sys/modules/wlan/Makefile index 7ae7e25..ce7a3f7 100644 --- a/sys/modules/wlan/Makefile +++ b/sys/modules/wlan/Makefile @@ -6,11 +6,11 @@ KMOD= wlan SRCS= ieee80211.c ieee80211_action.c ieee80211_ageq.c \ ieee80211_crypto.c ieee80211_crypto_none.c ieee80211_dfs.c \ ieee80211_freebsd.c ieee80211_input.c ieee80211_ioctl.c \ - ieee80211_node.c ieee80211_output.c ieee80211_phy.c ieee80211_power.c \ - ieee80211_proto.c ieee80211_scan.c ieee80211_scan_sta.c \ - ieee80211_radiotap.c ieee80211_regdomain.c ieee80211_ht.c \ - ieee80211_adhoc.c ieee80211_hostap.c ieee80211_monitor.c \ - ieee80211_sta.c ieee80211_wds.c ieee80211_ddb.c + ieee80211_mesh.c ieee80211_node.c ieee80211_output.c ieee80211_phy.c \ + ieee80211_power.c ieee80211_proto.c ieee80211_scan.c \ + ieee80211_scan_sta.c ieee80211_radiotap.c ieee80211_regdomain.c \ + ieee80211_ht.c ieee80211_hwmp.c ieee80211_adhoc.c ieee80211_hostap.c \ + ieee80211_monitor.c ieee80211_sta.c ieee80211_wds.c ieee80211_ddb.c SRCS+= bus_if.h device_if.h opt_inet.h opt_inet6.h opt_ipx.h opt_wlan.h \ opt_ddb.h @@ -18,6 +18,7 @@ SRCS+= bus_if.h device_if.h opt_inet.h opt_inet6.h opt_ipx.h opt_wlan.h \ opt_wlan.h: echo "#define IEEE80211_DEBUG 1" > ${.TARGET} echo "#define IEEE80211_AMDPU_AGE 1" >> ${.TARGET} + echo "#define IEEE80211_SUPPORT_MESH 1" >> ${.TARGET} opt_inet.h: echo "#define INET 1" > ${.TARGET} opt_ipx.h: |