> -Original Message-
> From: Gregor Haas
> Sent: Friday, June 28, 2024 9:51 AM
> To: qemu-devel@nongnu.org
> Cc: Yao, Xingtao/姚 幸涛 ; Gregor Haas
>
> Subject: [PATCH v3] hw/core/loader: allow loading larger ROMs
>
> The read() syscall is not guaranteed to
The read() syscall is not guaranteed to return all data from a file. The
default ROM loader implementation currently does not take this into account,
instead failing if all bytes are not read at once. This change loads the ROM
using load_image_size() instead, which correctly reads all data using
mu