All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2014-12-18 17:55 Fu Wei
  2015-01-08 16:38 ` Ian Campbell
  0 siblings, 1 reply; 14+ messages in thread
From: Fu Wei @ 2014-12-18 17:55 UTC (permalink / raw)
  To: grub-devel, Leif Lindholm, Ian Campbell
  Cc: Roy Franz, Jon Masters, linaro-uefi

- This multiboot support is built into linux module for aarch64.
    
- The implementation for Xen is following  <Multiboot on ARM Specification>:
http://wiki.xen.org/wiki/Xen_ARM_with_Virtualization_Extensions/Multiboot
and xen/docs/misc/arm/device-tree/booting.txt in Xen source code.

- The example of this support is <How to boot Xen with GRUB on AArch64 the Foundation FVP model>
https://wiki.linaro.org/LEG/Engineering/Grub2/Xen_booting_on_Foundation_FVP_model_by_GRUB
    
- This adds support for the Xen Multiboot on ARM specification for arm64,
enabling config file portability across the architectures.
    
- The multiboot command is currently x86-only, so reusing these command names
should not conflict with any future additions of ARM support to multiboot2.
    
- The reason of adding this functionality to the existing "linux" module
rather than "multiboot(2)"
  (1)multiboot is x86 only
  (2)Multiboot is added to "linux" module because it reuses existing code.

- Some changes in original linux module code
  Move some #define from grub-core/loader/arm64/linux.c to include/grub/arm64/linux.h 
  Make some shared functions for multiboot.c
  Remove "loaded" checking in the grub_cmd_devicetree of linux.c

- Add grub_fdt_set_reg64 macro into fdt.h header file for inserting "reg" properiy,
while #address-cells = <0x2> and  #size-cells = <0x2>

- Add the introduction of multiboot/module command in docs/grub.texi

This multiboot support will be built in linux module for aarch64,
and can not be used alone.

 docs/grub.texi                     |  10 +
 grub-core/Makefile.core.def        |   1 +
 grub-core/loader/arm64/linux.c     |  72 ++---
 grub-core/loader/arm64/multiboot.c | 593 +++++++++++++++++++++++++++++++++++++
 include/grub/arm64/linux.h         |  11 +
 include/grub/arm64/multiboot.h     | 115 +++++++
 include/grub/fdt.h                 |  12 +
 7 files changed, 778 insertions(+), 36 deletions(-)
 create mode 100644 grub-core/loader/arm64/multiboot.c
 create mode 100644 include/grub/arm64/multiboot.h


Signed-off-by: Fu Wei <fu.wei@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2014-12-18 17:55 [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot Fu Wei
@ 2015-01-08 16:38 ` Ian Campbell
  2015-01-21 14:06   ` Fu Wei
  0 siblings, 1 reply; 14+ messages in thread
From: Ian Campbell @ 2015-01-08 16:38 UTC (permalink / raw)
  To: Fu Wei; +Cc: Roy Franz, grub-devel, linaro-uefi, Leif Lindholm, Jon Masters

On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> Signed-off-by: Fu Wei <fu.wei@linaro.org>
> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

I've tested the code at
git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
which I believe is the same as this posting on an AMD Seattle system
with a 40_custom containing:

        menuentry 'Baremetal' {
        	insmod gzio
        	insmod part_msdos
        	insmod ext2
        	set root='hd0,msdos2'
        	search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
        	linux /boot/vmlinuz console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
        }
        menuentry 'Xen' {
        	insmod gzio
        	insmod part_msdos
        	insmod ext2
        	set root='hd0,msdos2'
        	search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
        	multiboot /boot/xen no-bootscrub console=dtuart conswitch=x dtuart=/smb/serial@e1010000 noreboot sync_console dom0_mem=256M dom0_max_vcpus=1
        	module /boot/vmlinuz-xen console=hvc0 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
        }

(my system is too confused for 10_linux or 20_linux_xen right now, but I
believe this is representative of what they would emit)

The result was that I could boot both Baremetal and Xen via grub. So:

Tested-by: Ian Campbell <ian.campbell@citrix.com>

I've not looked at the code (although I did review several older
iterations), would it be useful to the grub maintainers for me to do so?

Ian.



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-01-08 16:38 ` Ian Campbell
@ 2015-01-21 14:06   ` Fu Wei
  2015-01-26 14:32       ` Stefano Stabellini
  2015-01-26 14:34       ` Stefano Stabellini
  0 siblings, 2 replies; 14+ messages in thread
From: Fu Wei @ 2015-01-21 14:06 UTC (permalink / raw)
  To: Ian Campbell
  Cc: Roy Franz, grub-devel, linaro-uefi, Leif Lindholm, Jon Masters

[-- Attachment #1: Type: text/plain, Size: 2226 bytes --]

Hi everybody,

any suggestion for my patchset?
if these patches look fine, can they be merged?

Any feedback is welcome! :-)
Great thanks !

On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com> wrote:

> On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
>
> I've tested the code at
> git://
> git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> which I believe is the same as this posting on an AMD Seattle system
> with a 40_custom containing:
>
>         menuentry 'Baremetal' {
>                 insmod gzio
>                 insmod part_msdos
>                 insmod ext2
>                 set root='hd0,msdos2'
>                 search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
>                 linux /boot/vmlinuz console=ttyAMA0,115200n8
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>         }
>         menuentry 'Xen' {
>                 insmod gzio
>                 insmod part_msdos
>                 insmod ext2
>                 set root='hd0,msdos2'
>                 search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
>                 multiboot /boot/xen no-bootscrub console=dtuart
> conswitch=x dtuart=/smb/serial@e1010000 noreboot sync_console
> dom0_mem=256M dom0_max_vcpus=1
>                 module /boot/vmlinuz-xen console=hvc0
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>         }
>
> (my system is too confused for 10_linux or 20_linux_xen right now, but I
> believe this is representative of what they would emit)
>
> The result was that I could boot both Baremetal and Xen via grub. So:
>
> Tested-by: Ian Campbell <ian.campbell@citrix.com>
>
> I've not looked at the code (although I did review several older
> iterations), would it be useful to the grub maintainers for me to do so?
>
> Ian.
>
>


-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021

[-- Attachment #2: Type: text/html, Size: 3404 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-01-21 14:06   ` Fu Wei
@ 2015-01-26 14:32       ` Stefano Stabellini
  2015-01-26 14:34       ` Stefano Stabellini
  1 sibling, 0 replies; 14+ messages in thread
From: Stefano Stabellini @ 2015-01-26 14:32 UTC (permalink / raw)
  To: The development of GNU GRUB
  Cc: xen-devel, Ian Campbell, Jon Masters, Leif Lindholm, Roy Franz,
	linaro-uefi

[-- Attachment #1: Type: text/plain, Size: 2816 bytes --]

Ping?

I think it would be great to have multiboot support in grub.
As a matter of fact without it grub cannot load xen on arm.


On Wed, 21 Jan 2015, Fu Wei wrote:
> Hi everybody,
> any suggestion for my patchset?
> if these patches look fine, can they be merged?
> 
> Any feedback is welcome! :-)
> Great thanks !
> 
> On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com> wrote:
>       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
>       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
>       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> 
>       I've tested the code at
>       git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
>       which I believe is the same as this posting on an AMD Seattle system
>       with a 40_custom containing:
> 
>               menuentry 'Baremetal' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       linux /boot/vmlinuz console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
>               menuentry 'Xen' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       multiboot /boot/xen no-bootscrub console=dtuart conswitch=x dtuart=/smb/serial@e1010000 noreboot
>       sync_console dom0_mem=256M dom0_max_vcpus=1
>                       module /boot/vmlinuz-xen console=hvc0 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
> 
>       (my system is too confused for 10_linux or 20_linux_xen right now, but I
>       believe this is representative of what they would emit)
> 
>       The result was that I could boot both Baremetal and Xen via grub. So:
> 
>       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> 
>       I've not looked at the code (although I did review several older
>       iterations), would it be useful to the grub maintainers for me to do so?
> 
>       Ian.
> 
> 
> 
> 
> --
> Best regards,
> 
> Fu Wei
> Software Engineer
> Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> Ph: +86 21 61221326(direct)
> Ph: +86 186 2020 4684 (mobile)
> Room 1512, Regus One Corporate Avenue,Level 15,
> One Corporate Avenue,222 Hubin Road,Huangpu District,
> Shanghai,China 200021 
> 
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2015-01-26 14:32       ` Stefano Stabellini
  0 siblings, 0 replies; 14+ messages in thread
From: Stefano Stabellini @ 2015-01-26 14:32 UTC (permalink / raw)
  To: The development of GNU GRUB
  Cc: xen-devel, Ian Campbell, Jon Masters, Leif Lindholm, Roy Franz,
	linaro-uefi

[-- Attachment #1: Type: text/plain, Size: 2816 bytes --]

Ping?

I think it would be great to have multiboot support in grub.
As a matter of fact without it grub cannot load xen on arm.


On Wed, 21 Jan 2015, Fu Wei wrote:
> Hi everybody,
> any suggestion for my patchset?
> if these patches look fine, can they be merged?
> 
> Any feedback is welcome! :-)
> Great thanks !
> 
> On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com> wrote:
>       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
>       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
>       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> 
>       I've tested the code at
>       git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
>       which I believe is the same as this posting on an AMD Seattle system
>       with a 40_custom containing:
> 
>               menuentry 'Baremetal' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       linux /boot/vmlinuz console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
>               menuentry 'Xen' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       multiboot /boot/xen no-bootscrub console=dtuart conswitch=x dtuart=/smb/serial@e1010000 noreboot
>       sync_console dom0_mem=256M dom0_max_vcpus=1
>                       module /boot/vmlinuz-xen console=hvc0 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
> 
>       (my system is too confused for 10_linux or 20_linux_xen right now, but I
>       believe this is representative of what they would emit)
> 
>       The result was that I could boot both Baremetal and Xen via grub. So:
> 
>       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> 
>       I've not looked at the code (although I did review several older
>       iterations), would it be useful to the grub maintainers for me to do so?
> 
>       Ian.
> 
> 
> 
> 
> --
> Best regards,
> 
> Fu Wei
> Software Engineer
> Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> Ph: +86 21 61221326(direct)
> Ph: +86 186 2020 4684 (mobile)
> Room 1512, Regus One Corporate Avenue,Level 15,
> One Corporate Avenue,222 Hubin Road,Huangpu District,
> Shanghai,China 200021 
> 
> 

[-- Attachment #2: Type: text/plain, Size: 141 bytes --]

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-01-21 14:06   ` Fu Wei
@ 2015-01-26 14:34       ` Stefano Stabellini
  2015-01-26 14:34       ` Stefano Stabellini
  1 sibling, 0 replies; 14+ messages in thread
From: Stefano Stabellini @ 2015-01-26 14:34 UTC (permalink / raw)
  To: The development of GNU GRUB
  Cc: xen-devel, Ian Campbell, Jon Masters, Leif Lindholm, Roy Franz,
	linaro-uefi

[-- Attachment #1: Type: text/plain, Size: 2816 bytes --]

Ping?

I think it would be great to have multiboot support in grub.
As a matter of fact without it grub cannot load xen on arm.


On Wed, 21 Jan 2015, Fu Wei wrote:
> Hi everybody,
> any suggestion for my patchset?
> if these patches look fine, can they be merged?
> 
> Any feedback is welcome! :-)
> Great thanks !
> 
> On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com> wrote:
>       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
>       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
>       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> 
>       I've tested the code at
>       git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
>       which I believe is the same as this posting on an AMD Seattle system
>       with a 40_custom containing:
> 
>               menuentry 'Baremetal' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       linux /boot/vmlinuz console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
>               menuentry 'Xen' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       multiboot /boot/xen no-bootscrub console=dtuart conswitch=x dtuart=/smb/serial@e1010000 noreboot
>       sync_console dom0_mem=256M dom0_max_vcpus=1
>                       module /boot/vmlinuz-xen console=hvc0 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
> 
>       (my system is too confused for 10_linux or 20_linux_xen right now, but I
>       believe this is representative of what they would emit)
> 
>       The result was that I could boot both Baremetal and Xen via grub. So:
> 
>       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> 
>       I've not looked at the code (although I did review several older
>       iterations), would it be useful to the grub maintainers for me to do so?
> 
>       Ian.
> 
> 
> 
> 
> --
> Best regards,
> 
> Fu Wei
> Software Engineer
> Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> Ph: +86 21 61221326(direct)
> Ph: +86 186 2020 4684 (mobile)
> Room 1512, Regus One Corporate Avenue,Level 15,
> One Corporate Avenue,222 Hubin Road,Huangpu District,
> Shanghai,China 200021 
> 
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2015-01-26 14:34       ` Stefano Stabellini
  0 siblings, 0 replies; 14+ messages in thread
From: Stefano Stabellini @ 2015-01-26 14:34 UTC (permalink / raw)
  To: The development of GNU GRUB
  Cc: xen-devel, Ian Campbell, Jon Masters, Leif Lindholm, Roy Franz,
	linaro-uefi

[-- Attachment #1: Type: text/plain, Size: 2816 bytes --]

Ping?

I think it would be great to have multiboot support in grub.
As a matter of fact without it grub cannot load xen on arm.


On Wed, 21 Jan 2015, Fu Wei wrote:
> Hi everybody,
> any suggestion for my patchset?
> if these patches look fine, can they be merged?
> 
> Any feedback is welcome! :-)
> Great thanks !
> 
> On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com> wrote:
>       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
>       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
>       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> 
>       I've tested the code at
>       git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
>       which I believe is the same as this posting on an AMD Seattle system
>       with a 40_custom containing:
> 
>               menuentry 'Baremetal' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       linux /boot/vmlinuz console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
>               menuentry 'Xen' {
>                       insmod gzio
>                       insmod part_msdos
>                       insmod ext2
>                       set root='hd0,msdos2'
>                       search --no-floppy --fs-uuid --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>                       multiboot /boot/xen no-bootscrub console=dtuart conswitch=x dtuart=/smb/serial@e1010000 noreboot
>       sync_console dom0_mem=256M dom0_max_vcpus=1
>                       module /boot/vmlinuz-xen console=hvc0 earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>               }
> 
>       (my system is too confused for 10_linux or 20_linux_xen right now, but I
>       believe this is representative of what they would emit)
> 
>       The result was that I could boot both Baremetal and Xen via grub. So:
> 
>       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> 
>       I've not looked at the code (although I did review several older
>       iterations), would it be useful to the grub maintainers for me to do so?
> 
>       Ian.
> 
> 
> 
> 
> --
> Best regards,
> 
> Fu Wei
> Software Engineer
> Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> Ph: +86 21 61221326(direct)
> Ph: +86 186 2020 4684 (mobile)
> Room 1512, Regus One Corporate Avenue,Level 15,
> One Corporate Avenue,222 Hubin Road,Huangpu District,
> Shanghai,China 200021 
> 
> 

[-- Attachment #2: Type: text/plain, Size: 141 bytes --]

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-01-26 14:32       ` Stefano Stabellini
@ 2015-04-10  2:32         ` Fu Wei
  -1 siblings, 0 replies; 14+ messages in thread
From: Fu Wei @ 2015-04-10  2:32 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: linaro-uefi, The development of GNU GRUB, xen-devel, Ian Campbell,
	Jon Masters

[-- Attachment #1: Type: text/plain, Size: 3546 bytes --]

Hi everybody,
any suggestion for my patchset?
Please let me know if there are some place need to be fixed or improved, if
these patches look good to you, can they be merged?

Any feedback or suggestion  is welcome! :-)
Great thanks !

On 26 January 2015 at 22:32, Stefano Stabellini <
stefano.stabellini@eu.citrix.com> wrote:

> Ping?
>
> I think it would be great to have multiboot support in grub.
> As a matter of fact without it grub cannot load xen on arm.
>
>
> On Wed, 21 Jan 2015, Fu Wei wrote:
> > Hi everybody,
> > any suggestion for my patchset?
> > if these patches look fine, can they be merged?
> >
> > Any feedback is welcome! :-)
> > Great thanks !
> >
> > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> wrote:
> >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> >
> >       I've tested the code at
> >       git://
> git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> >       which I believe is the same as this posting on an AMD Seattle
> system
> >       with a 40_custom containing:
> >
> >               menuentry 'Baremetal' {
> >                       insmod gzio
> >                       insmod part_msdos
> >                       insmod ext2
> >                       set root='hd0,msdos2'
> >                       search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
> >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> >               }
> >               menuentry 'Xen' {
> >                       insmod gzio
> >                       insmod part_msdos
> >                       insmod ext2
> >                       set root='hd0,msdos2'
> >                       search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
> >                       multiboot /boot/xen no-bootscrub console=dtuart
> conswitch=x dtuart=/smb/serial@e1010000 noreboot
> >       sync_console dom0_mem=256M dom0_max_vcpus=1
> >                       module /boot/vmlinuz-xen console=hvc0
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> >               }
> >
> >       (my system is too confused for 10_linux or 20_linux_xen right now,
> but I
> >       believe this is representative of what they would emit)
> >
> >       The result was that I could boot both Baremetal and Xen via grub.
> So:
> >
> >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> >
> >       I've not looked at the code (although I did review several older
> >       iterations), would it be useful to the grub maintainers for me to
> do so?
> >
> >       Ian.
> >
> >
> >
> >
> > --
> > Best regards,
> >
> > Fu Wei
> > Software Engineer
> > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > Ph: +86 21 61221326(direct)
> > Ph: +86 186 2020 4684 (mobile)
> > Room 1512, Regus One Corporate Avenue,Level 15,
> > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > Shanghai,China 200021
> >
> >
>
> _______________________________________________
> Linaro-uefi mailing list
> Linaro-uefi@lists.linaro.org
> http://lists.linaro.org/mailman/listinfo/linaro-uefi
>
>


-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021

[-- Attachment #2: Type: text/html, Size: 5353 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2015-04-10  2:32         ` Fu Wei
  0 siblings, 0 replies; 14+ messages in thread
From: Fu Wei @ 2015-04-10  2:32 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: linaro-uefi, The development of GNU GRUB, xen-devel, Ian Campbell,
	Jon Masters


[-- Attachment #1.1: Type: text/plain, Size: 3546 bytes --]

Hi everybody,
any suggestion for my patchset?
Please let me know if there are some place need to be fixed or improved, if
these patches look good to you, can they be merged?

Any feedback or suggestion  is welcome! :-)
Great thanks !

On 26 January 2015 at 22:32, Stefano Stabellini <
stefano.stabellini@eu.citrix.com> wrote:

> Ping?
>
> I think it would be great to have multiboot support in grub.
> As a matter of fact without it grub cannot load xen on arm.
>
>
> On Wed, 21 Jan 2015, Fu Wei wrote:
> > Hi everybody,
> > any suggestion for my patchset?
> > if these patches look fine, can they be merged?
> >
> > Any feedback is welcome! :-)
> > Great thanks !
> >
> > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> wrote:
> >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> >
> >       I've tested the code at
> >       git://
> git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> >       which I believe is the same as this posting on an AMD Seattle
> system
> >       with a 40_custom containing:
> >
> >               menuentry 'Baremetal' {
> >                       insmod gzio
> >                       insmod part_msdos
> >                       insmod ext2
> >                       set root='hd0,msdos2'
> >                       search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
> >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> >               }
> >               menuentry 'Xen' {
> >                       insmod gzio
> >                       insmod part_msdos
> >                       insmod ext2
> >                       set root='hd0,msdos2'
> >                       search --no-floppy --fs-uuid --set=root
> d4178d5c-96a8-46ee-a304-0d87baa545cd
> >                       multiboot /boot/xen no-bootscrub console=dtuart
> conswitch=x dtuart=/smb/serial@e1010000 noreboot
> >       sync_console dom0_mem=256M dom0_max_vcpus=1
> >                       module /boot/vmlinuz-xen console=hvc0
> earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> >               }
> >
> >       (my system is too confused for 10_linux or 20_linux_xen right now,
> but I
> >       believe this is representative of what they would emit)
> >
> >       The result was that I could boot both Baremetal and Xen via grub.
> So:
> >
> >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> >
> >       I've not looked at the code (although I did review several older
> >       iterations), would it be useful to the grub maintainers for me to
> do so?
> >
> >       Ian.
> >
> >
> >
> >
> > --
> > Best regards,
> >
> > Fu Wei
> > Software Engineer
> > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > Ph: +86 21 61221326(direct)
> > Ph: +86 186 2020 4684 (mobile)
> > Room 1512, Regus One Corporate Avenue,Level 15,
> > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > Shanghai,China 200021
> >
> >
>
> _______________________________________________
> Linaro-uefi mailing list
> Linaro-uefi@lists.linaro.org
> http://lists.linaro.org/mailman/listinfo/linaro-uefi
>
>


-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021

[-- Attachment #1.2: Type: text/html, Size: 5353 bytes --]

[-- Attachment #2: Type: text/plain, Size: 141 bytes --]

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-04-10  2:32         ` Fu Wei
  (?)
@ 2015-04-15 11:35         ` Ian Campbell
  -1 siblings, 0 replies; 14+ messages in thread
From: Ian Campbell @ 2015-04-15 11:35 UTC (permalink / raw)
  To: Fu Wei
  Cc: linaro-uefi, The development of GNU GRUB, xen-devel, Jon Masters,
	Stefano Stabellini

On Fri, 2015-04-10 at 10:32 +0800, Fu Wei wrote:
> Hi everybody,
> any suggestion for my patchset? 

Your CC list contains grub-devel, some other lists and a bunch of
individuals who are not actually grub developers, who are the ones I
think you actually need to be pinging. Perhaps try addressing some
relevant grub developer(s) directly?

> Please let me know if there are some place need to be fixed or
> improved, if these patches look good to you, can they be merged?
> 
> Any feedback or suggestion  is welcome! :-)
> Great thanks !
> 
> On 26 January 2015 at 22:32, Stefano Stabellini
> <stefano.stabellini@eu.citrix.com> wrote:
>         Ping?
>         
>         I think it would be great to have multiboot support in grub.
>         As a matter of fact without it grub cannot load xen on arm.
>         
>         
>         On Wed, 21 Jan 2015, Fu Wei wrote:
>         > Hi everybody,
>         > any suggestion for my patchset?
>         > if these patches look fine, can they be merged?
>         >
>         > Any feedback is welcome! :-)
>         > Great thanks !
>         >
>         > On 9 January 2015 at 00:38, Ian Campbell
>         <Ian.Campbell@citrix.com> wrote:
>         >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
>         >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
>         >       > Reviewed-by: Leif Lindholm
>         <leif.lindholm@linaro.org>
>         >
>         >       I've tested the code at
>         >
>          git://git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
>         >       which I believe is the same as this posting on an AMD
>         Seattle system
>         >       with a 40_custom containing:
>         >
>         >               menuentry 'Baremetal' {
>         >                       insmod gzio
>         >                       insmod part_msdos
>         >                       insmod ext2
>         >                       set root='hd0,msdos2'
>         >                       search --no-floppy --fs-uuid
>         --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>         >                       linux /boot/vmlinuz
>         console=ttyAMA0,115200n8 earlycon=pl011,0xe1010000
>         root=/dev/sda2 rootwait
>         >               }
>         >               menuentry 'Xen' {
>         >                       insmod gzio
>         >                       insmod part_msdos
>         >                       insmod ext2
>         >                       set root='hd0,msdos2'
>         >                       search --no-floppy --fs-uuid
>         --set=root d4178d5c-96a8-46ee-a304-0d87baa545cd
>         >                       multiboot /boot/xen no-bootscrub
>         console=dtuart conswitch=x dtuart=/smb/serial@e1010000
>         noreboot
>         >       sync_console dom0_mem=256M dom0_max_vcpus=1
>         >                       module /boot/vmlinuz-xen console=hvc0
>         earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
>         >               }
>         >
>         >       (my system is too confused for 10_linux or
>         20_linux_xen right now, but I
>         >       believe this is representative of what they would
>         emit)
>         >
>         >       The result was that I could boot both Baremetal and
>         Xen via grub. So:
>         >
>         >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
>         >
>         >       I've not looked at the code (although I did review
>         several older
>         >       iterations), would it be useful to the grub
>         maintainers for me to do so?
>         >
>         >       Ian.
>         >
>         >
>         >
>         >
>         > --
>         > Best regards,
>         >
>         > Fu Wei
>         > Software Engineer
>         > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
>         > Ph: +86 21 61221326(direct)
>         > Ph: +86 186 2020 4684 (mobile)
>         > Room 1512, Regus One Corporate Avenue,Level 15,
>         > One Corporate Avenue,222 Hubin Road,Huangpu District,
>         > Shanghai,China 200021 
>         >
>         > 
>         
>         _______________________________________________
>         Linaro-uefi mailing list
>         Linaro-uefi@lists.linaro.org
>         http://lists.linaro.org/mailman/listinfo/linaro-uefi
>         
> 
> 
> 
> -- 
> Best regards, 
> 
> Fu Wei 
> Software Engineer 
> Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch 
> Ph: +86 21 61221326(direct) 
> Ph: +86 186 2020 4684 (mobile) 
> Room 1512, Regus One Corporate Avenue,Level 15, 
> One Corporate Avenue,222 Hubin Road,Huangpu District, 
> Shanghai,China 200021 
> 




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-04-10  2:32         ` Fu Wei
@ 2015-05-03 18:55           ` Andrei Borzenkov
  -1 siblings, 0 replies; 14+ messages in thread
From: Andrei Borzenkov @ 2015-05-03 18:55 UTC (permalink / raw)
  To: Fu Wei
  Cc: The development of GNU GRUB, xen-devel, Ian Campbell,
	Stefano Stabellini, Jon Masters, linaro-uefi

В Fri, 10 Apr 2015 10:32:15 +0800
Fu Wei <fu.wei@linaro.org> пишет:

> Hi everybody,
> any suggestion for my patchset?
> Please let me know if there are some place need to be fixed or improved, if
> these patches look good to you, can they be merged?
> 
> Any feedback or suggestion  is welcome! :-)
> Great thanks !
> 

Sorry for delay. grub-devel is not overcrowded right now; I started to
review them but got distracted. I'll try to find time.

> On 26 January 2015 at 22:32, Stefano Stabellini <
> stefano.stabellini@eu.citrix.com> wrote:
> 
> > Ping?
> >
> > I think it would be great to have multiboot support in grub.
> > As a matter of fact without it grub cannot load xen on arm.
> >
> >
> > On Wed, 21 Jan 2015, Fu Wei wrote:
> > > Hi everybody,
> > > any suggestion for my patchset?
> > > if these patches look fine, can they be merged?
> > >
> > > Any feedback is welcome! :-)
> > > Great thanks !
> > >
> > > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> > wrote:
> > >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> > >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> > >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> > >
> > >       I've tested the code at
> > >       git://
> > git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> > >       which I believe is the same as this posting on an AMD Seattle
> > system
> > >       with a 40_custom containing:
> > >
> > >               menuentry 'Baremetal' {
> > >                       insmod gzio
> > >                       insmod part_msdos
> > >                       insmod ext2
> > >                       set root='hd0,msdos2'
> > >                       search --no-floppy --fs-uuid --set=root
> > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > >               }
> > >               menuentry 'Xen' {
> > >                       insmod gzio
> > >                       insmod part_msdos
> > >                       insmod ext2
> > >                       set root='hd0,msdos2'
> > >                       search --no-floppy --fs-uuid --set=root
> > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > >                       multiboot /boot/xen no-bootscrub console=dtuart
> > conswitch=x dtuart=/smb/serial@e1010000 noreboot
> > >       sync_console dom0_mem=256M dom0_max_vcpus=1
> > >                       module /boot/vmlinuz-xen console=hvc0
> > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > >               }
> > >
> > >       (my system is too confused for 10_linux or 20_linux_xen right now,
> > but I
> > >       believe this is representative of what they would emit)
> > >
> > >       The result was that I could boot both Baremetal and Xen via grub.
> > So:
> > >
> > >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> > >
> > >       I've not looked at the code (although I did review several older
> > >       iterations), would it be useful to the grub maintainers for me to
> > do so?
> > >
> > >       Ian.
> > >
> > >
> > >
> > >
> > > --
> > > Best regards,
> > >
> > > Fu Wei
> > > Software Engineer
> > > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > > Ph: +86 21 61221326(direct)
> > > Ph: +86 186 2020 4684 (mobile)
> > > Room 1512, Regus One Corporate Avenue,Level 15,
> > > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > > Shanghai,China 200021
> > >
> > >
> >
> > _______________________________________________
> > Linaro-uefi mailing list
> > Linaro-uefi@lists.linaro.org
> > http://lists.linaro.org/mailman/listinfo/linaro-uefi
> >
> >
> 
> 



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2015-05-03 18:55           ` Andrei Borzenkov
  0 siblings, 0 replies; 14+ messages in thread
From: Andrei Borzenkov @ 2015-05-03 18:55 UTC (permalink / raw)
  To: Fu Wei
  Cc: The development of GNU GRUB, xen-devel, Ian Campbell,
	Stefano Stabellini, Jon Masters, linaro-uefi

В Fri, 10 Apr 2015 10:32:15 +0800
Fu Wei <fu.wei@linaro.org> пишет:

> Hi everybody,
> any suggestion for my patchset?
> Please let me know if there are some place need to be fixed or improved, if
> these patches look good to you, can they be merged?
> 
> Any feedback or suggestion  is welcome! :-)
> Great thanks !
> 

Sorry for delay. grub-devel is not overcrowded right now; I started to
review them but got distracted. I'll try to find time.

> On 26 January 2015 at 22:32, Stefano Stabellini <
> stefano.stabellini@eu.citrix.com> wrote:
> 
> > Ping?
> >
> > I think it would be great to have multiboot support in grub.
> > As a matter of fact without it grub cannot load xen on arm.
> >
> >
> > On Wed, 21 Jan 2015, Fu Wei wrote:
> > > Hi everybody,
> > > any suggestion for my patchset?
> > > if these patches look fine, can they be merged?
> > >
> > > Any feedback is welcome! :-)
> > > Great thanks !
> > >
> > > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> > wrote:
> > >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> > >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> > >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> > >
> > >       I've tested the code at
> > >       git://
> > git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> > >       which I believe is the same as this posting on an AMD Seattle
> > system
> > >       with a 40_custom containing:
> > >
> > >               menuentry 'Baremetal' {
> > >                       insmod gzio
> > >                       insmod part_msdos
> > >                       insmod ext2
> > >                       set root='hd0,msdos2'
> > >                       search --no-floppy --fs-uuid --set=root
> > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > >               }
> > >               menuentry 'Xen' {
> > >                       insmod gzio
> > >                       insmod part_msdos
> > >                       insmod ext2
> > >                       set root='hd0,msdos2'
> > >                       search --no-floppy --fs-uuid --set=root
> > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > >                       multiboot /boot/xen no-bootscrub console=dtuart
> > conswitch=x dtuart=/smb/serial@e1010000 noreboot
> > >       sync_console dom0_mem=256M dom0_max_vcpus=1
> > >                       module /boot/vmlinuz-xen console=hvc0
> > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > >               }
> > >
> > >       (my system is too confused for 10_linux or 20_linux_xen right now,
> > but I
> > >       believe this is representative of what they would emit)
> > >
> > >       The result was that I could boot both Baremetal and Xen via grub.
> > So:
> > >
> > >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> > >
> > >       I've not looked at the code (although I did review several older
> > >       iterations), would it be useful to the grub maintainers for me to
> > do so?
> > >
> > >       Ian.
> > >
> > >
> > >
> > >
> > > --
> > > Best regards,
> > >
> > > Fu Wei
> > > Software Engineer
> > > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > > Ph: +86 21 61221326(direct)
> > > Ph: +86 186 2020 4684 (mobile)
> > > Room 1512, Regus One Corporate Avenue,Level 15,
> > > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > > Shanghai,China 200021
> > >
> > >
> >
> > _______________________________________________
> > Linaro-uefi mailing list
> > Linaro-uefi@lists.linaro.org
> > http://lists.linaro.org/mailman/listinfo/linaro-uefi
> >
> >
> 
> 


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
  2015-05-03 18:55           ` Andrei Borzenkov
@ 2015-05-06 14:53             ` Fu Wei
  -1 siblings, 0 replies; 14+ messages in thread
From: Fu Wei @ 2015-05-06 14:53 UTC (permalink / raw)
  To: Andrei Borzenkov
  Cc: The development of GNU GRUB, xen-devel, Ian Campbell,
	Stefano Stabellini, Jon Masters, linaro-uefi

[-- Attachment #1: Type: text/plain, Size: 4524 bytes --]

Hi Andrie,

Great thanks for your reply!
Please let me know your suggestion for my patch, then I can improve it ASAP!

:-)
Thanks!

On 4 May 2015 at 02:55, Andrei Borzenkov <arvidjaar@gmail.com> wrote:

> В Fri, 10 Apr 2015 10:32:15 +0800
> Fu Wei <fu.wei@linaro.org> пишет:
>
> > Hi everybody,
> > any suggestion for my patchset?
> > Please let me know if there are some place need to be fixed or improved,
> if
> > these patches look good to you, can they be merged?
> >
> > Any feedback or suggestion  is welcome! :-)
> > Great thanks !
> >
>
> Sorry for delay. grub-devel is not overcrowded right now; I started to
> review them but got distracted. I'll try to find time.
>
> > On 26 January 2015 at 22:32, Stefano Stabellini <
> > stefano.stabellini@eu.citrix.com> wrote:
> >
> > > Ping?
> > >
> > > I think it would be great to have multiboot support in grub.
> > > As a matter of fact without it grub cannot load xen on arm.
> > >
> > >
> > > On Wed, 21 Jan 2015, Fu Wei wrote:
> > > > Hi everybody,
> > > > any suggestion for my patchset?
> > > > if these patches look fine, can they be merged?
> > > >
> > > > Any feedback is welcome! :-)
> > > > Great thanks !
> > > >
> > > > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> > > wrote:
> > > >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> > > >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> > > >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> > > >
> > > >       I've tested the code at
> > > >       git://
> > >
> git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> > > >       which I believe is the same as this posting on an AMD Seattle
> > > system
> > > >       with a 40_custom containing:
> > > >
> > > >               menuentry 'Baremetal' {
> > > >                       insmod gzio
> > > >                       insmod part_msdos
> > > >                       insmod ext2
> > > >                       set root='hd0,msdos2'
> > > >                       search --no-floppy --fs-uuid --set=root
> > > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > > >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> > > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > > >               }
> > > >               menuentry 'Xen' {
> > > >                       insmod gzio
> > > >                       insmod part_msdos
> > > >                       insmod ext2
> > > >                       set root='hd0,msdos2'
> > > >                       search --no-floppy --fs-uuid --set=root
> > > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > > >                       multiboot /boot/xen no-bootscrub console=dtuart
> > > conswitch=x dtuart=/smb/serial@e1010000 noreboot
> > > >       sync_console dom0_mem=256M dom0_max_vcpus=1
> > > >                       module /boot/vmlinuz-xen console=hvc0
> > > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > > >               }
> > > >
> > > >       (my system is too confused for 10_linux or 20_linux_xen right
> now,
> > > but I
> > > >       believe this is representative of what they would emit)
> > > >
> > > >       The result was that I could boot both Baremetal and Xen via
> grub.
> > > So:
> > > >
> > > >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> > > >
> > > >       I've not looked at the code (although I did review several
> older
> > > >       iterations), would it be useful to the grub maintainers for me
> to
> > > do so?
> > > >
> > > >       Ian.
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > >
> > > > Fu Wei
> > > > Software Engineer
> > > > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > > > Ph: +86 21 61221326(direct)
> > > > Ph: +86 186 2020 4684 (mobile)
> > > > Room 1512, Regus One Corporate Avenue,Level 15,
> > > > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > > > Shanghai,China 200021
> > > >
> > > >
> > >
> > > _______________________________________________
> > > Linaro-uefi mailing list
> > > Linaro-uefi@lists.linaro.org
> > > http://lists.linaro.org/mailman/listinfo/linaro-uefi
> > >
> > >
> >
> >
>
>


-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021

[-- Attachment #2: Type: text/html, Size: 6993 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Linaro-uefi] [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot
@ 2015-05-06 14:53             ` Fu Wei
  0 siblings, 0 replies; 14+ messages in thread
From: Fu Wei @ 2015-05-06 14:53 UTC (permalink / raw)
  To: Andrei Borzenkov
  Cc: The development of GNU GRUB, xen-devel, Ian Campbell,
	Stefano Stabellini, Jon Masters, linaro-uefi


[-- Attachment #1.1: Type: text/plain, Size: 4524 bytes --]

Hi Andrie,

Great thanks for your reply!
Please let me know your suggestion for my patch, then I can improve it ASAP!

:-)
Thanks!

On 4 May 2015 at 02:55, Andrei Borzenkov <arvidjaar@gmail.com> wrote:

> В Fri, 10 Apr 2015 10:32:15 +0800
> Fu Wei <fu.wei@linaro.org> пишет:
>
> > Hi everybody,
> > any suggestion for my patchset?
> > Please let me know if there are some place need to be fixed or improved,
> if
> > these patches look good to you, can they be merged?
> >
> > Any feedback or suggestion  is welcome! :-)
> > Great thanks !
> >
>
> Sorry for delay. grub-devel is not overcrowded right now; I started to
> review them but got distracted. I'll try to find time.
>
> > On 26 January 2015 at 22:32, Stefano Stabellini <
> > stefano.stabellini@eu.citrix.com> wrote:
> >
> > > Ping?
> > >
> > > I think it would be great to have multiboot support in grub.
> > > As a matter of fact without it grub cannot load xen on arm.
> > >
> > >
> > > On Wed, 21 Jan 2015, Fu Wei wrote:
> > > > Hi everybody,
> > > > any suggestion for my patchset?
> > > > if these patches look fine, can they be merged?
> > > >
> > > > Any feedback is welcome! :-)
> > > > Great thanks !
> > > >
> > > > On 9 January 2015 at 00:38, Ian Campbell <Ian.Campbell@citrix.com>
> > > wrote:
> > > >       On Fri, 2014-12-19 at 01:55 +0800, Fu Wei wrote:
> > > >       > Signed-off-by: Fu Wei <fu.wei@linaro.org>
> > > >       > Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> > > >
> > > >       I've tested the code at
> > > >       git://
> > >
> git.linaro.org/people/fu.wei/grub.git#multiboot_xen_support_upstream_v4.0
> > > >       which I believe is the same as this posting on an AMD Seattle
> > > system
> > > >       with a 40_custom containing:
> > > >
> > > >               menuentry 'Baremetal' {
> > > >                       insmod gzio
> > > >                       insmod part_msdos
> > > >                       insmod ext2
> > > >                       set root='hd0,msdos2'
> > > >                       search --no-floppy --fs-uuid --set=root
> > > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > > >                       linux /boot/vmlinuz console=ttyAMA0,115200n8
> > > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > > >               }
> > > >               menuentry 'Xen' {
> > > >                       insmod gzio
> > > >                       insmod part_msdos
> > > >                       insmod ext2
> > > >                       set root='hd0,msdos2'
> > > >                       search --no-floppy --fs-uuid --set=root
> > > d4178d5c-96a8-46ee-a304-0d87baa545cd
> > > >                       multiboot /boot/xen no-bootscrub console=dtuart
> > > conswitch=x dtuart=/smb/serial@e1010000 noreboot
> > > >       sync_console dom0_mem=256M dom0_max_vcpus=1
> > > >                       module /boot/vmlinuz-xen console=hvc0
> > > earlycon=pl011,0xe1010000 root=/dev/sda2 rootwait
> > > >               }
> > > >
> > > >       (my system is too confused for 10_linux or 20_linux_xen right
> now,
> > > but I
> > > >       believe this is representative of what they would emit)
> > > >
> > > >       The result was that I could boot both Baremetal and Xen via
> grub.
> > > So:
> > > >
> > > >       Tested-by: Ian Campbell <ian.campbell@citrix.com>
> > > >
> > > >       I've not looked at the code (although I did review several
> older
> > > >       iterations), would it be useful to the grub maintainers for me
> to
> > > do so?
> > > >
> > > >       Ian.
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > >
> > > > Fu Wei
> > > > Software Engineer
> > > > Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
> > > > Ph: +86 21 61221326(direct)
> > > > Ph: +86 186 2020 4684 (mobile)
> > > > Room 1512, Regus One Corporate Avenue,Level 15,
> > > > One Corporate Avenue,222 Hubin Road,Huangpu District,
> > > > Shanghai,China 200021
> > > >
> > > >
> > >
> > > _______________________________________________
> > > Linaro-uefi mailing list
> > > Linaro-uefi@lists.linaro.org
> > > http://lists.linaro.org/mailman/listinfo/linaro-uefi
> > >
> > >
> >
> >
>
>


-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021

[-- Attachment #1.2: Type: text/html, Size: 6993 bytes --]

[-- Attachment #2: Type: text/plain, Size: 141 bytes --]

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-05-06 14:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-18 17:55 [PATCH 0/5]arm64: Add multiboot support (via fdt) for Xen boot Fu Wei
2015-01-08 16:38 ` Ian Campbell
2015-01-21 14:06   ` Fu Wei
2015-01-26 14:32     ` Stefano Stabellini
2015-01-26 14:32       ` Stefano Stabellini
2015-04-10  2:32       ` [Linaro-uefi] " Fu Wei
2015-04-10  2:32         ` Fu Wei
2015-04-15 11:35         ` Ian Campbell
2015-05-03 18:55         ` Andrei Borzenkov
2015-05-03 18:55           ` Andrei Borzenkov
2015-05-06 14:53           ` Fu Wei
2015-05-06 14:53             ` Fu Wei
2015-01-26 14:34     ` Stefano Stabellini
2015-01-26 14:34       ` Stefano Stabellini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.