From 81e0832a2f31a5c28abbacb5b25186a36f9b720b Mon Sep 17 00:00:00 2001
From: WiccyShackleton <wiccy.shackleton@gmail.com>
Date: Wed, 4 Apr 2018 01:55:10 +0000
Subject: [PATCH 1/2] Modified install to recognise Raspbian Stretch 9 as
 Debian Stretch - installer now works on Raspberry Pi 2 and above

---
 install | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/install b/install
index ac7bdcc15..e34787ede 100755
--- a/install
+++ b/install
@@ -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

From 46a820b8179b2256c554352d8badd1d70518f3f8 Mon Sep 17 00:00:00 2001
From: WiccyShackleton <wiccy.shackleton@gmail.com>
Date: Wed, 4 Apr 2018 02:07:39 +0000
Subject: [PATCH 2/2] Marked where the raspbian stretch fix is located

---
 install | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/install b/install
index e34787ede..b548812c1 100755
--- a/install
+++ b/install
@@ -599,12 +599,14 @@ case "${dist}-${code}" in
         is_debian_dist=true
         is_debian_stretch=true
         ;;
+    #Fix for Raspbian 9 (stretch)
     raspbian-9|9)
 	code="stretch"
 	dist="debian"
 	is_debian_dist=true
 	is_debian_stretch=true
 	;;
+    #End of fix
     debian-8|debian-jessie)
         code="jessie"
         is_debian_dist=true