Skip to content

Commit

Permalink
mac80211: add support for configuring number of globally allocated MA…
Browse files Browse the repository at this point in the history
…C addresses

When a device has more than one reserved mac address, they can be used for
virtual interfaces without the local bit in the first byte

Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
nbd168 committed Sep 13, 2023
1 parent 13c1080 commit da55eba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ drv_mac80211_init_device_config() {
config_add_string distance
config_add_int beacon_int chanbw frag rts
config_add_int rxantenna txantenna txpower min_tx_power
config_add_int num_global_macaddr
config_add_boolean noscan ht_coex acs_exclude_dfs background_radar
config_add_array ht_capab
config_add_array channels
Expand Down Expand Up @@ -533,7 +534,7 @@ mac80211_generate_mac() {
local phy="$1"
local id="${macidx:-0}"

wdev_tool "$phy" get_macaddr id=$id
wdev_tool "$phy" get_macaddr id=$id num_global=$num_global_macaddr
}

get_board_phy_name() (
Expand Down Expand Up @@ -1040,7 +1041,8 @@ drv_mac80211_setup() {
country chanbw distance \
txpower \
rxantenna txantenna \
frag rts beacon_int:100 htmode
frag rts beacon_int:100 htmode \
num_global_macaddr:1
json_get_values basic_rate_list basic_rate
json_get_values scan_list scan_list
json_select ..
Expand Down

0 comments on commit da55eba

Please sign in to comment.