diff options
author | angelo@sysam.it <angelo@sysam.it> | 2015-03-29 22:54:16 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-04-23 14:56:07 -0400 |
commit | 5296cb1d99c1dc52fbfb4f88595c69f097630be8 (patch) | |
tree | 9f3c9462822b604132d65c084031069eff9c9920 /include/configs/cobra5272.h | |
parent | ecd8557937a896dd1049f67806482bfb6edf140b (diff) | |
download | u-boot-5296cb1d99c1dc52fbfb4f88595c69f097630be8.tar.gz |
m68k: add architecture-specific u-boot.lds
Add architecture-specific u-boot.lds and remove all board-specific
u-boot.lds.
All the .text customization that was board-specific have been
moved inside the related include/configs, inside a
LDS_BOARD_TEXT define.
Signed-off-by: Angelo Dureghello <angelo@sysam.it>
Diffstat (limited to 'include/configs/cobra5272.h')
-rw-r--r-- | include/configs/cobra5272.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/cobra5272.h b/include/configs/cobra5272.h index b9f0b0b123..38fcc40d9f 100644 --- a/include/configs/cobra5272.h +++ b/include/configs/cobra5272.h @@ -104,6 +104,9 @@ #define CONFIG_ENV_IS_IN_FLASH 1 #endif +#define LDS_BOARD_TEXT \ + . = DEFINED(env_offset) ? env_offset : .; \ + common/env_embedded.o (.text); /* * BOOTP options |