Editing the EEPROM disables my raspberry pi5

When doing this, I restart my rpi5 to check if the LED lights on the fans and if the fans turn off, this happens. The fans and lights turn off until the computer shuts down. the green light on the front of the pironman 5 turns from green to red and the fans and lights turn back on and i am unable to get the box going again unless i flash the eeprom which wipes my drive and I have to start over. Any help on this would be greatly appreciated.

This is apparently the first step you do when installing the pironman software on Ubuntu.

Configuring Shutdown to Deactivate GPIO Power

To prevent the OLED screen and RGB fans, powered by the Raspberry Pi GPIO, from remaining active post-shutdown, it’s essential to configure the Raspberry Pi for GPIO power deactivation.

  1. Manually edit the EEPROM configuration file with this command:

sudo rpi-eeprom-config -e

Modify the POWER_OFF_ON_HALT setting in the file to 1. For instance:

BOOT_UART=1 POWER_OFF_ON_HALT=1 BOOT_ORDER=0xf41

Are you using SSD to boot the system?
If so, when you execute the sudo rpi-eeprom-config-e command configuration file, please only modify POWER_OFF_ON_HALT=1
If you also modify BOOT_ORDER to BOOT_ORDER=0xf41, the command will disable booting from SSD.
BOOT_ORDER is the boot order of the system:
4 is to boot the system from USB; 1 is to boot the system from SD card; 6 is to boot the system from SSD.
If you delete 6, it will disable SSD, which is why you cannot boot the system from SSD.
Correct configuration shutdown to disable GPIO power:
sudo rpi-eeprom-config -e:

BOOT_UART=1
POWER_OFF_ON_HALT=1
BOOT_ORDER=0xf416

1 Like

this is the current configuration
all]
BOOT_UART=1
BOOT_ORDER=0xf461
NET_INSTALL_AT_POWER_ON=1

Your updated configuration corrected my issue. THank you so much for the quick response.