Re: [Qemu-devel] [PATCH 1/2] multiboot: Support arbitrary number of modules.

2010-01-08 Thread Anthony Liguori
On 12/26/2009 07:13 AM, Adam Lackorzynski wrote: Signed-off-by: Adam Lackorzynskia...@os.inf.tu-dresden.de Applied. Thanks. Regards, Anthony Liguori --- hw/pc.c | 268 +++ 1 files changed, 167 insertions(+), 101

[Qemu-devel] [PATCH 1/2] multiboot: Support arbitrary number of modules.

2009-12-26 Thread Adam Lackorzynski
Signed-off-by: Adam Lackorzynski a...@os.inf.tu-dresden.de --- hw/pc.c | 268 +++ 1 files changed, 167 insertions(+), 101 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 83f8dd0..2dca777 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -51,6

[Qemu-devel] [PATCH 1/2] multiboot: Support arbitrary number of modules.

2009-12-18 Thread Adam Lackorzynski
multiboot: Support arbitrary number of modules. Signed-off-by: Adam Lackorzynski a...@os.inf.tu-dresden.de --- hw/pc.c | 268 +++ 1 files changed, 167 insertions(+), 101 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index

[Qemu-devel] [PATCH 1/2] multiboot: Support arbitrary number of modules.

2009-12-06 Thread Adam Lackorzynski
On Thu Dec 03, 2009 at 17:24:59 -0600, Anthony Liguori wrote: +struct MultibootState { +void *mb_buf; /* buffer holding kernel, cmdlines and mb_infos */ +uint32_t mb_buf_phys; /* address in target */ +int mb_buf_size; /* size of mb_buf in bytes */ +int

[Qemu-devel] [PATCH 1/2] multiboot: Support arbitrary number of modules.

2009-12-03 Thread Adam Lackorzynski
multiboot: Support arbitrary number of modules. Addressed comments by Anthony. Signed-off-by: Adam Lackorzynski a...@os.inf.tu-dresden.de --- hw/pc.c | 260 ++ 1 files changed, 159 insertions(+), 101 deletions(-) diff --git a/hw/pc.c