rpi-update: Switch to using raspberrypi repo

This commit is contained in:
popcornmix
2021-10-18 13:30:29 +01:00
parent 3a30e618ad
commit f1734abc1e

View File

@@ -3,12 +3,12 @@
set -o nounset set -o nounset
set -o errexit set -o errexit
REPO_URI=${REPO_URI:-"https://github.com/Hexxeh/rpi-firmware"} REPO_URI=${REPO_URI:-"https://github.com/raspberrypi/rpi-firmware"}
REPO_API_URI=${REPO_URI/github.com/api.github.com\/repos} REPO_API_URI=${REPO_URI/github.com/api.github.com\/repos}
REPO_CONTENT_URI=${REPO_URI/github.com/raw.githubusercontent.com} REPO_CONTENT_URI=${REPO_URI/github.com/raw.githubusercontent.com}
UPDATE_SELF=${UPDATE_SELF:-1} UPDATE_SELF=${UPDATE_SELF:-1}
UPDATE_REPO_URI="https://github.com/Hexxeh/rpi-update" UPDATE_REPO_URI="https://github.com/raspberrypi/rpi-update"
UPDATE_REPO_CONTENT_URI=${UPDATE_REPO_URI/github.com/raw.githubusercontent.com} UPDATE_REPO_CONTENT_URI=${UPDATE_REPO_URI/github.com/raw.githubusercontent.com}
UPDATE_URI="${UPDATE_REPO_CONTENT_URI}/master/rpi-update" UPDATE_URI="${UPDATE_REPO_CONTENT_URI}/master/rpi-update"