Modified install to recognise Raspbian Stretch 9 as Debian Stretch - installer now works on Raspberry Pi 2 and above
This commit is contained in:
parent
8f27fa573b
commit
81e0832a2f
6
install
6
install
|
@ -599,6 +599,12 @@ case "${dist}-${code}" in
|
||||||
is_debian_dist=true
|
is_debian_dist=true
|
||||||
is_debian_stretch=true
|
is_debian_stretch=true
|
||||||
;;
|
;;
|
||||||
|
raspbian-9|9)
|
||||||
|
code="stretch"
|
||||||
|
dist="debian"
|
||||||
|
is_debian_dist=true
|
||||||
|
is_debian_stretch=true
|
||||||
|
;;
|
||||||
debian-8|debian-jessie)
|
debian-8|debian-jessie)
|
||||||
code="jessie"
|
code="jessie"
|
||||||
is_debian_dist=true
|
is_debian_dist=true
|
||||||
|
|
Loading…
Reference in New Issue