mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-14 00:40:12 +00:00
390e856cb2
* 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
14 lines
241 B
Bash
Executable File
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/
|
|
}
|
|
}
|