summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/sections.c
blob: a53236d90016a60f8658013104d532a4942bf0cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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")));