gitextract_ar0ye5qg/ ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.clean ├── Makefile.inc ├── README.md ├── build.sh ├── config.mk ├── doc/ │ ├── History.txt │ ├── README_STA_usb │ ├── ReadMe.txt │ ├── iwpriv_usage.txt │ ├── sta_ate_iwpriv_usage.txt │ └── wps_iwpriv_usage.txt ├── info.sh ├── load.sh ├── miwifi_build.sh ├── miwifi_work.sh ├── src/ │ ├── Module.symvers │ ├── ap/ │ │ ├── ap.c │ │ ├── ap_apcli_inf.c │ │ ├── ap_assoc.c │ │ ├── ap_auth.c │ │ ├── ap_autoChSel.c │ │ ├── ap_cfg.c │ │ ├── ap_connect.c │ │ ├── ap_data.c │ │ ├── ap_dls.c │ │ ├── ap_ftkd.c │ │ ├── ap_ids.c │ │ ├── ap_mbss.c │ │ ├── ap_mbss_inf.c │ │ ├── ap_mlme.c │ │ ├── ap_qload.c │ │ ├── ap_sanity.c │ │ ├── ap_sync.c │ │ └── ap_wpa.c │ ├── ate/ │ │ ├── chips/ │ │ │ ├── mt7601_ate.c │ │ │ ├── rt28xx_ate.c │ │ │ ├── rt30xx_ate.c │ │ │ ├── rt33xx_ate.c │ │ │ └── rt5390_ate.c │ │ ├── common/ │ │ │ ├── ate_usb.c │ │ │ ├── rt_ate.c │ │ │ └── rt_qa.c │ │ └── include/ │ │ ├── rt_ate.h │ │ └── rt_qa.h │ ├── chips/ │ │ ├── mt7601.c │ │ └── rtmp_chip.c │ ├── common/ │ │ ├── action.c │ │ ├── ba_action.c │ │ ├── client_wds.c │ │ ├── cmm_aes.c │ │ ├── cmm_asic.c │ │ ├── cmm_cfg.c │ │ ├── cmm_cmd.c │ │ ├── cmm_cs.c │ │ ├── cmm_data.c │ │ ├── cmm_data_usb.c │ │ ├── cmm_dfs.c │ │ ├── cmm_info.c │ │ ├── cmm_mac_usb.c │ │ ├── cmm_mat.c │ │ ├── cmm_mat_iparp.c │ │ ├── cmm_mat_ipv6.c │ │ ├── cmm_mat_pppoe.c │ │ ├── cmm_profile.c │ │ ├── cmm_radar.c │ │ ├── cmm_sanity.c │ │ ├── cmm_sync.c │ │ ├── cmm_tkip.c │ │ ├── cmm_video.c │ │ ├── cmm_wep.c │ │ ├── cmm_wpa.c │ │ ├── cmm_wpa_adhoc.c │ │ ├── crypt_aes.c │ │ ├── crypt_arc4.c │ │ ├── crypt_biginteger.c │ │ ├── crypt_dh.c │ │ ├── crypt_hmac.c │ │ ├── crypt_md5.c │ │ ├── crypt_sha2.c │ │ ├── ee_efuse.c │ │ ├── ee_prom.c │ │ ├── eeprom.c │ │ ├── frq_cal.c │ │ ├── igmp_snoop.c │ │ ├── misc.c │ │ ├── mlme.c │ │ ├── multi_channel.c │ │ ├── netif_block.c │ │ ├── p2p.c │ │ ├── p2p_action.c │ │ ├── p2p_cfg.c │ │ ├── p2p_ctrl.c │ │ ├── p2p_dbg.c │ │ ├── p2p_disc_mng.c │ │ ├── p2p_inf.c │ │ ├── p2p_nego_mng.c │ │ ├── p2p_packet.c │ │ ├── p2p_table.c │ │ ├── ps.c │ │ ├── rt2860.bin.dfs │ │ ├── rt2860.bin.old │ │ ├── rt_channel.c │ │ ├── rt_os_util.c │ │ ├── rt_rf.c │ │ ├── rtmp_init.c │ │ ├── rtmp_init_inf.c │ │ ├── rtmp_timer.c │ │ ├── rtusb_bulk.c │ │ ├── rtusb_data.c │ │ ├── rtusb_dev_id.c │ │ ├── rtusb_io.c │ │ ├── scan.c │ │ ├── spectrum.c │ │ ├── txpower.c │ │ ├── uapsd.c │ │ ├── vht.c │ │ ├── wapi.c │ │ ├── wfd.c │ │ ├── wsc.c │ │ ├── wsc_tlv.c │ │ ├── wsc_ufd.c │ │ └── wsc_v2.c │ ├── include/ │ │ ├── action.h │ │ ├── ags.h │ │ ├── ap.h │ │ ├── ap_apcli.h │ │ ├── ap_autoChSel.h │ │ ├── ap_autoChSel_cmm.h │ │ ├── ap_cfg.h │ │ ├── ap_diversity.h │ │ ├── ap_ids.h │ │ ├── ap_mbss.h │ │ ├── br_ftph.h │ │ ├── cfg80211.h │ │ ├── cfg80211extr.h │ │ ├── chip/ │ │ │ ├── chip_id.h │ │ │ ├── mt7601.h │ │ │ ├── rt28xx.h │ │ │ ├── rt3290.h │ │ │ ├── rt6590.h │ │ │ └── rtmp_phy.h │ │ ├── chlist.h │ │ ├── client_wds.h │ │ ├── client_wds_cmm.h │ │ ├── crypt_aes.h │ │ ├── crypt_arc4.h │ │ ├── crypt_biginteger.h │ │ ├── crypt_dh.h │ │ ├── crypt_hmac.h │ │ ├── crypt_md5.h │ │ ├── crypt_sha2.h │ │ ├── cs.h │ │ ├── dfs.h │ │ ├── dot11ac_vht.h │ │ ├── dot11i_wpa.h │ │ ├── dot11r_ft.h │ │ ├── dot11z_tdls.h │ │ ├── drs_extr.h │ │ ├── eeprom.h │ │ ├── firmware.h │ │ ├── frq_cal.h │ │ ├── iface/ │ │ │ ├── iface_util.h │ │ │ ├── rtmp_reg_pcirbs.h │ │ │ └── rtmp_usb.h │ │ ├── igmp_snoop.h │ │ ├── ipv6.h │ │ ├── link_list.h │ │ ├── mac_ral/ │ │ │ ├── fce.h │ │ │ ├── mac_pci.h │ │ │ ├── mac_usb.h │ │ │ ├── nmac/ │ │ │ │ ├── ral_nmac.h │ │ │ │ ├── ral_nmac_pbf.h │ │ │ │ ├── ral_nmac_pci.h │ │ │ │ ├── ral_nmac_rxwi.h │ │ │ │ ├── ral_nmac_txwi.h │ │ │ │ └── ral_nmac_usb.h │ │ │ ├── omac/ │ │ │ │ ├── ral_omac.h │ │ │ │ ├── ral_omac_pbf.h │ │ │ │ ├── ral_omac_pci.h │ │ │ │ ├── ral_omac_rf_ctrl.h │ │ │ │ ├── ral_omac_rxwi.h │ │ │ │ ├── ral_omac_txwi.h │ │ │ │ └── ral_omac_usb.h │ │ │ ├── pbf.h │ │ │ ├── rf_ctrl.h │ │ │ └── rtmp_mac.h │ │ ├── mat.h │ │ ├── mcu/ │ │ │ └── MT7601_firmware.h │ │ ├── misc.h │ │ ├── misc_cmm.h │ │ ├── mlme.h │ │ ├── mlme_sys.h │ │ ├── netif_block.h │ │ ├── oid.h │ │ ├── os/ │ │ │ ├── rt_drv.h │ │ │ ├── rt_linux.h │ │ │ ├── rt_linux_cmm.h │ │ │ └── rt_os.h │ │ ├── p2p.h │ │ ├── p2p_cmm.h │ │ ├── p2p_inf.h │ │ ├── p2pcli.h │ │ ├── phy/ │ │ │ └── rlt_phy.h │ │ ├── radar.h │ │ ├── rt_config.h │ │ ├── rt_os_net.h │ │ ├── rt_os_util.h │ │ ├── rt_txbf.h │ │ ├── rtmp.h │ │ ├── rtmp_M51.h │ │ ├── rtmp_and.h │ │ ├── rtmp_chip.h │ │ ├── rtmp_cmd.h │ │ ├── rtmp_comm.h │ │ ├── rtmp_def.h │ │ ├── rtmp_dot11.h │ │ ├── rtmp_iface.h │ │ ├── rtmp_mcu.h │ │ ├── rtmp_os.h │ │ ├── rtmp_osabl.h │ │ ├── rtmp_timer.h │ │ ├── rtmp_type.h │ │ ├── rtusb_io.h │ │ ├── spectrum.h │ │ ├── spectrum_def.h │ │ ├── sta_cfg.h │ │ ├── tdls.h │ │ ├── tdls_cmm.h │ │ ├── uapsd.h │ │ ├── vht.h │ │ ├── video.h │ │ ├── vr_ikans.h │ │ ├── vrut_ubm.h │ │ ├── wapi.h │ │ ├── wapi_def.h │ │ ├── wapi_sms4.h │ │ ├── wfa_p2p.h │ │ ├── wfd.h │ │ ├── wfd_cmm.h │ │ ├── wpa.h │ │ ├── wpa_cmm.h │ │ ├── wsc.h │ │ └── wsc_tlv.h │ ├── mac/ │ │ ├── ral_nmac.c │ │ ├── ral_omac.c │ │ └── rtmp_mac.c │ ├── mcu/ │ │ ├── rtmp_M51.c │ │ ├── rtmp_and.c │ │ └── rtmp_mcu.c │ ├── mgmt/ │ │ ├── mgmt_dev.c │ │ ├── mgmt_entrytb.c │ │ ├── mgmt_ht.c │ │ ├── mgmt_hw.c │ │ └── mgmt_vht.c │ ├── os/ │ │ └── linux/ │ │ ├── Kconfig.ap.soc │ │ ├── Kconfig.ap.usb │ │ ├── Kconfig.sta.soc │ │ ├── Makefile.4 │ │ ├── Makefile.4.netif │ │ ├── Makefile.4.util │ │ ├── Makefile.6 │ │ ├── Makefile.6.netif │ │ ├── Makefile.6.util │ │ ├── Makefile.ap.soc │ │ ├── Makefile.ap.usb │ │ ├── Makefile.libautoprovision.6 │ │ ├── Makefile.libwapi.4 │ │ ├── Makefile.libwapi.6 │ │ ├── Makefile.sta.soc │ │ ├── ap_ioctl.c │ │ ├── cfg80211.c │ │ ├── cfg80211drv.c │ │ ├── inf_ppa.c │ │ ├── rt_linux.c │ │ ├── rt_linux_symb.c │ │ ├── rt_main_dev.c │ │ ├── rt_proc.c │ │ ├── rt_profile.c │ │ ├── rt_rbus_pci_drv.c │ │ ├── rt_rbus_pci_util.c │ │ ├── rt_symb.c │ │ ├── rt_usb.c │ │ ├── rt_usb_util.c │ │ ├── sta_ioctl.c │ │ ├── usb_main_dev.c │ │ └── vr_ikans.c │ ├── phy/ │ │ ├── rlt_phy.c │ │ ├── rlt_rf.c │ │ └── rtmp_phy.c │ ├── rate_ctrl/ │ │ ├── alg_ags.c │ │ ├── alg_grp.c │ │ ├── alg_legacy.c │ │ └── ra_ctrl.c │ ├── sta/ │ │ ├── assoc.c │ │ ├── auth.c │ │ ├── auth_rsp.c │ │ ├── connect.c │ │ ├── dls.c │ │ ├── p2pcli.c │ │ ├── p2pcli_assoc.c │ │ ├── p2pcli_auth.c │ │ ├── p2pcli_ctrl.c │ │ ├── p2pcli_sync.c │ │ ├── rtmp_ckipmic.c │ │ ├── rtmp_data.c │ │ ├── sanity.c │ │ ├── sta_cfg.c │ │ ├── sta_iwsc.c │ │ ├── sync.c │ │ ├── tdls.c │ │ ├── tdls_chswitch_mng.c │ │ ├── tdls_link_mng.c │ │ ├── tdls_tlv.c │ │ ├── tdls_uapsd.c │ │ └── wpa.c │ └── tools/ │ ├── Makefile │ └── bin2h.c └── unload.sh