mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 15:06:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
function failed {
 | 
						|
	printf "Kernel config test suite FAILED\n"
 | 
						|
}
 | 
						|
 | 
						|
/check-kernel-config.sh || failed
 | 
						|
bash /check-config.sh || failed
 | 
						|
 | 
						|
printf "Kernel config test suite PASSED\n"
 | 
						|
 | 
						|
cat /etc/linuxkit
 |