mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
elf-loader: Provide the possibility to relocate s390 ELF files
On s390, we would like to load our "BIOS" s390-ccw.img to the end of the RAM. Therefor we need the possibility to relocate the ELF file so that it can also run from different addresses. This patch adds the necessary code to the QEMU ELF loader function. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com> Message-Id: <1425895973-15239-2-git-send-email-thuth@linux.vnet.ibm.com> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
This commit is contained in:
parent
5c8d542004
commit
5dce07e1cb
3 changed files with 82 additions and 0 deletions
|
@ -1508,6 +1508,7 @@ struct elf32_fdpic_loadmap {
|
|||
#define elf_shdr elf32_shdr
|
||||
#define elf_sym elf32_sym
|
||||
#define elf_addr_t Elf32_Off
|
||||
#define elf_rela elf32_rela
|
||||
|
||||
#ifdef ELF_USES_RELOCA
|
||||
# define ELF_RELOC Elf32_Rela
|
||||
|
@ -1523,6 +1524,7 @@ struct elf32_fdpic_loadmap {
|
|||
#define elf_shdr elf64_shdr
|
||||
#define elf_sym elf64_sym
|
||||
#define elf_addr_t Elf64_Off
|
||||
#define elf_rela elf64_rela
|
||||
|
||||
#ifdef ELF_USES_RELOCA
|
||||
# define ELF_RELOC Elf64_Rela
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue