diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-08-13 19:29:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-08-13 19:29:51 +0000 |
commit | 8f501d19cdffd128c4bc9cdbf11454cde43b2146 (patch) | |
tree | 77b2089405d328021bb12b2021ca08344e9ab1e6 /target/linux | |
parent | e4f42032c039f09f7c777212f38c038283087ed3 (diff) | |
download | upstream-8f501d19cdffd128c4bc9cdbf11454cde43b2146.tar.gz upstream-8f501d19cdffd128c4bc9cdbf11454cde43b2146.tar.bz2 upstream-8f501d19cdffd128c4bc9cdbf11454cde43b2146.zip |
[ar71xx] add uci-defaults script to migrate vlan 0 to vlan 1 after sysupgrade on devices using the RTL8366s switch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22625 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/vlan-migration | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/vlan-migration b/target/linux/ar71xx/base-files/etc/uci-defaults/vlan-migration new file mode 100755 index 0000000000..bea9493c8e --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/vlan-migration @@ -0,0 +1,13 @@ +#!/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 |