Thanks a lot for this information. Unfortunately, all issues aren't solved yet.
After re-flashing the latest uBoot (which was already there before) and setting the arcNumber to the new dockstar value, the status led is now solid green after bootup. Also two files (status:green:health and status:orange:fault) are now present in the /sys/clas/leds folder. However, all other dockstar specific triggers which should reside in the /dockstar subfolder are still missing, even after re-installing iptables 1.4.10-1. The triggers I'd like to use are described in this Arch Linux ARM guide, step five:
http://Arch Linux ARM.com/index.php5?title=Ten(ish)_steps_to_setting_up_a_Seagate_DockstarIs there a way to get the missing triggers if they aren't present in the new kernel installation package by default? Putting trigger commands into rc.local or rc.local.shutdown doesn't make any sense as long as the necessarry dockstar triggers are not existing at all. For example:
$this->bbcode_second_pass_code('', '#Set up orange LED to blink on incoming TCP traffic (rc.local)
iptables -A INPUT -p tcp -j LED --led-trigger-id tcpin --led-delay 100
echo netfilter-tcpin > /sys/class/leds/dockstar\:orange\:misc/trigger') or
$this->bbcode_second_pass_code('', '#Set up orange LED to pulse heartbeat when system halted (rc.local.shutdown)
echo heartbeat > /sys/class/leds/dockstar\:orange\:misc/trigger')
Thanks in advance for your help.
Edit on----
Ok, finally I got it. In order to make the LED triggers work with the new kernel version, the command paths have to be changed:
$this->bbcode_second_pass_code('', 'from /sys/class/leds/dockstar\:green\:health to /sys/class/leds/status\:green\:health') and
$this->bbcode_second_pass_code('', 'from /sys/class/leds/dockstar\:orange\:misc to /sys/class/leds/status\:orange\:fault')
Maybe you can update all the official guides to reflect that basic change. Thank you.Edit off----