Merge pull request #51 from XECDesign/debian/buster

Debian/buster
This commit is contained in:
Tim Gover
2019-11-11 13:38:43 +00:00
committed by GitHub
5 changed files with 18 additions and 5 deletions

12
debian/changelog vendored
View File

@@ -1,10 +1,18 @@
rpi-eeprom (2.2-2) UNRELEASED; urgency=medium rpi-eeprom (2.3-1) buster; urgency=medium
[ Tim Gover ]
* license: Move vl805 to firmware to match license document
* vl805: Make 13701 available in the critical directory
[ MilhouseVH ]
* use lspci if available instead of vl805. Avoid calling vl805 twice.
[ Serge Schneider ] [ Serge Schneider ]
* Add binutils dependency * Add binutils dependency
- https://github.com/RPi-Distro/repo/issues/156 - https://github.com/RPi-Distro/repo/issues/156
* Install vl850 from firmware/
-- Serge Schneider <serge@raspberrypi.org> Thu, 07 Nov 2019 14:19:46 +0000 -- Serge Schneider <serge@raspberrypi.org> Mon, 11 Nov 2019 13:24:43 +0000
rpi-eeprom (2.2-1) buster; urgency=medium rpi-eeprom (2.2-1) buster; urgency=medium

View File

@@ -1,4 +1,4 @@
rpi-eeprom-config usr/bin/ rpi-eeprom-config usr/bin/
rpi-eeprom-update usr/bin/ rpi-eeprom-update usr/bin/
debian/default/ etc/ debian/default/ etc/
vl805 usr/bin/ firmware/vl805 usr/bin/

Binary file not shown.

View File

@@ -388,8 +388,13 @@ getVL805CurrentVersion()
# root then treat the version as unknown and skip VLI updates. # root then treat the version as unknown and skip VLI updates.
VL805_CURRENT_VERSION="" VL805_CURRENT_VERSION=""
if [ "$(id -u)" = "0" ]; then if [ "$(id -u)" = "0" ]; then
if vl805 | grep -q "VL805 FW version"; then if command -v lspci >/dev/null; then
VL805_CURRENT_VERSION=$(vl805 | grep "VL805 FW version" | awk '{print $4}') vlver="$(lspci -d 1106:3483 -xxx | awk '/^50:/ { print "VL805 FW version: " $5 $4 $3 $2 }')"
else
vlver="$(vl805 | grep "VL805 FW version")"
fi
if [ -n "${vlver}" ]; then
VL805_CURRENT_VERSION="${vlver#*: }"
fi fi
fi fi
} }