From 6b15fcda91ad071cdd2d3e91b50efba74af7f224 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Thu, 2 Mar 2017 14:05:27 +0000 Subject: [PATCH] Add BCM2835 to Raspberry Pi detection --- select-platform | 2 ++ 1 file changed, 2 insertions(+) diff --git a/select-platform b/select-platform index 90169cc..f74cc4d 100755 --- a/select-platform +++ b/select-platform @@ -4,6 +4,8 @@ if grep -q BCM2708 /proc/cpuinfo ; then echo "raspberry" elif grep -q BCM2709 /proc/cpuinfo ; then echo "raspberry" +elif grep -q BCM2835 /proc/cpuinfo ; then + echo "raspberry" else echo "mvp" fi -- 2.39.2