mirror of https://github.com/hak5/openwrt.git
lantiq: replace backticks by $(...) and remove useless echo
This replaces deprecated backticks by more versatile $(...) syntax. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> [decapitalized patch subject at submitter's request] Signed-off-by: Christian Lamparter <chunkeey@gmail.com>master
parent
a421a12f9c
commit
aea3cab77a
|
@ -8,7 +8,7 @@
|
||||||
include /lib/network
|
include /lib/network
|
||||||
scan_interfaces
|
scan_interfaces
|
||||||
|
|
||||||
interfaces=`ubus list network.interface.\* | cut -d"." -f3`
|
interfaces=$(ubus list network.interface.\* | cut -d"." -f3)
|
||||||
for ifc in $interfaces; do
|
for ifc in $interfaces; do
|
||||||
|
|
||||||
json_load "$(ifstatus $ifc)"
|
json_load "$(ifstatus $ifc)"
|
||||||
|
|
|
@ -290,8 +290,8 @@ xtse() {
|
||||||
annex_s="$annex_s M,"
|
annex_s="$annex_s M,"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
annex_s=`echo ${annex_s:1}`
|
annex_s=${annex_s:1}
|
||||||
annex_s=`echo ${annex_s%?}`
|
annex_s=${annex_s%?}
|
||||||
|
|
||||||
# Evaluate Line Mode (according to G.997.1, 7.3.1.1.1)
|
# Evaluate Line Mode (according to G.997.1, 7.3.1.1.1)
|
||||||
|
|
||||||
|
@ -346,8 +346,8 @@ xtse() {
|
||||||
line_mode_s="$line_mode_s G.993.1 (VDSL),"
|
line_mode_s="$line_mode_s G.993.1 (VDSL),"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
line_mode_s=`echo ${line_mode_s:1}`
|
line_mode_s=${line_mode_s:1}
|
||||||
line_mode_s=`echo ${line_mode_s%?}`
|
line_mode_s=${line_mode_s%?}
|
||||||
|
|
||||||
xtse_s="${xtse1}, ${xtse2}, ${xtse3}, ${xtse4}, ${xtse5}, ${xtse6}, ${xtse7}, ${xtse8}"
|
xtse_s="${xtse1}, ${xtse2}, ${xtse3}, ${xtse4}, ${xtse5}, ${xtse6}, ${xtse7}, ${xtse8}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue