From f1734abc1ed5d6432c936c68f53c12fcf358249e Mon Sep 17 00:00:00 2001 From: popcornmix Date: Mon, 18 Oct 2021 13:30:29 +0100 Subject: [PATCH] rpi-update: Switch to using raspberrypi repo --- rpi-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpi-update b/rpi-update index fab3778..cd484db 100755 --- a/rpi-update +++ b/rpi-update @@ -3,12 +3,12 @@ set -o nounset 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_CONTENT_URI=${REPO_URI/github.com/raw.githubusercontent.com} 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_URI="${UPDATE_REPO_CONTENT_URI}/master/rpi-update"