From: Chris Tallon Date: Thu, 2 Mar 2017 14:05:27 +0000 (+0000) Subject: Add BCM2835 to Raspberry Pi detection X-Git-Tag: 0-5-0~2 X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=6b15fcda91ad071cdd2d3e91b50efba74af7f224;p=vompclient.git Add BCM2835 to Raspberry Pi detection --- 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