(04-18-2023, 05:34 PM)the_bertrum Wrote:(04-18-2023, 05:12 PM)TheOldPresbyope Wrote: Yeah, the entropy is a thing but shouldn't be cropping up here.
By way of contrast to my Zero-W experience
1) fresh install of the 64bit moOde 8.3.1 on a Pi4B seems to have gone through without issue. No weirdness discovered yet.
2) attempt to update a 64bit moOde 8.3.0 on a Pi3A seemed to work but resulted in weirdness (updater claimed to install new kernel but moodeutl reported old one; the update check kept claiming there was an update available). I thought I'd rebooted after the update but it's possible I reboot the wrong player in the heat of the moment. Anyway, rebooting again seems to have cleared things up.
moodeutl still reports the missing file
Code:Gathering info...
grep: /sys/class/leds/led0/trigger: No such file or directory
...
Regards,
Kent
My 64bit players (Pi4) both upgraded without an issue (one in place, one fresh install then restore from backup).
I too get that missing file report on both.
For what I can see there is no "led0" in /sys/class/leds/, everyting is a symlink to /sys/devices/platform/leds/leds/<something> or /sys/devices/virtual/leds/leds/<something>
Maybe the new kernel has given the leds some other name?
ETA
Also, I see the two errors in sysinfo.sh... It's better to have the "if" statemets as follows:
instead of
Code:
if [ $MODEL = 3 ]; then
use
Code:
if [ "x${MODEL}x" = "x3x" ]; then
so that an empty / not found variable won't break the syntax of the script - as the above at the moment evaluate as if it was written:
if [ = 3 ]; then