Adds the gpio keyboard driver to the BSP. The driver probes but fails to find device tree information it is looking for. Signed-off-by: Nicholas Mello <nick@nmello.dev>
23 lines
183 B
Bash
23 lines
183 B
Bash
#!/bin/sh
|
|
|
|
start() {
|
|
modprobe gpio_keyboard_driver
|
|
}
|
|
|
|
stop() {
|
|
rmmod gpio_keyboard_driver
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
esac
|