From 53a9db66e3da4f3d163beb5dc85cd2773c7a2918 Mon Sep 17 00:00:00 2001 From: cshore Date: Mon, 2 Aug 2010 19:33:08 +0000 Subject: [PATCH] [brcm63xx]: base-files: diag.sh: For power button as preinit status led, end with led left on, not off git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22466 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/brcm63xx/base-files/etc/diag.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/target/linux/brcm63xx/base-files/etc/diag.sh b/target/linux/brcm63xx/base-files/etc/diag.sh index f77200aeed..fd9de29ad4 100755 --- a/target/linux/brcm63xx/base-files/etc/diag.sh +++ b/target/linux/brcm63xx/base-files/etc/diag.sh @@ -61,7 +61,11 @@ set_state() { status_led_set_timer 50 50 ;; done) - status_led_off + if [ "$status_led" = "power" ]; then + status_led_on + else + status_led_off + fi ;; esac } -- 2.30.2