mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-20 21:13:36 +08:00
9
debian/changelog
vendored
9
debian/changelog
vendored
@@ -1,3 +1,12 @@
|
||||
rpi-eeprom (3.1-1) buster; urgency=medium
|
||||
|
||||
[ Tim Gover ]
|
||||
* Update release notes for rpi-eeprom-config change
|
||||
* 2019-01-17: Fix SD card voltage detect + DHCP option 0 padding
|
||||
* rpi-eeprom-config: Fix padding calculation
|
||||
|
||||
-- Serge Schneider <serge@raspberrypi.org> Tue, 14 Jan 2020 16:12:38 +0000
|
||||
|
||||
rpi-eeprom (3.0-1) buster; urgency=medium
|
||||
|
||||
[ Tim Gover ]
|
||||
|
||||
BIN
firmware/beta/pieeprom-2020-01-17.bin
Normal file
BIN
firmware/beta/pieeprom-2020-01-17.bin
Normal file
Binary file not shown.
@@ -1,5 +1,12 @@
|
||||
# Raspberry Pi4 bootloader EEPROM release notes
|
||||
|
||||
## 2020-01-17 - Git 9e30fb4d (BETA) RC4
|
||||
* Handle DHCP option 0 - padding
|
||||
* Fix SD card voltage detection
|
||||
|
||||
## 2020-01-14 - rpi-eeprom-config
|
||||
* Fix padding calculation
|
||||
|
||||
## 2020-01-09 - Git df0ff18c (BETA) RC3
|
||||
* Fix parsing of multiple menu entries in PXE options.
|
||||
* Fix regression in IP address parsing
|
||||
|
||||
@@ -48,8 +48,8 @@ class BootloaderImage(object):
|
||||
if name.decode('utf-8') == 'bootconf.txt':
|
||||
return (offset, length)
|
||||
|
||||
offset += 4 + length
|
||||
offset += 8 - (offset % 8) # Pad
|
||||
offset += 8 + length # length + type
|
||||
offset = (offset + 7) & ~7
|
||||
|
||||
raise Exception('Bootloader config not found')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user