Newer
Older
barebox / include / asm-generic / u-boot.lds.h
@Sascha Hauer Sascha Hauer on 3 Dec 2009 480 bytes i.MX flash header: make it work on i.MX35

#if defined CONFIG_ARCH_IMX25 || defined CONFIG_ARCH_IMX35
#include <mach/u-boot.lds.h>
#endif

#ifndef PRE_IMAGE
#define PRE_IMAGE
#endif

#define INITCALLS			\
  	KEEP(*(.initcall.0))			\
  	KEEP(*(.initcall.1))			\
  	KEEP(*(.initcall.2))			\
  	KEEP(*(.initcall.3))			\
  	KEEP(*(.initcall.4))			\
  	KEEP(*(.initcall.5))			\
  	KEEP(*(.initcall.6))			\
  	KEEP(*(.initcall.7))

#define U_BOOT_CMDS	KEEP(*(SORT_BY_NAME(.u_boot_cmd*)))

#define U_BOOT_SYMS	KEEP(*(__usymtab))