mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
10 lines
170 B
Bash
10 lines
170 B
Bash
#!/bin/sh
|
|
|
|
# add mousedev to /etc/modules if not already there
|
|
|
|
if ! grep -w -q ^mousedev /etc/modules; then
|
|
echo mousedev >> /etc/modules
|
|
fi
|
|
modprobe mousedev || true
|
|
|