OpenELEC Testbuilds for RaspberryPi
(2013-06-15, 20:12)kataiba Wrote: I've sorted the Time and Date fail by adding this:

#!/bin/sh
(sleep 30; \
/usr/sbin/ntpdate pool.ntp.org; \
)&

to autostart.sh

More on how to create update.sh here

Rather than wait a fixed amount of time and hope it's long enough (which also requires you to fork a sub-process), the following autostart.sh is a better alternative when waiting for the network to come up...

Code:
#!/bin/sh
# Wait for the network to come up...
while [ -z "$(connmanctl state | grep State | grep -E "ready|online")" ]; do sleep 0.25; done; logger -t "$(basename $0)" "** Network is up **"

/usr/sbin/ntpdate pool.ntp.org
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.


Messages In This Thread
MythTV PVR: No Video - by hkramski - 2012-11-13, 20:32
Cumulative Small Skip forward ... - by xandy - 2013-02-03, 15:46
RE: OpenELEC Testbuilds for RaspberryPi - by Milhouse - 2013-06-15, 20:32
:00 - by Koloss - 2013-07-14, 12:09
RE: :00 - by popcornmix - 2013-07-14, 12:28
Logout Mark Read Team Forum Stats Members Help
OpenELEC Testbuilds for RaspberryPi12