ia64/xen-unstable
changeset 14132:9f199e1fd929
libxc, ia64: Added new arch_hook for registering ia64 big endian images.
Signed-off-by: Dietmar Hahn <dietmar.hahn@fujitsu-siemens.com>
Signed-off-by: Dietmar Hahn <dietmar.hahn@fujitsu-siemens.com>
author | kfraser@localhost.localdomain |
---|---|
date | Mon Feb 26 10:18:52 2007 +0000 (2007-02-26) |
parents | 64d80037e524 |
children | eefbc33a41ab |
files | tools/libxc/xc_dom_ia64.c |
line diff
1.1 --- a/tools/libxc/xc_dom_ia64.c Mon Feb 26 09:59:56 2007 +0000 1.2 +++ b/tools/libxc/xc_dom_ia64.c Mon Feb 26 10:18:52 2007 +0000 1.3 @@ -113,9 +113,19 @@ static struct xc_dom_arch xc_dom_arch = 1.4 .vcpu = vcpu_ia64, 1.5 }; 1.6 1.7 +static struct xc_dom_arch xc_dom_arch_ia64be = { 1.8 + .guest_type = "xen-3.0-ia64be", 1.9 + .page_shift = PAGE_SHIFT_IA64, 1.10 + .alloc_magic_pages = alloc_magic_pages, 1.11 + .start_info = start_info_ia64, 1.12 + .shared_info = shared_info_ia64, 1.13 + .vcpu = vcpu_ia64, 1.14 +}; 1.15 + 1.16 static void __init register_arch_hooks(void) 1.17 { 1.18 xc_dom_register_arch_hooks(&xc_dom_arch); 1.19 + xc_dom_register_arch_hooks(&xc_dom_arch_ia64be); 1.20 } 1.21 1.22 /*