wifi-scripts: fix mac address allocation with macaddr_base set
The 00 address_mask needs to be inverted, otherwise the mac address allocation will modify the last byte instead of the first one. Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
04570f5ee2
commit
1ee44825ad
1 changed files with 4 additions and 3 deletions
|
@ -213,9 +213,12 @@ const phy_proto = {
|
||||||
if (!base_mask)
|
if (!base_mask)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
if (base_mask == "00:00:00:00:00:00")
|
||||||
|
base_mask = "ff:ff:ff:ff:ff:ff";
|
||||||
|
|
||||||
if (data.macaddr_base)
|
if (data.macaddr_base)
|
||||||
base_addr = data.macaddr_base;
|
base_addr = data.macaddr_base;
|
||||||
else if (base_mask == "00:00:00:00:00:00" &&
|
else if (base_mask == "ff:ff:ff:ff:ff:ff" &&
|
||||||
(radio_idx > 0 || idx >= num_global)) {
|
(radio_idx > 0 || idx >= num_global)) {
|
||||||
let addrs = split(phy_sysfs_file(phy, "addresses"), "\n");
|
let addrs = split(phy_sysfs_file(phy, "addresses"), "\n");
|
||||||
|
|
||||||
|
@ -227,8 +230,6 @@ const phy_proto = {
|
||||||
} else {
|
} else {
|
||||||
if (idx < length(addrs))
|
if (idx < length(addrs))
|
||||||
return addrs[idx];
|
return addrs[idx];
|
||||||
|
|
||||||
base_mask = "ff:ff:ff:ff:ff:ff";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue