mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
15 lines
214 B
Bash
Executable file
15 lines
214 B
Bash
Executable file
#!/bin/sh
|
|
|
|
exec >/dev/null
|
|
exec 2>&1
|
|
exec </dev/null
|
|
|
|
user=root
|
|
options="-D -2 -m /dev/psaux -t ps2"
|
|
#options="-D -2 -m /dev/ttyS0 -t bare"
|
|
|
|
exec \
|
|
env - PATH="$PATH" \
|
|
softlimit \
|
|
setuidgid "$user" \
|
|
gpm $options
|