Skip to content

Commit

Permalink
Merge pull request volumio#116 from macmpi/patch-2
Browse files Browse the repository at this point in the history
Complete Raspi sources
  • Loading branch information
volumio committed Jan 13, 2017
2 parents 15d5451 + 3508a4f commit 6acbf73
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions scripts/raspberryconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ options snd-usb-audio nrpacks=1
options snd-usb-audio index=5
options snd_bcm2835 index=0" >> /etc/modprobe.d/alsa-base.conf

echo "Adding Raspberrypi.org Repo"
echo "
deb http://archive.raspberrypi.org/debian/ jessie main ui
deb-src http://archive.raspberrypi.org/debian/ jessie main ui
" >> /etc/apt/sources.list.d/raspi.list

echo "Adding Raspberrypi.org Repo Key"
wget https://www.raspberrypi.org/raspberrypi.gpg.key -O - | sudo apt-key add -

echo "Installing R-pi specific binaries"
apt-get update
Expand Down
2 changes: 1 addition & 1 deletion scripts/volumioconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ ln -s '/usr/lib/systemd/system/console-kit-daemon.service' '/etc/systemd/system/
if [ $(uname -m) = armv7l ]; then
echo "Arm Environment detected"
echo ' Adding Raspbian Repo Key'
wget http://archive.raspbian.org/raspbian.public.key -O - | sudo apt-key add -
wget https://archive.raspbian.org/raspbian.public.key -O - | sudo apt-key add -

echo "Installing ARM Node Environment"
# version 6.3.0
Expand Down
4 changes: 2 additions & 2 deletions volumio/etc/apt/sources.list
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
deb http://archive.raspbian.org/raspbian jessie main contrib non-free
deb-src http://archive.raspbian.org/raspbian jessie main contrib non-free
deb http://mirrordirector.raspbian.org/raspbian/ jessie main contrib non-free rpi
deb-src http://archive.raspbian.org/raspbian/ jessie main contrib non-free rpi

0 comments on commit 6acbf73

Please sign in to comment.