Browse Source
The xenpv machine use the common init function. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Alexander Graf <agraf@suse.de>remotes/github/stable-0.15
committed by
Alexander Graf
7 changed files with 64 additions and 2 deletions
@ -0,0 +1,23 @@ |
|||
/*
|
|||
* Copyright (C) 2010 Citrix Ltd. |
|||
* |
|||
* This work is licensed under the terms of the GNU GPL, version 2. See |
|||
* the COPYING file in the top-level directory. |
|||
* |
|||
*/ |
|||
|
|||
#include "hw/xen_common.h" |
|||
#include "hw/xen_backend.h" |
|||
|
|||
/* Initialise Xen */ |
|||
|
|||
int xen_init(void) |
|||
{ |
|||
xen_xc = xen_xc_interface_open(0, 0, 0); |
|||
if (xen_xc == XC_HANDLER_INITIAL_VALUE) { |
|||
xen_be_printf(NULL, 0, "can't open xen interface\n"); |
|||
return -1; |
|||
} |
|||
|
|||
return 0; |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
/*
|
|||
* Copyright (C) 2010 Citrix Ltd. |
|||
* |
|||
* This work is licensed under the terms of the GNU GPL, version 2. See |
|||
* the COPYING file in the top-level directory. |
|||
* |
|||
*/ |
|||
|
|||
#include "qemu-common.h" |
|||
#include "hw/xen.h" |
|||
|
|||
int xen_init(void) |
|||
{ |
|||
return -ENOSYS; |
|||
} |
|||
Loading…
Reference in new issue