mirror of https://gitee.com/openkylin/linux.git
19 lines
595 B
C
19 lines
595 B
C
#ifndef _BLACKFIN_SECTIONS_H
|
|
#define _BLACKFIN_SECTIONS_H
|
|
|
|
/* nothing to see, move along */
|
|
#include <asm-generic/sections.h>
|
|
|
|
/* only used when MTD_UCLINUX */
|
|
extern unsigned long memory_mtd_start, memory_mtd_end, mtd_size;
|
|
|
|
extern unsigned long _ramstart, _ramend, _rambase;
|
|
extern unsigned long memory_start, memory_end, physical_mem_end;
|
|
|
|
extern char _stext_l1[], _etext_l1[], _sdata_l1[], _edata_l1[], _sbss_l1[],
|
|
_ebss_l1[], _l1_lma_start[], _sdata_b_l1[], _sbss_b_l1[], _ebss_b_l1[],
|
|
_stext_l2[], _etext_l2[], _sdata_l2[], _edata_l2[], _sbss_l2[],
|
|
_ebss_l2[], _l2_lma_start[];
|
|
|
|
#endif
|