Re: [RFC] hw/i386/multiboot2: add multiboot2 support

2024-02-06 Thread Jens Nyberg
I have sent an email now asking him if he wants to sign off on it, in which case I will add him as well. Jens Den tis 6 feb. 2024 16:50Daniel P. Berrangé skrev: > On Tue, Feb 06, 2024 at 02:52:31PM +0100, Jens Nyberg wrote: > > This is the first very rough version of what is

[RFC] hw/i386/multiboot2: add multiboot2 support

2024-02-06 Thread Jens Nyberg
into further improving this code. Any ideas on how to properly test this would also be nice! Signed-off-by: Jens Nyberg --- hw/i386/meson.build | 1 + hw/i386/multiboot2.c | 552 +++ hw/i386/multiboot2.h | 16

[PATCH] hw/i386/multiboot: Make bootloader_name static

2024-02-05 Thread Jens Nyberg
Global variable is only used in a single file and should therefor be set to static in order to avoid name collisions. Signed-off-by: Jens Nyberg --- hw/i386/multiboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/multiboot.c b/hw/i386/multiboot.c index 3332712ab3

[Qemu-devel] Multiboot using -kernel and -initrd stopped working

2013-07-20 Thread Jens Nyberg
Hi! I develop my own operating system and I have been using this command to start my operating system: $ qemu-system-x86_64 -kernel fudge -initrd initrd.tar I just recently upgraded the qemu package for arch linux and now this does not seem to work anymore. I get this error message: Error

Re: [Qemu-devel] Multiboot using -kernel and -initrd stopped working

2013-07-20 Thread Jens Nyberg
program header but not the second causing this problem. I will try to see if I can fix this so that qemu takes into account all program headers. // Jens 2013/7/20 Jens Nyberg jens.nyb...@gmail.com Hi! I develop my own operating system and I have been using this command to start my operating

Re: [Qemu-devel] Multiboot using -kernel and -initrd stopped working

2013-07-20 Thread Jens Nyberg
is supposed to be a pointer to a memory area. Because it just continues here the calculation for how much it has loaded will not correlate with what it is suppose to load. So now I need to figure out how rom-data is set and why it is empty. 2013/7/20 Jens Nyberg jens.nyb...@gmail.com I have some