summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/sections.c
blob: ab08ebf42e0a53717d9b6c522b09857d387ecc36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <asm/sections.h>
#include <linux/types.h>

char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start")));
char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end")));
char __dynsym_start[0] __attribute__((section(".__dynsym_start")));
char __dynsym_end[0] __attribute__((section(".__dynsym_end")));
char _text[0] __attribute__((section("._text")));
char __bss_start[0] __attribute__((section(".__bss_start")));
char __bss_stop[0] __attribute__((section(".__bss_stop")));
char __image_start[0] __attribute__((section(".__image_start")));
char __image_end[0] __attribute__((section(".__image_end")));
uint32_t __image_end_marker[1] __attribute__((section(".__image_end_marker"))) = { 0xdeadbeef };