mirror of
				https://git.busybox.net/busybox
				synced 2025-11-03 08:22:03 +00: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
 |