2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-02-25 00:58:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These two symbols are declared in a C file so that the linker
|
|
|
|
* uses R_ARM_RELATIVE relocation, rather than the R_ARM_ABS32 one
|
|
|
|
* it would use if the symbols were defined in the linker file.
|
|
|
|
* Using only R_ARM_RELATIVE relocation ensures that references to
|
|
|
|
* the symbols are correct after as well as before relocation.
|
|
|
|
*
|
|
|
|
* We need a 0-byte-size type for these symbols, and the compiler
|
|
|
|
* does not allow defining objects of C type 'void'. Using an empty
|
|
|
|
* struct is allowed by the compiler, but causes gcc versions 4.4 and
|
|
|
|
* below to complain about aliasing. Therefore we use the next best
|
|
|
|
* thing: zero-sized arrays, which are both 0-byte-size and exempt from
|
|
|
|
* aliasing warnings.
|
|
|
|
*/
|
|
|
|
|
2013-06-11 12:17:32 +00:00
|
|
|
char __bss_start[0] __attribute__((section(".__bss_start")));
|
|
|
|
char __bss_end[0] __attribute__((section(".__bss_end")));
|
2013-06-11 12:17:33 +00:00
|
|
|
char __image_copy_start[0] __attribute__((section(".__image_copy_start")));
|
|
|
|
char __image_copy_end[0] __attribute__((section(".__image_copy_end")));
|
2013-06-11 12:17:34 +00:00
|
|
|
char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start")));
|
|
|
|
char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end")));
|
2014-07-12 13:24:02 +00:00
|
|
|
char __secure_start[0] __attribute__((section(".__secure_start")));
|
|
|
|
char __secure_end[0] __attribute__((section(".__secure_end")));
|
2016-06-19 04:38:36 +00:00
|
|
|
char __secure_stack_start[0] __attribute__((section(".__secure_stack_start")));
|
|
|
|
char __secure_stack_end[0] __attribute__((section(".__secure_stack_end")));
|
2016-03-04 00:10:01 +00:00
|
|
|
char __efi_runtime_start[0] __attribute__((section(".__efi_runtime_start")));
|
|
|
|
char __efi_runtime_stop[0] __attribute__((section(".__efi_runtime_stop")));
|
|
|
|
char __efi_runtime_rel_start[0] __attribute__((section(".__efi_runtime_rel_start")));
|
|
|
|
char __efi_runtime_rel_stop[0] __attribute__((section(".__efi_runtime_rel_stop")));
|
2014-02-22 16:53:42 +00:00
|
|
|
char _end[0] __attribute__((section(".__end")));
|