Re: [Qemu-devel] [PATCH v7 01/11] hw/arm: simplify arm_load_dtb

2019-07-26 Thread Tao Xu
On 7/23/2019 10:59 PM, Igor Mammedov wrote: On Tue, 16 Jul 2019 22:51:11 +0800 Tao Xu wrote: In struct arm_boot_info, kernel_filename, initrd_filename and kernel_cmdline are copied from from MachineState. This patch add MachineState as a parameter into arm_load_dtb() and move the copy chunk of

Re: [Qemu-devel] [PATCH v7 01/11] hw/arm: simplify arm_load_dtb

2019-07-23 Thread Igor Mammedov
On Tue, 16 Jul 2019 22:51:11 +0800 Tao Xu wrote: > In struct arm_boot_info, kernel_filename, initrd_filename and > kernel_cmdline are copied from from MachineState. This patch add > MachineState as a parameter into arm_load_dtb() and move the copy chunk > of kernel_filename, initrd_filename and k

[Qemu-devel] [PATCH v7 01/11] hw/arm: simplify arm_load_dtb

2019-07-16 Thread Tao Xu
In struct arm_boot_info, kernel_filename, initrd_filename and kernel_cmdline are copied from from MachineState. This patch add MachineState as a parameter into arm_load_dtb() and move the copy chunk of kernel_filename, initrd_filename and kernel_cmdline into arm_load_kernel(). Reviewed-by: Igor Ma