#!/bin/sh

hardware=$(cat /proc/cpuinfo | awk -v line=Hardware '{if ($1 == line) print $4}')

if [ "$hardware" = "Mimas" ]; then
	echo "mimas-config" >> "$1"
else
	echo "titan-config obexd-client libunique-1.0-0 libopenobex1 libbluetooth3 gnome-bluetooth bluez" >> "$1"
fi

