diff options
author | Kevin Wolf <kwolf@redhat.com> | 2009-12-04 17:19:25 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-18 11:26:26 -0600 |
commit | 092493be3caab1ac77f4223b4c3fb0975d1ed490 (patch) | |
tree | 2114404d419f7424302d5ec8332e81654ce0c46f /hw/loader.c | |
parent | 75f124753922451ee697defd81a80a91ce3f9888 (diff) | |
download | qemu-092493be3caab1ac77f4223b4c3fb0975d1ed490.tar.gz qemu-092493be3caab1ac77f4223b4c3fb0975d1ed490.tar.bz2 qemu-092493be3caab1ac77f4223b4c3fb0975d1ed490.zip |
Fix loading of ELF multiboot kernels
The multiboot implementation assumed that there is only one program header
(which contains the entry point) and that the entry point is at the start of
the code. This doesn't hold true generally and caused too little data to be
loaded.
Fix the loading code to pass the whole loaded data to the Multiboot Option ROM.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/loader.c')
-rw-r--r-- | hw/loader.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/loader.c b/hw/loader.c index 2d7a2c4954..4c6981fc40 100644 --- a/hw/loader.c +++ b/hw/loader.c @@ -718,8 +718,6 @@ int rom_copy(uint8_t *dest, target_phys_addr_t addr, size_t size) QTAILQ_FOREACH(rom, &roms, next) { if (rom->max) continue; - if (rom->min > addr) - continue; if (rom->min + rom->romsize < addr) continue; if (rom->min > end) |