mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 19:18:26 +02:00
698224c6c8
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22625 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
351 B
Bash
Executable File
14 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
local dev="$(uci -q get network.@switch_vlan[0].device)"
|
|
local vlan="$(uci -q get network.@switch_vlan[0].vlan)"
|
|
|
|
if [ "$dev" = "rtl8366s" ] && [ "$vlan" = 0 ]; then
|
|
logger -t vlan-migration "VLAN 0 is invalid for RTL8366s, changing to 1"
|
|
uci set network.@switch_vlan[0].vlan=1
|
|
uci commit network
|
|
fi
|