mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
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>
This commit is contained in:
parent
a333cd7166
commit
ca20cf32ab
36 changed files with 234 additions and 96 deletions
|
@ -29,6 +29,8 @@
|
|||
#include "device_tree.h"
|
||||
#include "openpic.h"
|
||||
#include "ppce500.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
|
||||
#define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
|
||||
#define UIMAGE_LOAD_BASE 0
|
||||
|
@ -160,8 +162,8 @@ static void mpc8544ds_init(ram_addr_t ram_size,
|
|||
CPUState *env;
|
||||
uint64_t elf_entry;
|
||||
uint64_t elf_lowaddr;
|
||||
target_ulong entry=0;
|
||||
target_ulong loadaddr=UIMAGE_LOAD_BASE;
|
||||
target_phys_addr_t entry=0;
|
||||
target_phys_addr_t loadaddr=UIMAGE_LOAD_BASE;
|
||||
target_long kernel_size=0;
|
||||
target_ulong dt_base=DTB_LOAD_BASE;
|
||||
target_ulong initrd_base=INITRD_LOAD_BASE;
|
||||
|
@ -226,7 +228,7 @@ static void mpc8544ds_init(ram_addr_t ram_size,
|
|||
kernel_size = load_uimage(kernel_filename, &entry, &loadaddr, NULL);
|
||||
if (kernel_size < 0) {
|
||||
kernel_size = load_elf(kernel_filename, 0, &elf_entry, &elf_lowaddr,
|
||||
NULL);
|
||||
NULL, 1, ELF_MACHINE, 0);
|
||||
entry = elf_entry;
|
||||
loadaddr = elf_lowaddr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue