From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [Xen-devel] [PATCH v2 0/3] arm64: Add multiboot support (via fdt) for Xen boot Date: Tue, 14 Jul 2015 10:29:13 +0100 Message-ID: <1436866153.25044.38.camel@citrix.com> References: <=fu.wei@linaro.org> <1436777640-31871-1-git-send-email-fu.wei@linaro.org> Reply-To: The development of GNU GRUB Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1436777640-31871-1-git-send-email-fu.wei@linaro.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: grub-devel-bounces+gcbgd-grub-devel=m.gmane.org@gnu.org Sender: grub-devel-bounces+gcbgd-grub-devel=m.gmane.org@gnu.org To: fu.wei@linaro.org Cc: grub-devel@gnu.org, xen-devel@lists.xensource.com, stefano.stabellini@eu.citrix.com, arvidjaar@gmail.com, jcm@redhat.com, linaro-uefi@lists.linaro.org, leif.lindholm@linaro.org, ryan.harkin@linaro.org, phcoder@gmail.com List-Id: xen-devel@lists.xenproject.org On Mon, 2015-07-13 at 16:53 +0800, fu.wei@linaro.org wrote: > From: Fu Wei > > - This adds support for the Xen boot on ARM specification for arm64. I have used this to PXE boot Xen on a mustang board. My (handcrafted) grub.cfg was: set default=0 set timeout=5 menuentry 'pxe multiboot xen' { echo "xen_hypervisor /trap/xen.efi" xen_hypervisor /trap/xen.efi conswitch=x watchdog console=dtuart dtuart=/soc/serial@1c020000 dom0_mem=512M,max:512M echo "xen_module /trap/vmlinuz" xen_module /trap/vmlinuz root=/dev/mapper/trap--vg-root ro console=hvc0 echo "xen_module /trap/initrd.gz" xen_module /trap/initrd.gz boot } Tested-by: Ian Campbell I didn't yet try a local boot from hdd since I'm sure it would work equivalently and there still seems to be some discussion around how the update-grub side should fit together. Thanks! Ian.