openwrt/target/linux/lantiq/base-files/etc/init.d/dsl_fs
John Crispin 390e856cb2 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
2014-04-11 20:40:24 +00:00

14 lines
241 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2014 OpenWrt.org
. /lib/functions.sh
START=30
start() {
MTD=$(find_mtd_index dsl_fw)
[ "$MTD" -gt 0 ] && {
mkdir -p /lib/firmware/dsl/
mount -t jffs2 /dev/mtdblock$MTD /lib/firmware/dsl/
}
}