blob: bae50daf14cdb3c95e486ef5e6a25f01e0c44ee1 [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001#!/bin/sh
2##
3# Bind the gpio-shutdown keycode as Keyboard signal and load it to the
4# keymap during startup.
5##
6case "$1" in
7 start)
8 # Inject the gpio keycode to keymap
9 echo "keycode 116 = KeyboardSignal" | loadkeys
10 ;;
11 *)
12 ;;
13esac