You can utilize commands to turn on/off/blink lights in hidden config.xml commands on bootup or on filter reload:
http://faq.pfsense.com/index.php?action=artikel&cat=10&id=38&artlang=en&highlight=hidden ;)
like make it blink with earlyshellcommand and switch to sold with shellcommand after it's up…
Just tested this and it works (insert below your <system>tag in your downloaded config.xml and restore it again):
<earlyshellcmd>echo 1 > /dev/led/led2</earlyshellcmd> <shellcmd>echo 1 > /dev/led/led3</shellcmd>This will do the following on a wrap (like a progressmeter):
light 1 turns on when system is initializing bios light 2 turns on early in the boot process light 3 tunrs on when the bootup is nearly finishedIn case you have only one LED (soekris) you can try this:
<earlyshellcmd>echo f4 > /dev/led/led1</earlyshellcmd> <shellcmd>echo 1 > /dev/led/led1</shellcmd>This will make the first LED blink when early in the bootup process and switch to solid when it's nearly done.</system>