mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
8 lines
114 B
Bash
8 lines
114 B
Bash
#!/bin/busybox sh
|
|
|
|
if pgrep "loadmap" 2> /dev/null; then
|
|
pkill loadmap
|
|
else
|
|
loadmap /mnt/joymap.map -d
|
|
fi
|