diff options
| author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 14:58:02 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 14:58:02 +0000 |
| commit | ca20cf32ab3d945155141ef737f5d08ebb373e1d (patch) | |
| tree | 45515350fdf7b5322658095beec591565a78506d /hw/r2d.c | |
| parent | a333cd7166d12397635e16dcade28da5ba8ec7b3 (diff) | |
| download | focaccia-qemu-ca20cf32ab3d945155141ef737f5d08ebb373e1d.tar.gz focaccia-qemu-ca20cf32ab3d945155141ef737f5d08ebb373e1d.zip | |
Compile loader only once
Callers must pass ELF machine, byte swapping and symbol LSB clearing information to ELF loader. A.out loader needs page size information, pass that too as a parameter. Extract prototypes to a separate file. Move loader.[ch] and elf_ops.h under hw. Adjust callers. Also use target_phys_addr_t instead of target_ulong for addresses: loader addresses aren't virtual. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/r2d.c')
| -rw-r--r-- | hw/r2d.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/r2d.c b/hw/r2d.c index ff514a482f..ea19ff623d 100644 --- a/hw/r2d.c +++ b/hw/r2d.c @@ -32,6 +32,7 @@ #include "net.h" #include "sh7750_regs.h" #include "ide.h" +#include "loader.h" #define SDRAM_BASE 0x0c000000 /* Physical location of SDRAM: Area 3 */ #define SDRAM_SIZE 0x04000000 |