Merge pull request #94 from GrmpCerber/PackagedInstallAndTlsEverywhere

Packaged install and tls everywhere
This commit is contained in:
popcornmix
2013-05-18 17:04:12 -07:00
2 changed files with 17 additions and 9 deletions

View File

@@ -2,17 +2,25 @@
An easier way to update the firmware of your Raspberry Pi.
## Preparations
## Installing under Raspbian
To install the tool, run the following command:
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
### Installing
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 wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update
## Updating

View File

@@ -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"