Hurray!
Okay, so it boots and you can reach it over the network. That’s great because this means you don’t need a uart adapter to continue debugging this. You do not have display yet but you only need the terminal for diagnostics anyways, so lets go! ![]()
I think three outputs would be of interest:
- the
reform-checkoutput would be nice because the one you pasted above was from a working system. Maybe something funny shows up when you run it on a system where the display is not coming up. dmesgoutput might contain interesting clues for Lucie to figure out what’s wrongjournalctl -boutput might print interesting things too, so it doesn’t hurt
The output of these commands is long but you can run commands on the pocket remotely via ssh and redirect their standard output to a file on your classic reform. Like this:
$ ssh -t micha@192.168.17.109 sudo reform-check > reform-check.txt 2>&1
$ ssh -t micha@192.168.17.109 sudo dmesg > dmesg.txt 2>&1
$ ssh -t micha@192.168.17.109 sudo journalctl -b > journalctl.txt 2>&1
And then put the contents of reform-check.txt, dmesg.txt and journalctl.txt either here if they are not too long or into a pastebin.
Thank you!