Raspi 4b: Boot von SSD klappt nichf

Xechon

Commander Pro
Registriert
Feb. 2014
Beiträge
2.123
Guten Abend CBler,

ich brauch mal wieder eure Hilfe. Ich bekomme meinen Raspi einfach nicht zum Boot via SSD. Gebootet soll von einer Lexar NS100 werden. Als Case kommt ein Ugreen Case mit einem wohl recht kompatiblen ASMedia Controller (genaue Bezeichnung weiß ich gerade nicht, habe aber im Netz eine Übersicht von „kompatiblen“ Controllern gefunden, da war der ganz oben dabei) zum Einsatz.

Zu erst dachte ich, es läge am Netzteil (3A). Allerdings habe ich nun mal das Micro-HDMI-Kabel angeschlossen. Ich bekomme diese Meldung (siehe Anlage).

Ja, ich kann lesen. Allerdings gibt es keine anderen Updates, zumindest nicht mit den normalen sudo apt update und upgrade-Befehlen.

USB-Boot via raspi-config habe ich ebenfalls eingestellt.

Könnt ihr mir helfen?
 

Anhänge

  • 58F9E839-8B5E-47B3-BCAA-D79D1668BCEC.jpeg
    58F9E839-8B5E-47B3-BCAA-D79D1668BCEC.jpeg
    1,4 MB · Aufrufe: 329
Deine Firmware ist vom September 2020; für das advanced Booten brauchst Du vmtl. eine neuere.
Lies mal in Ruhe
~ $ rpi-eeprom-update ---help|more
und folge auch dem Link / den Links, um die offizielle Doku nicht zu verpassen.
 
Hm. Danke dir @Phrasendreher . Das bekomme ich, wenn ich den Code eingebe:
Code:
~ $ rpi-eeprom-update ---help|more
Illegal option --
Unknown argument "?"
rpi-eeprom-update [options]... [FILE]

Bootloader EEPROM update tool for the Raspberry Pi 4.

Checks whether the Raspberry Pi 4 bootloader and the VL805 USB controller
EEPROMs are up-to-date and optionally updates the EEPROMs at the next reboot.

The default update mechanism writes recovery.bin and the EEPROM update
image(s) (pieeprom.upd and vl805.bin) to the boot partition.
The SHA256 hash of the corresponding images are written to pieeprom.sig
and/or vl805.sig. This guards against file system corruption which could
cause the EEPROM to be flashed with an invalid image. This is not a
security check.

At the next reboot the ROM runs recovery.bin which updates EEPROM(s).
If the update was successful recovery.bin renames itself to recovery.000
to prevent it from running a second time then resets the system.
The system should then boot normally.

If /boot does not correspond to the boot partition and this
is not a NOOBS system, then the mount point for BOOTFS should be defined
in /etc/default/rpi-eeprom-update by defining the BOOTFS variable.

Ich meine nicht, dass das was geändert hat?
Ergänzung ()

Ach und in Zeile 26 kommt dann noch ein hinterlegtes "--More--" aber Links anklicken kann ich da nicht?
 
Zuletzt bearbeitet:
hm... ich denke im '"cirtical" path wurde USB Boot erst ab dem 14. September release unterstützt.
https://github.com/raspberrypi/rpi-eeprom/blob/master/firmware/release-notes.md

Ist aber nicht schlimm, hier wie man den Bootloader aktualisiert:

Bootloader Version prüfen:
vcgencmd bootloader_version

Updates durchführen (das full-upgrade installiert auch den letzten "Critical" bootloader):
sudo apt-get update
sudo apt-get full-upgrade -y
sudo reboot

Falls Du den aktuellsten "Stable" möchtest (würde ich empfehlen):
Variable in der Datei epi-eeprom-update abändern:
Öffnen der Datei:
sudo nano /etc/default/rpi-eeprom-update
Wert ändern auf:
FIRMWARE_RELEASE_STATUS="stable"

Updates durchführen (das full-upgrade installiert auch den letzten "Stable" bootloader):
sudo apt-get update
sudo apt-get full-upgrade -y
sudo reboot

---------------------------------------------------------------------------
Oder manuell den Bootloader updaten:
cd /lib/firmware/raspberrypi/bootloader/stable/
ls -l
sudo rpi-eeprom-update -d -f pieeprom-[Aktuelles Datum].bin
 
Zurück
Oben