This uses version 4.23.1 of the dsl_cpe_control package from the Intel UGW 8.5.2.10 for the VRX518. Signed-off-by: Martin Schiller <ms.3headeddevs@gmail.com> [rebased] Signed-off-by: Jan Hoffmann <jan@3e8.eu> [update to 4.23.1, added Jan's vector mac patch, fix warnings, switch to tag tarball] Signed-off-by: Andre Heider <a.heider@gmail.com> [add missing nLine in autoboot script, fix disconnect on termination, remove unneeded VR9 leftovers in init script] Signed-off-by: Jan Hoffmann <jan@3e8.eu> Signed-off-by: Andre Heider <a.heider@gmail.com>
18 lines
280 B
Bash
Executable file
18 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
pipe_no=0
|
|
|
|
# use specified pipe no
|
|
case "$1" in
|
|
0|1|2)
|
|
pipe_no=$1; shift; ;;
|
|
esac
|
|
|
|
|
|
#echo "Call dsl_pipe with $*"
|
|
lock /var/lock/dsl_pipe
|
|
echo $* > /tmp/pipe/dsl_cpe${pipe_no}_cmd
|
|
result=$(cat /tmp/pipe/dsl_cpe${pipe_no}_ack)
|
|
lock -u /var/lock/dsl_pipe
|
|
|
|
echo "$result"
|