john_alan
Posts: 40
Joined: Mon Jul 22, 2019 7:20 pm

rpi-eeprom-update on the Pi4 - unusual output?

Thu Feb 27, 2020 7:06 pm

Code: Select all

BCM2711 detected
BOOTLOADER: up-to-date
CURRENT: Thu Jan  9 18:25:54 UTC 2020 (1578594354)
 LATEST: Tue Sep 10 10:41:50 UTC 2019 (1568112110)
VL805: up-to-date
CURRENT: 000137ad
 LATEST: 000137ad
I see the above, running sudo

Code: Select all

rpi-eeprom-update
on my Pi4, why would current be greater than latest?

Do I need to clear some cache?

Thanks
John

Solskogen
Posts: 24
Joined: Tue Sep 27, 2016 6:07 am

Re: rpi-eeprom-update on the Pi4 - unusual output?

Fri Feb 28, 2020 2:29 pm

New install with a old image, perhaps? Try a "apt-get update && apt-get dist-upgrade -fu && reboot" and try again.

timg236
Raspberry Pi Engineer & Forum Moderator
Raspberry Pi Engineer & Forum Moderator
Posts: 524
Joined: Thu Jun 21, 2018 4:30 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Fri Feb 28, 2020 2:59 pm

It looks like a beta image was installed on that board at some point in the past but the /etc/default/rpi-eeprom-update is pointing at the 'critical' release folder instead

john_alan
Posts: 40
Joined: Mon Jul 22, 2019 7:20 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Sat Feb 29, 2020 7:52 am

thanks @timg236 - what can I do to get this board to the right version?

User avatar
PeterO
Posts: 5829
Joined: Sun Jul 22, 2012 4:14 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Sat Feb 29, 2020 8:02 pm

I get the same output so I too would like to know if it is a problem , and if so how to fix it.
PeterO
Discoverer of the PI2 XENON DEATH FLASH!
Interests: C,Python,PIC,Electronics,Ham Radio (G0DZB),1960s British Computers.
"The primary requirement (as we've always seen in your examples) is that the code is readable. " Dougie Lawson

RonR
Posts: 1194
Joined: Tue Apr 12, 2016 10:29 pm
Location: US

Re: rpi-eeprom-update on the Pi4 - unusual output?

Sat Feb 29, 2020 11:07 pm

How 'bout this instead?:

Code: Select all

root@FreePBX:~# rpi-eeprom-update
BCM2711 detected
BOOTLOADER: up-to-date
CURRENT: Fri 17 Jan 17:37:11 UTC 2020 (1579282631)
 LATEST: Tue 10 Sep 10:41:50 UTC 2019 (1568112110)
VL805: up-to-date
CURRENT: 000137ad
 LATEST: 000137ad

User avatar
PeterO
Posts: 5829
Joined: Sun Jul 22, 2012 4:14 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Sun Mar 01, 2020 8:04 am

timg236 wrote:
Fri Feb 28, 2020 2:59 pm
It looks like a beta image was installed on that board at some point in the past but the /etc/default/rpi-eeprom-update is pointing at the 'critical' release folder instead

Code: Select all

pi@raspberrypi:/etc/default $ cat rpi-eeprom-update 
FIRMWARE_RELEASE_STATUS="critical"
pi@raspberrypi:/etc/default $
So what should it say ?
PeterO
Discoverer of the PI2 XENON DEATH FLASH!
Interests: C,Python,PIC,Electronics,Ham Radio (G0DZB),1960s British Computers.
"The primary requirement (as we've always seen in your examples) is that the code is readable. " Dougie Lawson

DirkS
Posts: 10347
Joined: Tue Jun 19, 2012 9:46 pm
Location: Essex, UK

Re: rpi-eeprom-update on the Pi4 - unusual output?

Sun Mar 01, 2020 11:43 am

PeterO wrote:
Sun Mar 01, 2020 8:04 am
timg236 wrote:
Fri Feb 28, 2020 2:59 pm
It looks like a beta image was installed on that board at some point in the past but the /etc/default/rpi-eeprom-update is pointing at the 'critical' release folder instead

Code: Select all

pi@raspberrypi:/etc/default $ cat rpi-eeprom-update 
FIRMWARE_RELEASE_STATUS="critical"
pi@raspberrypi:/etc/default $
So what should it say ?
PeterO
Mine says

Code: Select all

FIRMWARE_RELEASE_STATUS=beta
and seems to be ok

Code: Select all

pi@raspiserver:~$ sudo rpi-eeprom-update
BCM2711 detected
BOOTLOADER: up-to-date
CURRENT: Fri 17 Jan 17:37:11 UTC 2020 (1579282631)
 LATEST: Fri 17 Jan 17:37:11 UTC 2020 (1579282631)
VL805: up-to-date
CURRENT: 000137ad
 LATEST: 000137ad

User avatar
PeterO
Posts: 5829
Joined: Sun Jul 22, 2012 4:14 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Mon Mar 02, 2020 10:01 am

It seems unlikely it should "beta" or "critical" ?

Can anyone explain what these mean and what it should say ?

PeterO
Discoverer of the PI2 XENON DEATH FLASH!
Interests: C,Python,PIC,Electronics,Ham Radio (G0DZB),1960s British Computers.
"The primary requirement (as we've always seen in your examples) is that the code is readable. " Dougie Lawson

andrum99
Posts: 1207
Joined: Fri Jul 20, 2012 2:41 pm

Re: rpi-eeprom-update on the Pi4 - unusual output?

Mon Mar 02, 2020 1:08 pm

PeterO wrote:
Mon Mar 02, 2020 10:01 am
It seems unlikely it should "beta" or "critical" ?

Can anyone explain what these mean and what it should say ?

PeterO
'Current' shows the bootloader and VL805 firmware that are currently installed in the EEPROM chips on that Pi. 'Latest' shows the newest firmware on the branch you have selected: 'critical' is the default. There are also 'beta' and now 'stable' branches. You select which branch to install by setting the FIRMWARE_RELEASE_STATUS variable in the file '/etc/default/rpi-eeprom-update'.

If you previously chose the 'beta' branch, then changed back to 'critical' then this would explain why 'current' is later than 'latest' - the 'beta' branch was updated more recently.

If you have never changed the value of FIRMWARE_RELEASE_STATUS, and 'current' is newer than 'latest' then that's a bug.

Return to “Troubleshooting”