Not sure but is this PR related?

"base-files: bring up vlan interface too #2734"

https://github.com/openwrt/openwrt/pull/2734

On 6/19/21 8:36 AM, Hauke Mehrtens wrote:
Adapt the preinit_config_board() to the board.json network changes. It
now looks for the device and the ports variables to configure the LAN
network.

This works with swconfig configurations.

Fixes: FS#3866
Fixes: d42640e389a8 ("base-files: use "ports" array in board.json network for 
bridges")
Signed-off-by: Hauke Mehrtens <ha...@hauke-m.de>
---
  .../files/lib/preinit/10_indicate_preinit      | 18 ++++++++++++------
  1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/package/base-files/files/lib/preinit/10_indicate_preinit 
b/package/base-files/files/lib/preinit/10_indicate_preinit
index 3c5992979016..ae9fcfecc89e 100644
--- a/package/base-files/files/lib/preinit/10_indicate_preinit
+++ b/package/base-files/files/lib/preinit/10_indicate_preinit
@@ -72,28 +72,34 @@ preinit_config_board() {
json_select network
                json_select "lan"
-                       json_get_vars ifname
+                       json_get_vars device
+                       json_get_values ports ports
                json_select ..
        json_select ..
- [ -n "$ifname" ] || return
+       [ -n "$device" -o -n "$ports" ] || return
+
+       # swconfig uses $device and DSA uses ports
+       [ -z "$ports" ] && {
+               ports="$device"
+       }
# only use the first one
-       ifname=${ifname%% *}
+       ports=${ports%% *}
if [ -x /sbin/swconfig ]; then
                # configure the switch, if present
json_get_keys keys switch
                for key in $keys; do
-                       preinit_config_switch $key $ifname
+                       preinit_config_switch $key $ports
                done
        else
                # trim any vlan ids
-               ifname=${ifname%\.*}
+               ports=${ports%\.*}
        fi
- pi_ifname=$ifname
+       pi_ifname=$ports
preinit_ip_config $pi_ifname
  }

_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to