For one, my inits know nothing about the concept of "shutting down the system". Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
gcc -Wall -Os -o hardshutdown hardshutdown.c
 | 
						|
strip hardshutdown
 | 
						|
 | 
						|
#or:
 | 
						|
#diet gcc -Wall -o hardshutdown hardshutdown.c
 | 
						|
#elftrunc hardshutdown
 |