From d1c117a8efc07f87ef185ee90843ca10bb2343cd Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 13 Feb 2011 02:52:49 +0000 Subject: soloscli: allow user to apply settings to solos h/w before bringing up network (patch by Philip Prindeville) If the network/wan configuration contains "solos0" ... "solos3" then this list of strings will be applied to the FPGA when the hardware is hotplug added. The syntax should be "tag=value", as per the values enumerated in the solos-attr.c list. In the canned example, the modem is temporarily turned off, told to detect noise, told to disable annexes M and A (effectively putting it into pure ADSL mode), and re-activated. There's probably a more appropriate function name than "dialog" but that's what I came up with. Handle other ATM hardware (Eagle, etc) besides solos-pci. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25510 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/soloscli/files/etc/uci-default/solos | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package/soloscli/files/etc/uci-default/solos (limited to 'package/soloscli/files/etc/uci-default') diff --git a/package/soloscli/files/etc/uci-default/solos b/package/soloscli/files/etc/uci-default/solos new file mode 100644 index 000000000..7f69da62c --- /dev/null +++ b/package/soloscli/files/etc/uci-default/solos @@ -0,0 +1,15 @@ +#!/bin/sh + +uci batch <<__EOF__ + +delete network.wan.solos0 + +add_list network.wan.solos0="ActivateLine=Abort" +add_list network.wan.solos0="Retrain=EnableAll" +add_list network.wan.solos0="DetectNoise=Enable" +add_list network.wan.solos0="BisMCapability=Disable" +add_list network.wan.solos0="BisACapability=Disable" +add_list network.wan.solos0="ActivateLine=Start" + +commit network +__EOF__ -- cgit v1.2.3