Re: Getting xboxdrv to work
Reply #1 –
can you place the following on a file /etc/init.d/xboxdrvd and start it?
#!/usr/bin/openrc-run
pidfile="/run/xboxdrvd.pid"
command="/usr/bin/xboxdrv"
command_args="--detach-kernel-driver --mimic-xpad"
command_background=true
command_user="xboxdrvd"
stop() {
start-stop-daemon --stop --pidfile "$pidfile"
}
Awaiting you feedback