]> git.baikalelectronics.ru Git - uboot.git/commit
efi_loader: Rename sections to allow for implicit data
authorAlexander Graf <agraf@suse.de>
Tue, 12 Jun 2018 05:48:37 +0000 (07:48 +0200)
committerAlexander Graf <agraf@suse.de>
Wed, 25 Jul 2018 12:57:44 +0000 (14:57 +0200)
commit7fbd71167e16b4adaf486cef2d96eea3dcb354fa
tree17629bc8a850f3b4151eda5311640a4f545b8f0c
parentbbd88df113218010a13e108846bf49b0624466bd
efi_loader: Rename sections to allow for implicit data

Some times gcc may generate data that is then used within code that may
be part of an efi runtime section. That data could be jump tables,
constants or strings.

In order to make sure we catch these, we need to ensure that gcc emits
them into a section that we can relocate together with all the other
efi runtime bits. This only works if the -ffunction-sections and
-fdata-sections flags are passed and the efi runtime functions are
in a section that starts with ".text".

Up to now we had all efi runtime bits in sections that did not
interfere with the normal section naming scheme, but this forces
us to do so. Hence we need to move the efi_loader text/data/rodata
sections before the global *(.text*) catch-all section.

With this patch in place, we should hopefully have an easier time
to extend the efi runtime functionality in the future.

Signed-off-by: Alexander Graf <agraf@suse.de>
[agraf: Fix x86_64 breakage]
16 files changed:
arch/arm/config.mk
arch/arm/cpu/armv8/u-boot.lds
arch/arm/cpu/u-boot.lds
arch/arm/mach-zynq/u-boot.lds
arch/riscv/cpu/ax25/u-boot.lds
arch/sandbox/config.mk
arch/sandbox/cpu/u-boot.lds
arch/x86/config.mk
arch/x86/cpu/start.S
arch/x86/cpu/start64.S
arch/x86/cpu/u-boot-64.lds
arch/x86/cpu/u-boot.lds
board/qualcomm/dragonboard410c/u-boot.lds
board/qualcomm/dragonboard820c/u-boot.lds
board/ti/am335x/u-boot.lds
include/efi_loader.h