mirror of https://github.com/OpenIPC/firmware.git
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			548 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			548 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/bin/sh
 | |
| #
 | |
| # Start ruby
 | |
| #
 | |
| 
 | |
| chip=$(ipcinfo -c)
 | |
| fw=$(grep "BUILD_OPTION" "/etc/os-release" | cut -d= -f2)
 | |
| echo "Chip: " > /tmp/ruby_boot.log
 | |
| echo ${chip} >> /tmp/ruby_boot.log
 | |
| echo "Firmware: " >> /tmp/ruby_boot.log
 | |
| echo ${fw} >> /tmp/ruby_boot.log
 | |
| 
 | |
| case "$1" in
 | |
|   start)
 | |
| 	if ! [ -f /etc/system.ok ]; then
 | |
| 		tweaksys ${chip}
 | |
| 	fi
 | |
| 
 | |
| 	echo "Starting Ruby..." >> /tmp/ruby_boot.log
 | |
| 	/usr/sbin/ruby_start -noop
 | |
| 	;;
 | |
|   stop)
 | |
| 	echo "Stopping Ruby..." >> /tmp/ruby_boot.log
 | |
| 	/usr/sbin/ruby_stop.sh
 | |
| 	;;
 | |
|     *)
 | |
|     echo "Usage: $0 {start|stop}"
 | |
|     exit 1
 | |
| esac
 |