From: John Crispin Date: Fri, 1 Jan 2016 21:19:27 +0000 (+0000) Subject: lantiq: convert vendorid into human readable form X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=a9896bf1064840747ca004c1ed777b6f23e0da9e;p=openwrt%2Fstaging%2Fwigyori.git lantiq: convert vendorid into human readable form Signed-off-by: Mathias Kresin SVN-Revision: 48046 --- diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh index ec035df374..a2723f38f8 100755 --- a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh +++ b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh @@ -64,6 +64,70 @@ scale_latency() { printf "%d.%d ms" ${a} ${b} } +# +# convert vendorid into human readable form +# +parse_vendorid() { + local val=$1 + local name + local version + + case "$val" in + B5,00,41,4C,43,42*) + name="Alcatel" + version=${val##*B5,00,41,4C,43,42,} + ;; + B5,00,41,4E,44,56*) + name="Analog Devices" + version=${val##*B5,00,41,4E,44,56,} + ;; + B5,00,42,44,43,4D*) + name="Broadcom" + version=${val##*B5,00,42,44,43,4D,} + ;; + B5,00,43,45,4E,54*) + name="Centillium" + version=${val##*B5,00,43,45,4E,54,} + ;; + B5,00,47,53,50,4E*) + name="Globespan" + version=${val##*B5,00,47,53,50,4E,} + ;; + B5,00,49,4B,4E,53*) + name="Ikanos" + version=${val##*B5,00,49,4B,4E,53,} + ;; + B5,00,49,46,54,4E*) + name="Infineon" + version=${val##*B5,00,49,46,54,4E,} + ;; + B5,00,54,53,54,43*) + name="Texas Instruments" + version=${val##*B5,00,54,53,54,43,} + ;; + B5,00,54,4D,4D,42*) + name="Thomson MultiMedia Broadband" + version=${val##*B5,00,54,4D,4D,42,} + ;; + B5,00,54,43,54,4E*) + name="Trend Chip Technologies" + version=${val##*B5,00,54,43,54,4E,} + ;; + B5,00,53,54,4D,49*) + name="ST Micro" + version=${val##*B5,00,53,54,4D,49,} + ;; + esac + + [ -n "$name" ] && { + val="$name" + + [ "$version" != "00,00" ] && val="$(printf "%s %d.%d" "$val" 0x${version//,/ 0x})" + } + + echo "$val" +} + # # Read the data rates for both directions # @@ -133,6 +197,9 @@ vendor() { vid=$(dsl_string "$lig" G994VendorID) svid=$(dsl_string "$lig" SystemVendorID) + vid=$(parse_vendorid $vid) + svid=$(parse_vendorid $svid) + if [ "$action" = "lucistat" ]; then echo "dsl.atuc_vendor_id=\"${vid}\"" echo "dsl.atuc_system_vendor_id=\"${svid}\""