Skip to content

Commit

Permalink
tools: adding support for Raspbian 9 'Stretch'
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrubio committed Aug 31, 2017
1 parent 16df112 commit 949c13b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@
(
RELIDS=$(cat /etc/*-release)
if echo "$RELIDS" | grep raspbian; then
DISTRO="raspbian" ; RELEASE="jessie"
DISTRO="raspbian"
if echo "$RELIDS" | grep stretch; then
RELEASE="stretch"
elif echo "$RELIDS" | grep jessie; then
RELEASE="jessie"
else
echo "Can't find a supported Raspbian distribution."
exit 1
fi
elif echo "$RELIDS" | grep jessie; then
DISTRO="debian" ; RELEASE="jessie"
elif echo "$RELIDS" | grep stretch; then
Expand Down
1 change: 1 addition & 0 deletions tools/tizonia-dpkg-build
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ declare -ar TIZ_SUPPORTED_RELEASES=( \
debian-jessie \
debian-stretch \
raspbian-jessie \
raspbian-stretch \
)

declare -ar TIZ_LIBSPOTIFY_DEPS=( \
Expand Down
1 change: 1 addition & 0 deletions tools/tizonia-qemu-debootstrap-env
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ declare -ar TIZ_SUPPORTED_RELEASES=( \
debian-jessie \
debian-stretch \
raspbian-jessie \
raspbian-stretch \
)

declare -ar TIZ_SUPPORTED_ARCHITECTURES=( \
Expand Down

0 comments on commit 949c13b

Please sign in to comment.