support reproducible builds

This commit is contained in:
morrownr 2021-11-21 20:03:19 -06:00
parent c514c53a79
commit c1e9d4f34a
2 changed files with 6 additions and 4 deletions

View File

@ -13,11 +13,14 @@
- IEEE 802.11 b/g/n/ac WiFi compliant - IEEE 802.11 b/g/n/ac WiFi compliant
- 802.1x, WEP, WPA TKIP and WPA2 AES/Mixed mode for PSK and TLS (Radius) - 802.1x, WEP, WPA TKIP and WPA2 AES/Mixed mode for PSK and TLS (Radius)
- WPA3 (see note in FAQ) - WPA3 (see issue with title `How to Enable WPA3 support`)
- IEEE 802.11b/g/n/ac Client mode - IEEE 802.11b/g/n/ac Client mode
* Supports wireless security for WEP, WPA TKIP and WPA2 AES PSK * Supports wireless security for WEP, WPA TKIP and WPA2 AES PSK
* Supports site survey scan and manual connect * Supports site survey scan and manual connect
- Power saving modes - Power saving modes
- Wireshark compatible
- Aircrack-ng compatible
- Packet injection
- hostapd compatible - hostapd compatible
- AP mode DFS channel support - AP mode DFS channel support
- Supported interface modes - Supported interface modes
@ -415,8 +418,7 @@ of wpa_supplicant at the following site:
https://w1.fi/cgit/ https://w1.fi/cgit/
If there is interest, I will consider making and posting a guide. I am very busy See issue titled `How to Enable WPA3 support` for more information.
so if anyone is interested in making a guide/checklist.
Question: I bought two rtl8812bu based adapters and am planning to run one of them as an AP and another as a WiFi client. How do I set that up? Question: I bought two rtl8812bu based adapters and am planning to run one of them as an AP and another as a WiFi client. How do I set that up?

View File

@ -42,7 +42,7 @@ const char *rtw_log_level_str[] = {
void dump_drv_version(void *sel) void dump_drv_version(void *sel)
{ {
RTW_PRINT_SEL(sel, "%s %s\n", DRV_NAME, DRIVERVERSION); RTW_PRINT_SEL(sel, "%s %s\n", DRV_NAME, DRIVERVERSION);
RTW_PRINT_SEL(sel, "build time: %s %s\n", __DATE__, __TIME__); // RTW_PRINT_SEL(sel, "build time: %s %s\n", __DATE__, __TIME__);
} }
#ifdef CONFIG_PROC_DEBUG #ifdef CONFIG_PROC_DEBUG