Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
raspberry
Raspberry-bootstrap
=========

First script to run after setting up SD for Raspberry Pi
Expand All @@ -13,5 +13,5 @@ Usage

From your home directory (/home/pi/)

curl -Lo- http://raw.github.com/rlowe/raspberry/master/raspberry-bootstrap | bash
curl -Lo- https://raw.githubusercontent.com/wikijm/raspberry-bootstrap/master/raspberry-bootstrap | bash

15 changes: 15 additions & 0 deletions raspberry-bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,18 @@ sudo aptitude -y dist-upgrade
sudo aptitude -y autoclean
sudo aptitude -y full-upgrade

echo "Install raspberry-motd"
cd /etc/profile.d/
wget https://raw.githubusercontent.com/wikijm/raspberrypi-motd/master/motd.sh
chown root:root motd.sh
chmod +x motd.sh

echo "Installing rpi-update"
sudo aptitude -y install ca-certificates git-core
sudo wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update

echo "Updating firmware"
sudo rpi-update

echo "Rebooting Raspberry"
sudo reboot