#!/bin/bash

# check what platform we are on
if cat /sys/devices/soc0/machine | grep QCS6490 -q; then
	echo "QCS6490"
else
	echo "QRB5165"
fi
