summaryrefslogtreecommitdiff
path: root/target/linux/ramips/base-files/etc/init.d/enablemodem
blob: a7e6c2ef23a7cb869342c12c6e3746e02ec2ee03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh /etc/rc.common
. /lib/ramips.sh

START=99

start() {
	local board=$(ramips_board_name)
	if [ $board = "mr200" ]; then
		adb wait-for-device
		adb shell chmod +x /WEBSERVER/www/cgi-bin/*
		adb shell httpd -h /WEBSERVER/www/ &
		echo "2357 000d" > /sys/bus/usb-serial/drivers/option1/new_id
		sleep 2
		adb kill-server
	fi
}