#!/bin/bash

key_1="uos_touchpad_expand"
confile_1="/etc/modules-load.d/uos_touchpad_expand.conf"
ko_file="/lib/modules/$(uname -r)/kernel/drivers/uos/uos_touchpad_expand.ko"

ret=1
if [ -f "$ko_file" ]; then
	if ! is_context_exists "$key_1" "$confile_1"; then
		echo "$key_1" | tee -a "$confile_1" > /dev/null
		ret=0
	fi
fi
return $ret
