* Re: [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
@ 2008-03-28 14:40 ` Akio Takebe
2008-03-29 2:22 ` Zhang, Xiantao
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Akio Takebe @ 2008-03-28 14:40 UTC (permalink / raw)
To: Zhang, Xiantao, Avi Kivity, Luck, Tony, Xu, Anthony, Jes Sorensen,
kv
Hi,
I found 3 typos.
>+3. Get Guest Firmware named as Flash.fd, and put it under right place:
>+ (1) If you have the guest firmware (binary)released by Intel
>Corp for Xen, you can use it directly.
>+ (2) If you want to build a guest firmware form souce code.
souce ---> source
>+5. Known possbile issue on some platforms with old Firmware
>+
possbile ---> possible
>+(2): Applying the below patch to kernel source.
>+diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
>+index 0b53344..f02b0f7 100644
>+--- a/arch/ia64/kernel/pal.S
>++++ b/arch/ia64/kernel/pal.S
>+@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static)
>+ mov ar.pfs = loc1
>+ mov rp = loc0
>+ ;;
>+- srlz.d // seralize restoration of psr.l
>++ srlz.i // seralize restoration of psr.l
seralize ---> serialize
Best Regards,
Akio Takebe
^ permalink raw reply [flat|nested] 7+ messages in thread* RE: [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
2008-03-28 14:40 ` Akio Takebe
@ 2008-03-29 2:22 ` Zhang, Xiantao
2008-03-29 2:38 ` [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 V7 Zhang, Xiantao
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Zhang, Xiantao @ 2008-03-29 2:22 UTC (permalink / raw)
To: linux-ia64
Akio Takebe wrote:
> Hi,
>
> I found 3 typos.
>
>> +3. Get Guest Firmware named as Flash.fd, and put it under right
>> place: + (1) If you have the guest firmware (binary)released by
Intel
>> Corp for Xen, you can use it directly.
>> + (2) If you want to build a guest firmware form souce code. souce
>> ---> source
>
>> +5. Known possbile issue on some platforms with old Firmware
>> +
> possbile ---> possible
>
>> +(2): Applying the below patch to kernel source.
>> +diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
>> +index 0b53344..f02b0f7 100644
>> +--- a/arch/ia64/kernel/pal.S
>> ++++ b/arch/ia64/kernel/pal.S
>> +@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static) + mov
ar.pfs
>> = loc1 + mov rp = loc0
>> + ;;
>> +- srlz.d // seralize restoration of psr.l
>> ++ srlz.i // seralize restoration of psr.l
seralize ---> serialize
Good finding. The last one is copied from kernel, maybe need a patch to
fix it :)
Xiantao
^ permalink raw reply [flat|nested] 7+ messages in thread* [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 V7
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
2008-03-28 14:40 ` Akio Takebe
2008-03-29 2:22 ` Zhang, Xiantao
@ 2008-03-29 2:38 ` Zhang, Xiantao
2008-03-31 8:32 ` [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 -V8 Zhang, Xiantao
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Zhang, Xiantao @ 2008-03-29 2:38 UTC (permalink / raw)
To: linux-ia64
[-- Attachment #1: Type: text/plain, Size: 3662 bytes --]
From 454e8a4473ed13ce313b2ba3b654feb926a891b7 Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Wed, 12 Mar 2008 13:57:33 +0800
Subject: [PATCH] kvm/ia64: How to boot up guests on kvm/ia64
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
Documentation/ia64/kvm-howto.txt | 74
++++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
create mode 100644 Documentation/ia64/kvm-howto.txt
diff --git a/Documentation/ia64/kvm-howto.txt
b/Documentation/ia64/kvm-howto.txt
new file mode 100644
index 0000000..5a8049c
--- /dev/null
+++ b/Documentation/ia64/kvm-howto.txt
@@ -0,0 +1,74 @@
+ Guide: How to boot up guests on kvm/ia64
+
+1. Get the kvm source from git.kernel.org.
+ Userspace source:
+ git clone
git://git.kernel.org/pub/scm/virt/kvm/kvm-userspace.git
+ Kernel Source:
+ git clone
git://git.kernel.org/pub/scm/linux/kernel/git/xiantao/kvm-ia64.git
+
+2. Compile the source code.
+ 2.1 Compile userspace code:
+ (1)cd ./kvm-userspace
+ (2)./configure
+ (3)cd kernel
+ (4)make sync LINUX= $kernel_dir (kernel_dir is the
directory of kernel source.)
+ (5)cd ..
+ (6)make qemu
+ (7)cd qemu; make install
+
+ 2.2 Compile kernel source code:
+ (1) cd ./$kernel_dir
+ (2) Make menuconfig
+ (3) Enter into virtualization option, and choose kvm.
+ (4) make
+ (5) Once (4) done, make modules_install
+ (6) Make initrd, and use new kernel to reboot up host
machine.
+ (7) Once (6) done, cd $kernel_dir/arch/ia64/kvm
+ (8) insmod kvm.ko; insmod kvm-intel.ko
+
+Note: For step 2, please make sure that host page size ==
TARGET_PAGE_SIZE of qemu, otherwise, may fail.
+
+3. Get Guest Firmware named as Flash.fd, and put it under right place:
+ (1) If you have the guest firmware (binary)released by Intel
Corp for Xen, you can use it directly.
+ (2) If you want to build a guest firmware form source code.
Please download the source from
+ hg clone
http://xenbits.xensource.com/ext/efi-vfirmware.hg
+ Use the Guide of the source to build open Guest
Firmware.
+ (3) Rename it to Flash.fd, and copy it to /usr/local/share/qemu
+Note: For step 3, kvm use the guest firmware which complies with the
one Xen uses.
+
+4. Boot up Linux or Windows guests:
+ 4.1 Create or install a image for guest boot. If you have xen
experience, it should be easy.
+
+ 4.2 Boot up guests use the following command.
+ /usr/local/bin/qemu-system-ia64 -smp xx -m 512 -hda
$your_image
+ (xx is the number of virtual processors for the guest,
now the maximum value is 4)
+
+5. Known possibile issue on some platforms with old Firmware
+
+If meet strange host crashes, you may try to solve it through either of
the following methods.
+(1): Upgrade your Firmware to the latest one.
+
+(2): Applying the below patch to kernel source.
+diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
+index 0b53344..f02b0f7 100644
+--- a/arch/ia64/kernel/pal.S
++++ b/arch/ia64/kernel/pal.S
+@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static)
+ mov ar.pfs = loc1
+ mov rp = loc0
+ ;;
+- srlz.d // serialize restoration of
psr.l
++ srlz.i // serialize restoration of psr.l
++ ;;
+ br.ret.sptk.many b0
+ END(ia64_pal_call_static)
+
+6. Bug report:
+ If you found any issues when use kvm/ia64, Please post the bug
info to kvm-ia64-devel mailing list.
+ https://lists.sourceforge.net/lists/listinfo/kvm-ia64-devel/
+
+Thanks for your interest! Let's work together, and make kvm/ia64
stronger and stronger!
+
+
+ Xiantao
Zhang <xiantao.zhang@intel.com>
+
2008.3.10
--
1.5.2
[-- Attachment #2: 0017-kvm-ia64-How-to-boot-up-guests-on-kvm-ia64.patch --]
[-- Type: application/octet-stream, Size: 3559 bytes --]
From 454e8a4473ed13ce313b2ba3b654feb926a891b7 Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Wed, 12 Mar 2008 13:57:33 +0800
Subject: [PATCH] kvm/ia64: How to boot up guests on kvm/ia64
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
Documentation/ia64/kvm-howto.txt | 74 ++++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
create mode 100644 Documentation/ia64/kvm-howto.txt
diff --git a/Documentation/ia64/kvm-howto.txt b/Documentation/ia64/kvm-howto.txt
new file mode 100644
index 0000000..5a8049c
--- /dev/null
+++ b/Documentation/ia64/kvm-howto.txt
@@ -0,0 +1,74 @@
+ Guide: How to boot up guests on kvm/ia64
+
+1. Get the kvm source from git.kernel.org.
+ Userspace source:
+ git clone git://git.kernel.org/pub/scm/virt/kvm/kvm-userspace.git
+ Kernel Source:
+ git clone git://git.kernel.org/pub/scm/linux/kernel/git/xiantao/kvm-ia64.git
+
+2. Compile the source code.
+ 2.1 Compile userspace code:
+ (1)cd ./kvm-userspace
+ (2)./configure
+ (3)cd kernel
+ (4)make sync LINUX= $kernel_dir (kernel_dir is the directory of kernel source.)
+ (5)cd ..
+ (6)make qemu
+ (7)cd qemu; make install
+
+ 2.2 Compile kernel source code:
+ (1) cd ./$kernel_dir
+ (2) Make menuconfig
+ (3) Enter into virtualization option, and choose kvm.
+ (4) make
+ (5) Once (4) done, make modules_install
+ (6) Make initrd, and use new kernel to reboot up host machine.
+ (7) Once (6) done, cd $kernel_dir/arch/ia64/kvm
+ (8) insmod kvm.ko; insmod kvm-intel.ko
+
+Note: For step 2, please make sure that host page size == TARGET_PAGE_SIZE of qemu, otherwise, may fail.
+
+3. Get Guest Firmware named as Flash.fd, and put it under right place:
+ (1) If you have the guest firmware (binary)released by Intel Corp for Xen, you can use it directly.
+ (2) If you want to build a guest firmware form source code. Please download the source from
+ hg clone http://xenbits.xensource.com/ext/efi-vfirmware.hg
+ Use the Guide of the source to build open Guest Firmware.
+ (3) Rename it to Flash.fd, and copy it to /usr/local/share/qemu
+Note: For step 3, kvm use the guest firmware which complies with the one Xen uses.
+
+4. Boot up Linux or Windows guests:
+ 4.1 Create or install a image for guest boot. If you have xen experience, it should be easy.
+
+ 4.2 Boot up guests use the following command.
+ /usr/local/bin/qemu-system-ia64 -smp xx -m 512 -hda $your_image
+ (xx is the number of virtual processors for the guest, now the maximum value is 4)
+
+5. Known possibile issue on some platforms with old Firmware
+
+If meet strange host crashes, you may try to solve it through either of the following methods.
+(1): Upgrade your Firmware to the latest one.
+
+(2): Applying the below patch to kernel source.
+diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
+index 0b53344..f02b0f7 100644
+--- a/arch/ia64/kernel/pal.S
++++ b/arch/ia64/kernel/pal.S
+@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static)
+ mov ar.pfs = loc1
+ mov rp = loc0
+ ;;
+- srlz.d // serialize restoration of psr.l
++ srlz.i // serialize restoration of psr.l
++ ;;
+ br.ret.sptk.many b0
+ END(ia64_pal_call_static)
+
+6. Bug report:
+ If you found any issues when use kvm/ia64, Please post the bug info to kvm-ia64-devel mailing list.
+ https://lists.sourceforge.net/lists/listinfo/kvm-ia64-devel/
+
+Thanks for your interest! Let's work together, and make kvm/ia64 stronger and stronger!
+
+
+ Xiantao Zhang <xiantao.zhang@intel.com>
+ 2008.3.10
--
1.5.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 -V8
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
` (2 preceding siblings ...)
2008-03-29 2:38 ` [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 V7 Zhang, Xiantao
@ 2008-03-31 8:32 ` Zhang, Xiantao
2008-03-31 10:51 ` Akio Takebe
2008-03-31 11:07 ` Zhang, Xiantao
5 siblings, 0 replies; 7+ messages in thread
From: Zhang, Xiantao @ 2008-03-31 8:32 UTC (permalink / raw)
To: linux-ia64
[-- Attachment #1: Type: text/plain, Size: 3663 bytes --]
From b04624ce5ff919d776bf1d64b157d67410c6bc27 Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Wed, 12 Mar 2008 13:57:33 +0800
Subject: [PATCH] KVM:IA64 : How to boot up guests on kvm/ia64
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
Documentation/ia64/kvm-howto.txt | 74
++++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
create mode 100644 Documentation/ia64/kvm-howto.txt
diff --git a/Documentation/ia64/kvm-howto.txt
b/Documentation/ia64/kvm-howto.txt
new file mode 100644
index 0000000..5a8049c
--- /dev/null
+++ b/Documentation/ia64/kvm-howto.txt
@@ -0,0 +1,74 @@
+ Guide: How to boot up guests on kvm/ia64
+
+1. Get the kvm source from git.kernel.org.
+ Userspace source:
+ git clone
git://git.kernel.org/pub/scm/virt/kvm/kvm-userspace.git
+ Kernel Source:
+ git clone
git://git.kernel.org/pub/scm/linux/kernel/git/xiantao/kvm-ia64.git
+
+2. Compile the source code.
+ 2.1 Compile userspace code:
+ (1)cd ./kvm-userspace
+ (2)./configure
+ (3)cd kernel
+ (4)make sync LINUX= $kernel_dir (kernel_dir is the
directory of kernel source.)
+ (5)cd ..
+ (6)make qemu
+ (7)cd qemu; make install
+
+ 2.2 Compile kernel source code:
+ (1) cd ./$kernel_dir
+ (2) Make menuconfig
+ (3) Enter into virtualization option, and choose kvm.
+ (4) make
+ (5) Once (4) done, make modules_install
+ (6) Make initrd, and use new kernel to reboot up host
machine.
+ (7) Once (6) done, cd $kernel_dir/arch/ia64/kvm
+ (8) insmod kvm.ko; insmod kvm-intel.ko
+
+Note: For step 2, please make sure that host page size ==
TARGET_PAGE_SIZE of qemu, otherwise, may fail.
+
+3. Get Guest Firmware named as Flash.fd, and put it under right place:
+ (1) If you have the guest firmware (binary)released by Intel
Corp for Xen, you can use it directly.
+ (2) If you want to build a guest firmware form source code.
Please download the source from
+ hg clone
http://xenbits.xensource.com/ext/efi-vfirmware.hg
+ Use the Guide of the source to build open Guest
Firmware.
+ (3) Rename it to Flash.fd, and copy it to /usr/local/share/qemu
+Note: For step 3, kvm use the guest firmware which complies with the
one Xen uses.
+
+4. Boot up Linux or Windows guests:
+ 4.1 Create or install a image for guest boot. If you have xen
experience, it should be easy.
+
+ 4.2 Boot up guests use the following command.
+ /usr/local/bin/qemu-system-ia64 -smp xx -m 512 -hda
$your_image
+ (xx is the number of virtual processors for the guest,
now the maximum value is 4)
+
+5. Known possibile issue on some platforms with old Firmware
+
+If meet strange host crashes, you may try to solve it through either of
the following methods.
+(1): Upgrade your Firmware to the latest one.
+
+(2): Applying the below patch to kernel source.
+diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
+index 0b53344..f02b0f7 100644
+--- a/arch/ia64/kernel/pal.S
++++ b/arch/ia64/kernel/pal.S
+@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static)
+ mov ar.pfs = loc1
+ mov rp = loc0
+ ;;
+- srlz.d // serialize restoration of
psr.l
++ srlz.i // serialize restoration of psr.l
++ ;;
+ br.ret.sptk.many b0
+ END(ia64_pal_call_static)
+
+6. Bug report:
+ If you found any issues when use kvm/ia64, Please post the bug
info to kvm-ia64-devel mailing list.
+ https://lists.sourceforge.net/lists/listinfo/kvm-ia64-devel/
+
+Thanks for your interest! Let's work together, and make kvm/ia64
stronger and stronger!
+
+
+ Xiantao
Zhang <xiantao.zhang@intel.com>
+
2008.3.10
--
1.5.2
[-- Attachment #2: 0017-KVM-IA64-How-to-boot-up-guests-on-kvm-ia64.patch --]
[-- Type: application/octet-stream, Size: 3560 bytes --]
From b04624ce5ff919d776bf1d64b157d67410c6bc27 Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Wed, 12 Mar 2008 13:57:33 +0800
Subject: [PATCH] KVM:IA64 : How to boot up guests on kvm/ia64
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
Documentation/ia64/kvm-howto.txt | 74 ++++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
create mode 100644 Documentation/ia64/kvm-howto.txt
diff --git a/Documentation/ia64/kvm-howto.txt b/Documentation/ia64/kvm-howto.txt
new file mode 100644
index 0000000..5a8049c
--- /dev/null
+++ b/Documentation/ia64/kvm-howto.txt
@@ -0,0 +1,74 @@
+ Guide: How to boot up guests on kvm/ia64
+
+1. Get the kvm source from git.kernel.org.
+ Userspace source:
+ git clone git://git.kernel.org/pub/scm/virt/kvm/kvm-userspace.git
+ Kernel Source:
+ git clone git://git.kernel.org/pub/scm/linux/kernel/git/xiantao/kvm-ia64.git
+
+2. Compile the source code.
+ 2.1 Compile userspace code:
+ (1)cd ./kvm-userspace
+ (2)./configure
+ (3)cd kernel
+ (4)make sync LINUX= $kernel_dir (kernel_dir is the directory of kernel source.)
+ (5)cd ..
+ (6)make qemu
+ (7)cd qemu; make install
+
+ 2.2 Compile kernel source code:
+ (1) cd ./$kernel_dir
+ (2) Make menuconfig
+ (3) Enter into virtualization option, and choose kvm.
+ (4) make
+ (5) Once (4) done, make modules_install
+ (6) Make initrd, and use new kernel to reboot up host machine.
+ (7) Once (6) done, cd $kernel_dir/arch/ia64/kvm
+ (8) insmod kvm.ko; insmod kvm-intel.ko
+
+Note: For step 2, please make sure that host page size == TARGET_PAGE_SIZE of qemu, otherwise, may fail.
+
+3. Get Guest Firmware named as Flash.fd, and put it under right place:
+ (1) If you have the guest firmware (binary)released by Intel Corp for Xen, you can use it directly.
+ (2) If you want to build a guest firmware form source code. Please download the source from
+ hg clone http://xenbits.xensource.com/ext/efi-vfirmware.hg
+ Use the Guide of the source to build open Guest Firmware.
+ (3) Rename it to Flash.fd, and copy it to /usr/local/share/qemu
+Note: For step 3, kvm use the guest firmware which complies with the one Xen uses.
+
+4. Boot up Linux or Windows guests:
+ 4.1 Create or install a image for guest boot. If you have xen experience, it should be easy.
+
+ 4.2 Boot up guests use the following command.
+ /usr/local/bin/qemu-system-ia64 -smp xx -m 512 -hda $your_image
+ (xx is the number of virtual processors for the guest, now the maximum value is 4)
+
+5. Known possibile issue on some platforms with old Firmware
+
+If meet strange host crashes, you may try to solve it through either of the following methods.
+(1): Upgrade your Firmware to the latest one.
+
+(2): Applying the below patch to kernel source.
+diff --git a/arch/ia64/kernel/pal.S b/arch/ia64/kernel/pal.S
+index 0b53344..f02b0f7 100644
+--- a/arch/ia64/kernel/pal.S
++++ b/arch/ia64/kernel/pal.S
+@@ -84,7 +84,8 @@ GLOBAL_ENTRY(ia64_pal_call_static)
+ mov ar.pfs = loc1
+ mov rp = loc0
+ ;;
+- srlz.d // serialize restoration of psr.l
++ srlz.i // serialize restoration of psr.l
++ ;;
+ br.ret.sptk.many b0
+ END(ia64_pal_call_static)
+
+6. Bug report:
+ If you found any issues when use kvm/ia64, Please post the bug info to kvm-ia64-devel mailing list.
+ https://lists.sourceforge.net/lists/listinfo/kvm-ia64-devel/
+
+Thanks for your interest! Let's work together, and make kvm/ia64 stronger and stronger!
+
+
+ Xiantao Zhang <xiantao.zhang@intel.com>
+ 2008.3.10
--
1.5.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 -V8
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
` (3 preceding siblings ...)
2008-03-31 8:32 ` [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 -V8 Zhang, Xiantao
@ 2008-03-31 10:51 ` Akio Takebe
2008-03-31 11:07 ` Zhang, Xiantao
5 siblings, 0 replies; 7+ messages in thread
From: Akio Takebe @ 2008-03-31 10:51 UTC (permalink / raw)
To: linux-ia64
Hi, Xiantao
>+3. Get Guest Firmware named as Flash.fd, and put it under right place:
>+ (1) If you have the guest firmware (binary)released by Intel
>Corp for Xen, you can use it directly.
>+ (2) If you want to build a guest firmware form source code.
>Please download the source from
>+ hg clone
>http://xenbits.xensource.com/ext/efi-vfirmware.hg
>+ Use the Guide of the source to build open Guest
>Firmware.
The Guide is not include in this README,
so we may make a link to the Guide in wiki.
Or we may add a link to binary release of GFW.
Best Regards,
Akio Takebe
^ permalink raw reply [flat|nested] 7+ messages in thread* RE: [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 -V8
2008-03-28 9:58 [17/17][PATCH] kvm/ia64: How to boot up guests on kvm/ia64 Zhang, Xiantao
` (4 preceding siblings ...)
2008-03-31 10:51 ` Akio Takebe
@ 2008-03-31 11:07 ` Zhang, Xiantao
5 siblings, 0 replies; 7+ messages in thread
From: Zhang, Xiantao @ 2008-03-31 11:07 UTC (permalink / raw)
To: linux-ia64
Akio Takebe wrote:
> Hi, Xiantao
>
>> +3. Get Guest Firmware named as Flash.fd, and put it under right
>> place: + (1) If you have the guest firmware (binary)released by
Intel
>> Corp for Xen, you can use it directly.
>> + (2) If you want to build a guest firmware form source code.
>> Please download the source from
>> + hg clone
>> http://xenbits.xensource.com/ext/efi-vfirmware.hg
>> + Use the Guide of the source to build open Guest
>> Firmware.
> The Guide is not include in this README,
> so we may make a link to the Guide in wiki.
> Or we may add a link to binary release of GFW.
Good suggestion! If that users don't need to build firmware by
themselves. :)
Xiantao
^ permalink raw reply [flat|nested] 7+ messages in thread