|
2014-07-16
, 14:30
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#12
|
The Following User Says Thank You to pali For This Useful Post: | ||
|
2014-07-16
, 15:12
|
|
Posts: 5,028 |
Thanked: 8,613 times |
Joined on Mar 2011
|
#13
|
disadvantages for R&D mode:
* keyboard backlight is never turned off (even when keyboard is closed!)
The Following 2 Users Say Thank You to Estel For This Useful Post: | ||
|
2014-07-16
, 15:18
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#14
|
|
2014-07-16
, 18:39
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#15
|
I know it is possible to modify it via some /etc/... file. Also somewhere I have unfinished new preinit... https://gitorious.org/community-ssu/getbootstate But I have no time to finish it :-(
The Following 2 Users Say Thank You to reinob For This Useful Post: | ||
|
2014-07-16
, 19:33
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#16
|
echo inactive > /sys/devices/platform/gpio-switch/sleep_ind/state
|
2014-07-16
, 19:38
|
|
Posts: 6,447 |
Thanked: 20,981 times |
Joined on Sep 2012
@ UK
|
#17
|
The Following 4 Users Say Thank You to pichlo For This Useful Post: | ||
|
2014-07-17
, 08:38
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#18
|
Actually, it is related to the battery to some extent. A watchdog not kicked for a certain time indicates a runaway process (or, worse, a kernel module) that could easily result in running until the battery dies.
A desktop has (theoretically) a limitless supply of power and does not need to concern itself with battery issues. It can of course still suffer from lockups caused by runaway processes but the choice to reboot is left to the user.
Most embedded systems have a watchdog of some kind, usually because they are designed to work autonomously. A mobile phone is a different kind of an embedded system: it has a lot of user interaction. I do not mind a watchdog on my phone but I would prefer it to pop up a dialog with options (ignore, close current application, reboot) rather that choosing for me.
If that is not possible, then the second best would be to increase the watchdog timeout. 30 seconds seems too short, considering most times it happpened to me was due to loading a picture in the browser. 5 minutes is more like it. Of course, that would not help if the reboot was due to running out of memory or /tmp space but then, the culprit process should be easily identified and killed rather than the whole system suffering.
BTW, I would not be so sure about safe FS unmounting. I have had a few brower-induced reboots resulting in a corrupt optfs and/or MyDocs.
|
2014-07-17
, 08:47
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#19
|
The Following User Says Thank You to pali For This Useful Post: | ||
@pali,
Quoting myself: "I've never had an *active* watchdog on a PC."