Merge branch 'master' into debian/buster

This commit is contained in:
Serge Schneider
2019-10-31 12:50:16 +00:00
3 changed files with 16 additions and 13 deletions

View File

@@ -77,6 +77,9 @@ class BootloaderImage(object):
if self._out is not None:
self._out.write(self._bytes)
self._out.close()
else:
if hasattr(sys.stdout, 'buffer'):
sys.stdout.buffer.write(self._bytes)
else:
sys.stdout.write(self._bytes)
@@ -87,6 +90,9 @@ class BootloaderImage(object):
if self._out is not None:
self._out.write(config_bytes)
self._out.close()
else:
if hasattr(sys.stdout, 'buffer'):
sys.stdout.buffer.write(config_bytes)
else:
sys.stdout.write(config_bytes)

View File

@@ -282,7 +282,7 @@ rpi-eeprom-update [options]... [FILE]
image(s) (pieeprom.upd and vl805.bin) to the boot partition on the sd-card.
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 is not a
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).

View File

@@ -141,20 +141,17 @@ check_conf_size_too_large()
fi
}
check_loopback "../firmware/critical/pieeprom-2019-05-10.bin" "bootconf-2019-05-10.txt"
cleanup
check_loopback "../firmware/critical/pieeprom-2019-07-15.bin" "bootconf-2019-07-15.txt"
cleanup
check_update "../firmware/critical/pieeprom-2019-07-15.bin" "pieeprom-2019-07-15-freeze.bin" "bootconf-2019-07-15-freeze.txt"
cleanup
check_reduce_size "../firmware/critical/pieeprom-2019-05-10.bin" "bootconf-2019-05-10.txt"
check_reduce_size "../firmware/critical/pieeprom-2019-07-15.bin" "bootconf-2019-07-15.txt"
cleanup
check_conf_size_large "../firmware/critical/pieeprom-2019-05-10.bin"
check_conf_size_large "../firmware/critical/pieeprom-2019-07-15.bin"
cleanup
check_conf_size_too_large "../firmware/critical/pieeprom-2019-05-10.bin"
check_conf_size_too_large "../firmware/critical/pieeprom-2019-07-15.bin"
cleanup