Re: [PATCH qemu v3] x86: don't let decompressed kernel image clobber setup_data

2023-01-10 Thread Mathias Krause
the QEMU command line made the bug vanish (as QEMU then omits adding the random seed setup_data entries) . [1] https://github.com/qemu/qemu/commit/67f7e426e538 After digging a while I found this thread and it fixes the issue for me, thereby: Tested-by: Mathias Krause Thanks, Mathias > [snip]

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-26 Thread Mathias Krause
On 24.09.2010 14:47, Markus Armbruster wrote: > Mathias Krause writes: > >> On 17.09.2010 15:27, Anthony Liguori wrote: >>> On 09/17/2010 01:50 AM, Mathias Krause wrote: >>>> Am 16.09.2010 19:20 schrieb Anthony Liguori: >>>> >>>>> In

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-22 Thread Mathias Krause
On 17.09.2010 15:27, Anthony Liguori wrote: > On 09/17/2010 01:50 AM, Mathias Krause wrote: >> Am 16.09.2010 19:20 schrieb Anthony Liguori: >> >>> Instead of using FILE, I'd suggest using a BlockDriver to read and write >>> the data. >>> &

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-17 Thread Mathias Krause
Hi Kevin, On 17.09.2010 12:44, Kevin Wolf wrote: > Hi Mathias, > > Am 17.09.2010 08:42, schrieb Mathias Krause: >>> Using QEMU's block devices instead of a simple file would be >>> more consistent with the rest of QEMU and allow reading the >>> CMOS data

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-17 Thread Mathias Krause
On 17.09.2010 12:58, Stefan Weil wrote: > Am 17.09.2010 08:42, schrieb Mathias Krause: >> Am 16.09.2010 18:49, Stefan Weil schrieb: >>> Are there use cases where having a smaller CMOS size is better? >>> For example, when I want to emulate a system with 128 byte CMOS? &g

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-16 Thread Mathias Krause
Am 16.09.2010 19:20 schrieb Anthony Liguori: > Instead of using FILE, I'd suggest using a BlockDriver to read and write > the data. I'll fix that as soon as I figured how to use this interface. > I think it would be very nice to add write support too so that writes to > CMOS were persisted across

Re: [Qemu-devel] [PATCH] CMOS file support

2010-09-16 Thread Mathias Krause
Am 16.09.2010 18:49, Stefan Weil schrieb: > The intention of this patch is ok. Loading CMOS with initial data > is needed. I just want to add two questions / remarks how the > implementation might be improved. > > Are there use cases where having a smaller CMOS size is better? > For example, when

[Qemu-devel] [PATCH] CMOS file support

2010-09-16 Thread Mathias Krause
S RAM. Signed-off-by: Mathias Krause --- hw/mc146818rtc.c | 62 - 1 files changed, 56 insertions(+), 6 deletions(-) diff --git a/hw/mc146818rtc.c b/hw/mc146818rtc.c index 2b91fa8..9f215e0 100644 --- a/hw/mc146818rtc.c +++ b/hw/mc146818