2
0
forked from Ivasoft/openwrt

lantiq: more vdsl related cleanups

* atm module needs to be loaded before linux-atm
* use absolute firmware paths
* extended validation
* add a script for mounting an optional firmware partition

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 40460
This commit is contained in:
John Crispin
2014-04-11 20:40:24 +00:00
parent 7b960069a2
commit 390e856cb2
4 changed files with 38 additions and 16 deletions

View File

@@ -38,11 +38,15 @@ start() {
eval "xtu=\"\${annex_$annex}\""
[ -z "${firmware}" ] &&
firmware=adsl.bin
firmware=/lib/firmware/adsl.bin
[ -f "${firmware}" ] || {
echo failed to find $firmware
return 1
}
service_start /sbin/dsl_cpe_control -i${xtu} \
-n /sbin/dsl_notify.sh \
-f /lib/firmware/${firmware}
-f ${firmware}
}
stop() {