This adds domain building support for paravirtual domains to qemu. This allows booting xen guests directly with qemu, without Xend and the management stack. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7226 c046a42c-6fe2-441c-8c8c-71466251a162
		
			
				
	
	
		
			14 lines
		
	
	
		
			487 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			487 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef QEMU_HW_XEN_DOMAINBUILD_H
 | 
						|
#define QEMU_HW_XEN_DOMAINBUILD_H 1
 | 
						|
 | 
						|
#include "xen_common.h"
 | 
						|
 | 
						|
int xenstore_domain_init1(const char *kernel, const char *ramdisk,
 | 
						|
                          const char *cmdline);
 | 
						|
int xenstore_domain_init2(int xenstore_port, int xenstore_mfn,
 | 
						|
                          int console_port, int console_mfn);
 | 
						|
int xen_domain_build_pv(const char *kernel, const char *ramdisk,
 | 
						|
                        const char *cmdline);
 | 
						|
 | 
						|
#endif /* QEMU_HW_XEN_DOMAINBUILD_H */
 |