#!/bin/bash if grep -q BCM2708 /proc/cpuinfo ; then echo "raspberry" elif grep -q BCM2709 /proc/cpuinfo ; then echo "raspberry" else echo "mvp" fi