mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 02:51:36 +00:00 
			
		
		
		
	crosvm is a VMM written on Rust which can run the device backends in secomp isolated processes. This adds build support for crosvm for x86 and arm64 as well as some instructions on how to run LinuxKit built images on crosvm. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			194 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			194 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: extract
 | 
						|
extract: iid
 | 
						|
	rm -rf ./build
 | 
						|
	mkdir -p ./build
 | 
						|
	docker run --rm $(shell cat iid) | tar xf - -C ./build
 | 
						|
	rm iid
 | 
						|
 | 
						|
iid: Makefile Dockerfile
 | 
						|
	docker build --no-cache --iidfile iid .
 |