DMIPATH=/sys/class/dmi/id

laptop_info()
{
	board=`cat $DMIPATH/product_name`
	case "$board" in
		EP121*)
			EXTMOD="$EXTMOD hid-multitouch"
			;;
		*)
			;;
	esac

	return 1 # auto_detect
}

detect_hardware()
{
	case "`cat $DMIPATH/uevent`" in
		*ASUSTeK*)
			laptop_info
			;;
		*)
			error WARNING: Not an ASUS product
			;;
	esac
}

post_detect()
{
	board=`cat $DMIPATH/product_name`
	case "$board" in
		EP121*)
			echo 3 0eef a001 0 > /sys/module/hid_multitouch/drivers/hid:hid-multitouch/new_id
			;;
		*)
			;;
	esac
}
