forked from DGNum/liminix
rt3200: swap wireless driver load order
mt7515e loads first, so that wlan0 is 2.4GHz mt7515e loads after, so that 5GHz gets wlan1
This commit is contained in:
parent
d025c33d30
commit
ed792e0dc0
1 changed files with 4 additions and 1 deletions
|
@ -149,7 +149,10 @@
|
||||||
let
|
let
|
||||||
openwrt = pkgs.openwrt;
|
openwrt = pkgs.openwrt;
|
||||||
mac80211 = pkgs.mac80211.override {
|
mac80211 = pkgs.mac80211.override {
|
||||||
drivers = [ "mt7915e" "mt7615e"];
|
drivers = [
|
||||||
|
"mt7615e"
|
||||||
|
"mt7915e"
|
||||||
|
];
|
||||||
klibBuild = config.system.outputs.kernel.modulesupport;
|
klibBuild = config.system.outputs.kernel.modulesupport;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
Loading…
Reference in a new issue