From 1332edd534accd7b991fd4eb71619391990aad83 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 6 Mar 2022 17:36:10 -0500 Subject: system/elo-mt-usb: Removed (download is gone, we dont have the hardware to test new versions). Signed-off-by: Willy Sudiarto Raharjo --- system/elo-mt-usb/rc.elo-mt-usb.new | 46 ------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 system/elo-mt-usb/rc.elo-mt-usb.new (limited to 'system/elo-mt-usb/rc.elo-mt-usb.new') diff --git a/system/elo-mt-usb/rc.elo-mt-usb.new b/system/elo-mt-usb/rc.elo-mt-usb.new deleted file mode 100644 index 14b884617b36..000000000000 --- a/system/elo-mt-usb/rc.elo-mt-usb.new +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# rc script for elo-mt-usb touch screen driver -# -# Avoid being interrupted by child or keyboard -# -trap "echo" SIGINT SIGSEGV SIGQUIT SIGTERM -set +e - -case "$1" in - start) - # Create Elo Devices for communication - - mode="776" # Why is it group writtable ? - elo_usb_device_path="/dev/elo-mt-usb/" - elo_usb_rspfifo="rsp_fifo" - elo_usb_cmdfifo="cmd_fifo" - - rm -f $elo_usb_device_path$elo_usb_cmdfifo - rm -f $elo_usb_device_path$elo_usb_rspfifo - - mkdir -p $elo_usb_device_path - - mkfifo $elo_usb_device_path$elo_usb_rspfifo - mkfifo $elo_usb_device_path$elo_usb_cmdfifo - - chmod $mode $elo_usb_device_path$elo_usb_cmdfifo - chmod $mode $elo_usb_device_path$elo_usb_rspfifo - - # Load the Elo kernel module [input device driver] - modprobe elo_mt_input_mod - - # Load the PC speaker kernel module into memory for Beep-On-Touch - #modprobe pcspkr - - sleep 1 # Why? - - # Load the Elo USB Touchscreen Daemon into memory - /etc/opt/elo-mt-usb/elomtusbd - ;; - stop) - ;; - *) - echo "Usage: $0 {start}" >&2 - exit 1 -esac -- cgit v1.2.3