mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-15 04:46:06 +01:00
39 lines
502 B
Bash
Executable file
39 lines
502 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Loads required hardware modules
|
|
#
|
|
|
|
start() {
|
|
printf "Starting hardware handling: "
|
|
modprobe pl2303 # USB↔Serial cable
|
|
modprobe i2c-bcm2708 # I2C
|
|
modprobe i2c-dev # I2C
|
|
echo "OK"
|
|
}
|
|
|
|
stop() {
|
|
printf "Stopping hardware handling: "
|
|
rmmod i2c-dev # I2C
|
|
rmmod i2c-bcm2708 # I2C
|
|
rmmod pl2303 # USB↔Serial cable
|
|
echo "OK"
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
stop
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|