diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-03-16 15:57:41 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-03-16 15:57:41 +0000 |
commit | 6377115cdc3a551e077d51f56e84811d1e03cb4e (patch) | |
tree | a65999ed0f39412949f5f2556af55a3fc4a970b0 /packages/slugos-init/files | |
parent | 4513d932767a810f70d3450113a517c5e1f6e43a (diff) |
slugos-init: improve the handling of the ready led for the nas100d (i.e. stop it blinking when everything is up)
Diffstat (limited to 'packages/slugos-init/files')
-rw-r--r-- | packages/slugos-init/files/leds | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/slugos-init/files/leds b/packages/slugos-init/files/leds index f5011f8bad..8043dae682 100644 --- a/packages/slugos-init/files/leds +++ b/packages/slugos-init/files/leds @@ -18,8 +18,9 @@ esac # handle the 'user' setting. led_user_default(){ case "$(machine)" in - nslu2) echo -n "cpu-idle";; - *) echo -n "cpu";; + nslu2) echo -n "cpu-idle";; + nas100d) echo -n "on";; + *) echo -n "cpu";; esac } # |