summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/sections.c
blob: 66d559f94a7d2fae0e50fc8f094b08f313e4bca5 (plain)
1
2
3
4
5
6
7
8
9
#include <common.h>
#include <asm/sections.h>
#include <linux/types.h>

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")));