minor updates
This commit is contained in:
parent
98ea781ee6
commit
a7925d7df7
20
88x2bu.conf
20
88x2bu.conf
@ -27,6 +27,8 @@ options 88x2bu rtw_drv_log_level=0 rtw_led_ctrl=1 rtw_vht_enable=1 rtw_power_mgn
|
|||||||
#
|
#
|
||||||
# sudo ./save-log.sh
|
# sudo ./save-log.sh
|
||||||
#
|
#
|
||||||
|
# Note: The name of the log file will be ```rtw.log```.
|
||||||
|
#
|
||||||
# -----
|
# -----
|
||||||
#
|
#
|
||||||
# LED options: ( rtw_led_ctrl )
|
# LED options: ( rtw_led_ctrl )
|
||||||
@ -73,24 +75,28 @@ options 88x2bu rtw_drv_log_level=0 rtw_led_ctrl=1 rtw_vht_enable=1 rtw_power_mgn
|
|||||||
#
|
#
|
||||||
# DFS Options ( rtw_dfs_region_domain )
|
# DFS Options ( rtw_dfs_region_domain )
|
||||||
#
|
#
|
||||||
# 0 = NONE (default)
|
# 0 = NONE (default) (use this option for managed mode)
|
||||||
# 1 = FCC
|
# 1 = FCC
|
||||||
# 2 = MKK
|
# 2 = MKK
|
||||||
# 3 = ETSI
|
# 3 = ETSI
|
||||||
#
|
#
|
||||||
# Note: Activates DFS channels in AP mode.
|
# Notes:
|
||||||
# Note: DFS channels automatically work in managed mode.
|
# - Activates DFS channels in AP mode.
|
||||||
# Note: DFS FCC 80 MHz channels: 52(58), 100(106), 116(122) and 132(138)
|
# - DFS channels automatically work in managed mode.
|
||||||
# For more information: https://en.wikipedia.org/wiki/List_of_WLAN_channels
|
# - DFS FCC 80 MHz channels for hostapd: 52(58), 100(106), 116(122) and 132(138)
|
||||||
|
# - For more information: https://en.wikipedia.org/wiki/List_of_WLAN_channels
|
||||||
#
|
#
|
||||||
# -----
|
# -----
|
||||||
#
|
#
|
||||||
# USB options: ( rtw_switch_usb_mode )
|
# USB options: ( rtw_switch_usb_mode )
|
||||||
#
|
#
|
||||||
# 0 = No switch
|
# 0 = No switch
|
||||||
# 1 = Switch from usb 2.0 to usb 3.0 (recommended for 5 GHz AP mode)
|
# 1 = Switch from usb 2.0 to usb 3.0 (recommended for managed mode)
|
||||||
# 2 = Switch from usb 3.0 to usb 2.0 (default) (recommended for 2.4 GHz AP mode)
|
# 2 = Switch from usb 3.0 to usb 2.0 (default) (recommended for AP mode)
|
||||||
#
|
#
|
||||||
|
# Note: The 88x2bu driver needs to stay in USB2 mode for AP mode operations.
|
||||||
|
#
|
||||||
|
#
|
||||||
# -----
|
# -----
|
||||||
#
|
#
|
||||||
# To see all options that are available:
|
# To see all options that are available:
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -56,7 +56,7 @@ CONFIG_LED_ENABLE = y
|
|||||||
######################### Features ############################
|
######################### Features ############################
|
||||||
CONFIG_AP_MODE = y
|
CONFIG_AP_MODE = y
|
||||||
CONFIG_P2P = y
|
CONFIG_P2P = y
|
||||||
CONFIG_MP_INCLUDED = y
|
CONFIG_MP_INCLUDED = n
|
||||||
CONFIG_POWER_SAVING = y
|
CONFIG_POWER_SAVING = y
|
||||||
CONFIG_IPS_MODE = default
|
CONFIG_IPS_MODE = default
|
||||||
CONFIG_LPS_MODE = default
|
CONFIG_LPS_MODE = default
|
||||||
|
|||||||
@ -3925,7 +3925,7 @@ int _netdev_open(struct net_device *pnetdev)
|
|||||||
#ifdef CONFIG_IOCTL_CFG80211
|
#ifdef CONFIG_IOCTL_CFG80211
|
||||||
rtw_cfg80211_init_wdev_data(padapter);
|
rtw_cfg80211_init_wdev_data(padapter);
|
||||||
#endif
|
#endif
|
||||||
rtw_netif_carrier_on(pnetdev); /* call this func when rtw_joinbss_event_callback return success */
|
/* rtw_netif_carrier_on(pnetdev); */ /* call this func when rtw_joinbss_event_callback return success */
|
||||||
rtw_netif_wake_queue(pnetdev);
|
rtw_netif_wake_queue(pnetdev);
|
||||||
|
|
||||||
#ifdef CONFIG_BR_EXT
|
#ifdef CONFIG_BR_EXT
|
||||||
@ -4046,7 +4046,7 @@ int _netdev_open(struct net_device *pnetdev)
|
|||||||
rtw_set_pwr_state_check_timer(pwrctrlpriv);
|
rtw_set_pwr_state_check_timer(pwrctrlpriv);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
rtw_netif_carrier_on(pnetdev); /* call this func when rtw_joinbss_event_callback return success */
|
/* rtw_netif_carrier_on(pnetdev); */ /* call this func when rtw_joinbss_event_callback return success */
|
||||||
rtw_netif_wake_queue(pnetdev);
|
rtw_netif_wake_queue(pnetdev);
|
||||||
|
|
||||||
#ifdef CONFIG_BR_EXT
|
#ifdef CONFIG_BR_EXT
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user