mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
m68k: Add missing ENTRY entry in linker script
Currently, there is no ENTRY() entry in the m68k linker script. However, since they currently contain a version_string symbol, which then overrides the default weak version_string symbol, the linker decides we must keep start.o in the resulting link. Add an ENTRY() line so that the linker will know to keep this, even when version_string is no longer provided in start.S Cc: Huan Wang <alison.wang@nxp.com> Cc: Angelo Dureghello <angelo@sysam.it> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
2e09008c3c
commit
6252fd05a2
1 changed files with 1 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <config.h>
|
||||
|
||||
OUTPUT_ARCH(m68k)
|
||||
ENTRY(_start)
|
||||
|
||||
#ifndef LDS_BOARD_TEXT
|
||||
#define LDS_BOARD_TEXT
|
||||
|
|
Loading…
Reference in a new issue