Modified install to recognise Raspbian Stretch 9 as Debian Stretch - installer now works on Raspberry Pi 2 and above

This commit is contained in:
WiccyShackleton 2018-04-04 01:55:10 +00:00
parent 8f27fa573b
commit 81e0832a2f
1 changed files with 6 additions and 0 deletions

View File

@ -599,6 +599,12 @@ case "${dist}-${code}" in
is_debian_dist=true
is_debian_stretch=true
;;
raspbian-9|9)
code="stretch"
dist="debian"
is_debian_dist=true
is_debian_stretch=true
;;
debian-8|debian-jessie)
code="jessie"
is_debian_dist=true