mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-20 21:13:36 +08:00
Update the test/install script to remove previous firmware files. This fixes a problem where the install script failed because beta is now a symlink and not a directory.
35 lines
917 B
Bash
Executable File
35 lines
917 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Convenience script for updating the rpi-eeprom updater via a git
|
|
# clone instead of apt install.
|
|
|
|
# For test & debug only.
|
|
|
|
set -e
|
|
|
|
script_dir="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
die() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
FIRMWARE_DIR="${script_dir}/../firmware"
|
|
CONFIG="/etc/default/rpi-eeprom-update"
|
|
|
|
[ "$(id -u)" = "0" ] || die "$0 Must be run as root - try 'sudo $0 [-b]'"
|
|
|
|
rm -rf /lib/firmware/raspberrypi/bootloader
|
|
mkdir -p /lib/firmware/raspberrypi/bootloader
|
|
cp -rf "${FIRMWARE_DIR}"/* /lib/firmware/raspberrypi/bootloader
|
|
cp -fv "${script_dir}/../rpi-eeprom-config" /usr/bin
|
|
cp -fv "${script_dir}/../rpi-eeprom-digest" /usr/bin
|
|
cp -fv "${script_dir}/../rpi-eeprom-update" /usr/bin
|
|
rm -f /usr/bin/vl805
|
|
|
|
cp -fv "${script_dir}/../rpi-eeprom-update-default" /etc/default/rpi-eeprom-update
|
|
|
|
if [ "$1" = "-b" ]; then
|
|
sed -i -e 's/^FIRMWARE_RELEASE_STATUS=.*/FIRMWARE_RELEASE_STATUS=beta/' "${CONFIG}"
|
|
fi
|