Rock64 bricked after upgrade - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: ROCK64 (https://forum.pine64.org/forumdisplay.php?fid=85) +--- Forum: Linux on Rock64 (https://forum.pine64.org/forumdisplay.php?fid=88) +--- Thread: Rock64 bricked after upgrade (/showthread.php?tid=9564) |
Rock64 bricked after upgrade - jean_bruder - 04-02-2020 Dear all, First of all, a big thank to the PINE64 Team for that really good board. I have 2 at home and I am very happy to use them ! Some days ago, I did the standard update I do all the weeks, and noticed new kernel release. I did my upgrade as usual using the "apt update", "apt upgrade" and finally "apt-dist-upgrade" command. But, the board did not boot ... Please find below the boot log of the latest kernel installed on the board : Code: DDR version 1.13 20180428 And nothing more ... Can someone please help me to solve this issue without having to reinstall the system, as it hosts my NextCloud home server ? Many thanks in advance, Best regards, Jean RE: Rock64 bricked after upgrade - tophneal - 04-02-2020 Obviously it's Debian-based, but it'll be helpful to tell us what OS you're using. There's several options for the Rock64. RE: Rock64 bricked after upgrade - jean_bruder - 04-02-2020 (04-02-2020, 07:21 AM)tophneal Wrote: Obviously it's Debian-based, but it'll be helpful to tell us what OS you're using. There's several options for the Rock64. Dear @tophneal, Here's the content of the "/etc/arbian-image-release" : Code: # PLEASE DO NOT EDIT THIS FILE Content of the "/etc/debian_version" file : Code: 10.3 I hope this will help I tryied to chroot to the SD Card in order to install a debian kernel package I downloaded from the apt.raspbian.com repository, but from my Linux Mint laptop, this seems to be not working because of the different architecture ? Regards, Jean RE: Rock64 bricked after upgrade - tophneal - 04-02-2020 Looking through a few similar issues on the Armbian forums, a good first step might be to run fsck on the SD. You might also try using armbian-config in chroot to downgrade your kernel. RE: Rock64 bricked after upgrade - jean_bruder - 04-02-2020 (04-02-2020, 07:39 AM)tophneal Wrote: Looking through a few similar issues on the Armbian forums, a good first step might be to run fsck on the SD. You might also try using armbian-config in chroot to downgrade your kernel. Dear @tophneal, Checking the SD Card show no error on the card I followed the link https://askubuntu.com/questions/28099/how-to-restore-a-system-after-accidentally-removing-all-kernels in order to downgrade the kernel, but got the following error while chrooting : Code: jean@Astux:~$ sudo chroot /mnt/SDCard/ This seems to be induced by different binary formats : Code: jean@Astux:~$ file /mnt/SDCard/bin/bash Is there something I can do so far ? Regards, Jean RE: Rock64 bricked after upgrade - tophneal - 04-02-2020 Try pointing to where /bin/bash is on your SD, for example chroot /mnt/SDCard /usr/bin/bash RE: Rock64 bricked after upgrade - jean_bruder - 04-02-2020 (04-02-2020, 08:22 AM)tophneal Wrote: Try pointing to where /bin/bash is on your SD, for example chroot /mnt/SDCard /usr/bin/bash Dear @tophneal, The binary format is not the same on my laptop and the SD Card, so bash cannot start (see my above comment) Code: jean@Astux:~$ sudo chroot /mnt/SDCard /bin/bash Does that mean I have to find another board running the same kind of CPU in order to do the chroot properly ? Regards, Jean RE: Rock64 bricked after upgrade - tophneal - 04-02-2020 No, it means it can't find bash. Is /bin/bash the path to your Armbian bash? Sorry. I'm wrong, yes. You'll need another device of the same architecture to properly chroot into it. Or you can use qemu-arm: Code: # This provides the qemu-arm-static binary You might also try copying any configuration changes you've made to you x86 install, make a fresh SD, and then copy over your configuration changes. |