diff options
| author | Adrian Schmutzler | 2021-05-13 19:19:01 +0000 |
|---|---|---|
| committer | Adrian Schmutzler | 2021-05-13 22:19:11 +0000 |
| commit | 678001989261618cb834050c7a08ec07671f6c94 (patch) | |
| tree | dc0333af72e5c0e027a84b75be8404ae50ffd3e8 | |
| parent | b993b68b6ca8444b5227a0c18df4600b37ac565c (diff) | |
| download | zorun-678001989261618cb834050c7a08ec07671f6c94.tar.gz | |
ath79: fix sorting in generic 02_network
The two device strings were not ordered properly.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
| -rw-r--r-- | target/linux/ath79/generic/base-files/etc/board.d/02_network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath79/generic/base-files/etc/board.d/02_network b/target/linux/ath79/generic/base-files/etc/board.d/02_network index 8b3f04c8e1..52e773fea3 100644 --- a/target/linux/ath79/generic/base-files/etc/board.d/02_network +++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network @@ -437,8 +437,8 @@ ath79_setup_interfaces() ucidef_add_switch "switch0" \ "0@eth0" "1:lan" "2:lan" ;; - zbtlink,zbt-wd323|\ - xiaomi,mi-router-4q) + xiaomi,mi-router-4q|\ + zbtlink,zbt-wd323) ucidef_set_interface_wan "eth1" ucidef_add_switch "switch0" \ "0@eth0" "3:lan:1" "4:lan:2" |