Skip to content
Snippets Groups Projects
Commit 4e1c5b8b authored by Markus Wigge's avatar Markus Wigge
Browse files

LED handling fixes for WRT54-G3Gv2

SVN-Revision: 22462
parent 393db419
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=comgt
PKG_VERSION:=0.32
PKG_RELEASE:=4
PKG_RELEASE:=5
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz
PKG_SOURCE_URL:=@SF/comgt
......@@ -49,7 +49,7 @@ define Package/comgt/install
$(INSTALL_DATA) ./files/3g.chat $(1)/etc/chatscripts/3g.chat
$(INSTALL_DATA) ./files/evdo.chat $(1)/etc/chatscripts/evdo.chat
$(INSTALL_DIR) $(1)/lib/network
$(INSTALL_DATA) ./files/3g.sh $(1)/lib/network/3g.sh
$(INSTALL_BIN) ./files/3g.sh $(1)/lib/network/3g.sh
$(INSTALL_DIR) $(1)/etc/hotplug.d/button
$(INSTALL_DATA) ./files/3g.button $(1)/etc/hotplug.d/button/05-3g
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
......
set_3g_led() {
# set on WRT54G3G only
[ -d /proc/diag ] || return 0
grep WRT54G3G /proc/diag/model >/dev/null || return 0
[ -f /proc/diag/model ] || return 0
grep -q "WRT54G3G" /proc/diag/model >/dev/null || return 0
echo "$1" > /proc/diag/led/3g_green
echo "$2" > /proc/diag/led/3g_blue
grep -q "WRT54G3G$" /proc/diag/model >/dev/null || return 0
echo "$3" > /proc/diag/led/3g_blink
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment