From 777e3140d6ffbd4b4c4c96319b86950d46539d86 Mon Sep 17 00:00:00 2001 From: Cerber Date: Fri, 17 May 2013 11:01:28 +0200 Subject: [PATCH 1/2] Changed install procedure since rpi-update is now available as a package. See #93 https://github.com/Hexxeh/rpi-update/issues/93 Restoring old installation technique following comments of skgsergio in addition of the new `apt` based installation mending indentation --- README.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fcce88f..f09de1b 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,25 @@ An easier way to update the firmware of your Raspberry Pi. -## Preparations - -You need git installed to use this too. To install run: - - sudo apt-get install git-core - -## Installing +## Installing under Raspbian To install the tool, run the following command: - sudo wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update + sudo apt-get install rpi-update + +## Installing on other OS + +### Preparations + +You need git installed to use this too. To install run: + + sudo apt-get install git-core + +### Installing + +To install the tool, run the following command: + + sudo wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update ## Updating From c34d0dd00318a6528afc37231984249397a883f1 Mon Sep 17 00:00:00 2001 From: Cerber Date: Fri, 17 May 2013 11:02:37 +0200 Subject: [PATCH 2/2] Correction for #92 https://github.com/Hexxeh/rpi-update/issues/92 --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index cfb062d..e13532f 100755 --- a/rpi-update +++ b/rpi-update @@ -3,7 +3,7 @@ set -o nounset set -o errexit -REPO_URI="http://github.com/Hexxeh/rpi-firmware" +REPO_URI="https://github.com/Hexxeh/rpi-firmware" UPDATE_SELF=${UPDATE_SELF:-1} UPDATE_URI="https://github.com/Hexxeh/rpi-update/raw/master/rpi-update"