Página 1 de 1

RPI4 boot desde SSD

Publicado: 10 Nov 2020, 17:28
por DSR!
Tenia un RPI4 de pisapapeles porque no tenían soporte aun para arrancar desde SSD.
Según los changelog esta desde septiembre pero no lo había conseguido hasta ahora!

Les dejo los pasos que seguí a modo de mini manual:

1. Boot from a standard microSD card with the latest Raspberry Pi OS on it.

2. Update your OS and firmware by typing:

Código: Seleccionar todo

sudo apt update
sudo apt full-upgrade
sudo rpi-update
3. Edited the rpi-eeprom-update file and changed the “critical” value for the FIRMWARE_RELEASE_STATUS option to “stable”, using:

Código: Seleccionar todo

sudo nano /etc/default/rpi-eeprom-update
4. Install the latest bootloader by typing:

Código: Seleccionar todo

sudo rpi-eeprom-update -d -a
5. Reboot the Pi and check the bootloader version by opening Terminal and running:

Código: Seleccionar todo

vcgencmd bootloader_version
Result:

Código: Seleccionar todo

       Jul 16 2020 16:15:46
       version 45291ce619884192a6622bef8948fb5151c2b456 (release)
       timestamp 1594912546
Extras:

Change bootorder:

Código: Seleccionar todo

sudo -E rpi-eeprom-config --edit
# change BOOT_ORDER to 0x4
reboot
Disable SD poll error

Código: Seleccionar todo

# Edit config.txt from SSD and uncoment:
dtparam=sd_poll_once=on