mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-21 14:53:32 +08:00
12
debian/changelog
vendored
12
debian/changelog
vendored
@@ -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
|
||||||
|
|
||||||
|
|||||||
2
debian/rpi-eeprom.install
vendored
2
debian/rpi-eeprom.install
vendored
@@ -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/
|
||||||
|
|||||||
BIN
firmware/critical/vl805-00013701.bin
Normal file
BIN
firmware/critical/vl805-00013701.bin
Normal file
Binary file not shown.
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user