Rpi4 no longer booting after bootloader upgrade to 210706

is just a corrupt FAT partition. Have you tried:

  1. Booting from one of the Manjaro live ISOs burnt to a USB stick
    OR
    moving your external USB HDD to another Manjaro computer.

  2. Executing:

    dosfsck -w -r -l -v -t /dev/XdYn
    

    where:

    • X, Y and n denominate the corrupted FAT partition
    • -w means write to disk immediately.
    • -r means to do disk check interactively
    • -l means to list the filenames processed.
    • -v means verbose mode. Generates slightly more output.
    • -t means mark unreadable clusters as bad.

If you want to be sure not to lose any data, create an image of your HD first. (in this case: I would make the image on another computer)

:crossed_fingers:

1 Like