#!/bin/dash
# Description: Disable spurious gpe interrupts

INITIAL_DELAY=60 # don't test until 90 seconds later - give time for stuff to stabilise

do_it() {
	sleep $INITIAL_DELAY
	disable-spurious-gpe
}

case $1 in
	start) do_it & ;;
esac
