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
2 changes: 1 addition & 1 deletion .install-bcm2835.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh

VERSION=1.55
VERSION=1.59
BCM="bcm2835-${VERSION}"
BCMARCHIVE="${BCM}.tar.gz"
URL="http://www.airspayce.com/mikem/bcm2835/${BCMARCHIVE}"
Expand Down
31 changes: 27 additions & 4 deletions .install-cross-mint.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
#!/bin/sh

cat <<EOF | sudo apt-key add -
SUDO=$(which sudo || echo "")
if [ -z "$SUDO" ] ; then
echo "no sudo"
else
echo "sudo: $SUDO"
fi

DISTRIB=$(awk 'NR==1{print $0}' /etc/issue)
echo "DISTRIB=$DISTRIB"


cat <<EOF | $SUDO apt-key add -
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.10 (GNU/Linux)

mQENBEvdU9gBCACzsGfqY8sucAudjQCzloQW4WJ8mUheNbJEqKkaxf4fZg5Y4D1k
MiN+bMIoQiTODV23uVY9DIXIMxwp+mzAEI67H7meyJRn7wKeAxbEB0UNGXvf+szV
epHbufXlHcQFieT4pciheQiab76hDbXARCOap160/YmDDc3UxZwxeF2qdQHvKEOB
Expand Down Expand Up @@ -34,7 +46,18 @@ EOF

# Vincent Rivière's m68k-atari-mint cross-tools
# http://vincent.riviere.free.fr/soft/m68k-atari-mint/ubuntu.php
sudo add-apt-repository -y ppa:vriviere/ppa
if echo "$DISTRIB" | grep Ubuntu ; then
$SUDO add-apt-repository -y ppa:vriviere/ppa
else
# assume Debian/Stretch (9.x)
if [ -z "$SUDO" ] ; then
echo "deb http://vincent.riviere.free.fr/apt/ stretch contrib" >> /etc/apt/sources.list
echo "deb-src http://vincent.riviere.free.fr/apt/ stretch contrib" >> /etc/apt/sources.list
else
echo "deb http://vincent.riviere.free.fr/apt/ stretch contrib" | $SUDO tee -a /etc/apt/sources.list
echo "deb-src http://vincent.riviere.free.fr/apt/ stretch contrib" | $SUDO tee -a /etc/apt/sources.list
fi
fi

sudo apt-get update -ym
sudo apt-get install -ym cross-mint-essential
$SUDO apt-get update -ym
$SUDO apt-get install -ym cross-mint-essential
2 changes: 1 addition & 1 deletion .install-curl.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh

VERSION=7.59.0
VERSION=7.65.0
CURL="curl-${VERSION}"
CURLARCHIVE="${CURL}.tar.bz2"
URL="https://curl.haxx.se/download/${CURLARCHIVE}"
Expand Down