For everyone, who want to have camera indicator red led disabled for good (persistent through reboots), but we're too shy to ask 1. Create (as root) a text file (called, for example, 'custom') in /etc/event.d/ 2. Paste this content into Your 'custom' file: Code: description ''custom'' start on started hildon-desktop stop on starting shutdown console none service script echo 1 >/sys/class/i2c-adapter/i2c-2/2-0030/disable_indicator_led end script 3. At the end, You should have a file: /etc/event.d/custom containing content from point 2. You're done - now, Your indicator led will be disabled for good, unless You enable it manually, via changing sys entry to 0 via hand, during runtime. Even still, after next reboot, indicator led will be disabled again. --- To undo, just delete /etc/event.d/custom (as root: rm /etc/event.d/custom) /Estel
description ''custom'' start on started hildon-desktop stop on starting shutdown console none service script echo 1 >/sys/class/i2c-adapter/i2c-2/2-0030/disable_indicator_led end script