mirror of https://github.com/hak5/openwrt.git
base-files: config_generate: add missing chunks of force tag support
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47718lede-17.01
parent
de51026515
commit
1871619e72
|
@ -109,12 +109,13 @@ generate_switch_vlan() {
|
||||||
|
|
||||||
calculate_switch_vlans() {
|
calculate_switch_vlans() {
|
||||||
local switch="$1"
|
local switch="$1"
|
||||||
local ports port attr val
|
local ports port attr val prev_role
|
||||||
local prev_role
|
local num device role index need_tag
|
||||||
local num device role index
|
local cpu0 cpu1 cpu2 cpu3
|
||||||
local n_cpu=0 cpu0 cpu1 cpu2 cpu3
|
local dev0 dev1 dev2 dev3
|
||||||
local dev0 dev1 dev2 dev3 role0 role1 role2 role3
|
local tag0 tag1 tag2 tag3
|
||||||
local n_vlan=0 vlan_off=-1
|
local role0 role1 role2 role3
|
||||||
|
local n_cpu=0 n_vlan=0 vlan_off=-1
|
||||||
local vlan_ports cpu_port
|
local vlan_ports cpu_port
|
||||||
|
|
||||||
json_get_keys ports ports
|
json_get_keys ports ports
|
||||||
|
@ -124,7 +125,7 @@ calculate_switch_vlans() {
|
||||||
# gather all cpu ports and count vlans
|
# gather all cpu ports and count vlans
|
||||||
for port in $ports; do
|
for port in $ports; do
|
||||||
json_select "$port"
|
json_select "$port"
|
||||||
json_get_vars num device role
|
json_get_vars num device role need_tag
|
||||||
|
|
||||||
if json_is_a attr object; then
|
if json_is_a attr object; then
|
||||||
json_get_keys attr attr
|
json_get_keys attr attr
|
||||||
|
@ -149,6 +150,7 @@ calculate_switch_vlans() {
|
||||||
if [ -n "$num" ] && [ -n "$device" ]; then
|
if [ -n "$num" ] && [ -n "$device" ]; then
|
||||||
export "cpu$n_cpu=$num"
|
export "cpu$n_cpu=$num"
|
||||||
export "dev$n_cpu=$device"
|
export "dev$n_cpu=$device"
|
||||||
|
export "tag$n_cpu=${need_tag:-0}"
|
||||||
n_cpu=$((n_cpu + 1))
|
n_cpu=$((n_cpu + 1))
|
||||||
elif [ -n "$num" ] && [ -n "$role" ] && [ "$role" != "$prev_role" ]; then
|
elif [ -n "$num" ] && [ -n "$role" ] && [ "$role" != "$prev_role" ]; then
|
||||||
export "role$n_vlan=$role"
|
export "role$n_vlan=$role"
|
||||||
|
|
Loading…
Reference in New Issue