diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-04-03 22:29:31 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:37:34 +0200 |
commit | 84b40b40ad9b95b4680766597c866b604147144c (patch) | |
tree | 2cc7a09e7e737744d42970300b03befb5a9b7cd1 /lib | |
parent | 7fb96a10b31953cde698326a61e963ba9df1dc1f (diff) | |
download | u-boot-84b40b40ad9b95b4680766597c866b604147144c.zip u-boot-84b40b40ad9b95b4680766597c866b604147144c.tar.gz u-boot-84b40b40ad9b95b4680766597c866b604147144c.tar.bz2 |
efi_loader: save image relocation address and size
For analyzing crash output the relocation address and size are needed.
Save them in the loaded image info.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_image_loader.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_image_loader.c b/lib/efi_loader/efi_image_loader.c index cac64ba..701387b 100644 --- a/lib/efi_loader/efi_image_loader.c +++ b/lib/efi_loader/efi_image_loader.c @@ -221,6 +221,8 @@ void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info) /* Populate the loaded image interface bits */ loaded_image_info->image_base = efi; loaded_image_info->image_size = image_size; + loaded_image_info->reloc_base = efi_reloc; + loaded_image_info->reloc_size = virt_size; return entry; } |