qosmngr: update default config

Precedence value update to map with tr181 in default config,
now goes from 1 to 8, 8 meaning queue has lowest priority and 1
meaning that the queue has highest priority.

The broadcom script takes care of reversing this and mapping this
to 0 to 7 before configuring actual queues.
This commit is contained in:
Rahul 2020-12-03 21:23:44 +05:30 committed by Sukru Senli
parent 8ae15aa39b
commit 17fd0ab28a

View file

@ -24,7 +24,7 @@ generate_queue(){
fi fi
i=0 i=0
local total_q=${no_of_q##* } local total_q=$((${no_of_q##* } + 1))
for i in $no_of_q; do for i in $no_of_q; do
order=$((total_q - i)) order=$((total_q - i))
uci add qos queue uci add qos queue