04-19-2023, 12:00 AM
(04-18-2023, 11:39 PM)Tim Curtis Wrote:(04-18-2023, 11:03 PM)TheOldPresbyope Wrote:(04-18-2023, 07:43 PM)Tim Curtis Wrote:(04-18-2023, 06:58 PM)the_bertrum Wrote: I'll run my zero with the entropy service disabled for a while to see if anything goes wrong. Since it's for seeding encryption and so on, I can't see moOde relying on it too much...
I did find my Zero W and with the change to the is-system-running check in worker it booted up a fresh image without any issues.
According to the doc the is-system-running check returns "degraded" if any systemd unit fails to start and in this case it's the haveged unit. It won't start on my Zero W and apparently on your Zero as well. Maybe it's not liking the arm6? In any case not starting doesn't seem to do any harm and so it can prolly be left as-is but I'll have to do some more research to see if in fact its not really needed anymore and can be left out of future builds.
Curious. I just tried flashing yet another 32-bit image (using RPi Imager to download it) and starting on my Zero W. I got the same kind of problematic result got before. Have to start digging.
Regards,
Kent
Did you patch worker.php before first boot?
// Check for Linux startup complete
.
.
Change
if ($result[0] == 'running') {
To
if ($result[0] == 'running' || $result[0] == 'degraded') {
Oops. No