├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Makefile ├── README.md ├── dkms.conf ├── lib ├── LICENSE.txt └── wlc_hybrid.o_shipped └── src ├── common └── include │ └── proto │ ├── 802.11.h │ ├── 802.1d.h │ ├── bcmeth.h │ ├── bcmevent.h │ ├── bcmip.h │ ├── ethernet.h │ ├── ieee80211_radiotap.h │ └── wpa.h ├── include ├── bcmcrypto │ └── tkhash.h ├── bcmdefs.h ├── bcmendian.h ├── bcmutils.h ├── epivers.h ├── linux_osl.h ├── linuxver.h ├── osl.h ├── packed_section_end.h ├── packed_section_start.h ├── pcicfg.h ├── siutils.h ├── typedefs.h └── wlioctl.h ├── shared ├── bcmwifi │ └── include │ │ ├── bcmwifi_channels.h │ │ └── bcmwifi_rates.h └── linux_osl.c └── wl └── sys ├── wl_cfg80211_hybrid.c ├── wl_cfg80211_hybrid.h ├── wl_dbg.h ├── wl_export.h ├── wl_iw.c ├── wl_iw.h ├── wl_linux.c ├── wl_linux.h ├── wlc_ethereal.h ├── wlc_key.h ├── wlc_pub.h ├── wlc_types.h ├── wlc_utils.h └── wlc_wowl.h /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/README.md -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/dkms.conf -------------------------------------------------------------------------------- /lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/lib/LICENSE.txt -------------------------------------------------------------------------------- /lib/wlc_hybrid.o_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/lib/wlc_hybrid.o_shipped -------------------------------------------------------------------------------- /src/common/include/proto/802.11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/802.11.h -------------------------------------------------------------------------------- /src/common/include/proto/802.1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/802.1d.h -------------------------------------------------------------------------------- /src/common/include/proto/bcmeth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/bcmeth.h -------------------------------------------------------------------------------- /src/common/include/proto/bcmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/bcmevent.h -------------------------------------------------------------------------------- /src/common/include/proto/bcmip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/bcmip.h -------------------------------------------------------------------------------- /src/common/include/proto/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/ethernet.h -------------------------------------------------------------------------------- /src/common/include/proto/ieee80211_radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/ieee80211_radiotap.h -------------------------------------------------------------------------------- /src/common/include/proto/wpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/common/include/proto/wpa.h -------------------------------------------------------------------------------- /src/include/bcmcrypto/tkhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/bcmcrypto/tkhash.h -------------------------------------------------------------------------------- /src/include/bcmdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/bcmdefs.h -------------------------------------------------------------------------------- /src/include/bcmendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/bcmendian.h -------------------------------------------------------------------------------- /src/include/bcmutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/bcmutils.h -------------------------------------------------------------------------------- /src/include/epivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/epivers.h -------------------------------------------------------------------------------- /src/include/linux_osl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/linux_osl.h -------------------------------------------------------------------------------- /src/include/linuxver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/linuxver.h -------------------------------------------------------------------------------- /src/include/osl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/osl.h -------------------------------------------------------------------------------- /src/include/packed_section_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/packed_section_end.h -------------------------------------------------------------------------------- /src/include/packed_section_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/packed_section_start.h -------------------------------------------------------------------------------- /src/include/pcicfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/pcicfg.h -------------------------------------------------------------------------------- /src/include/siutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/siutils.h -------------------------------------------------------------------------------- /src/include/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/typedefs.h -------------------------------------------------------------------------------- /src/include/wlioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/include/wlioctl.h -------------------------------------------------------------------------------- /src/shared/bcmwifi/include/bcmwifi_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/shared/bcmwifi/include/bcmwifi_channels.h -------------------------------------------------------------------------------- /src/shared/bcmwifi/include/bcmwifi_rates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/shared/bcmwifi/include/bcmwifi_rates.h -------------------------------------------------------------------------------- /src/shared/linux_osl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/shared/linux_osl.c -------------------------------------------------------------------------------- /src/wl/sys/wl_cfg80211_hybrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_cfg80211_hybrid.c -------------------------------------------------------------------------------- /src/wl/sys/wl_cfg80211_hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_cfg80211_hybrid.h -------------------------------------------------------------------------------- /src/wl/sys/wl_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_dbg.h -------------------------------------------------------------------------------- /src/wl/sys/wl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_export.h -------------------------------------------------------------------------------- /src/wl/sys/wl_iw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_iw.c -------------------------------------------------------------------------------- /src/wl/sys/wl_iw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_iw.h -------------------------------------------------------------------------------- /src/wl/sys/wl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_linux.c -------------------------------------------------------------------------------- /src/wl/sys/wl_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wl_linux.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_ethereal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_ethereal.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_key.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_pub.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_types.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_utils.h -------------------------------------------------------------------------------- /src/wl/sys/wlc_wowl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineco/broadcom-wl/HEAD/src/wl/sys/wlc_wowl.h --------------------------------------------------------------------------------