#!/bin/sh # (C) 2008 openwrt.org . /lib/functions.sh ACTION=$1 NAME=$2 do_led() { local name local sysfs config_get name $1 name config_get sysfs $1 sysfs [ "$name" = "$NAME" -o "$sysfs" = "$NAME" -a -e "/sys/class/leds/${sysfs}" ] && { [ "$ACTION" = "set" ] && echo 1 >/sys/class/leds/${sysfs}/brightness \ || echo 0 >/sys/class/leds/${sysfs}/brightness exit 0 } } [ "$1" = "clear" -o "$1" = "set" ] && [ -n "$2" ] &&{ config_load system config_foreach do_led exit 1 } org/openwrt/em-br6478acv2/lede/master-31e0f0ae' title='openwrt/em-br6478acv2/lede/master-31e0f0ae Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/package/ar7-atm/Config.in
blob: 479b7ad072c06b8bb5557ad2220b4fefe3009cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
menu "Configuration"
	depends on (PACKAGE_kmod-sangam-atm-annex-a || PACKAGE_kmod-sangam-atm-annex-b)

choice
	prompt "Firmware version"
	default AR7_ATM_FW_VERSION_704
	help
		This option allows you to switch between firmware/driver versions which
		might improve the DSL line speed.

config AR7_ATM_FW_VERSION_705
	bool "D7.05.01.00"

config AR7_ATM_FW_VERSION_704
	bool "D7.04.03.00"

config AR7_ATM_FW_VERSION_703
	bool "D7.03.01.00"

endchoice

endmenu