#!/bin/sh

local hw_id=$(setconfig -g 9)
if [ "$hw_id" == "01010107" ];then
	setconfig -a 1
	setconfig -a 2 -s 9 -d 02310110
	setconfig -a 5
	rm /overlay/upper/* -rf
	reboot -f

elif [ "$hw_id" == "01010108" ];then
	setconfig -a 1
	setconfig -a 2 -s 9 -d 0231010F
	setconfig -a 5
	rm /overlay/upper/* -rf
	reboot -f
fi

exit 0
