sparc/*/linkcmds*: Move ENTRY() from linkcmds.base to top linkcmds

This was at the request of a user to make it easier to have a
custom entry point. This way they just provide their own top
level linkcmds and include linkcmds.base.

Updates #3520.
This commit is contained in:
Joel Sherrill
2018-01-30 17:25:20 -06:00
parent 3454179dee
commit ea7f4a0ca1
9 changed files with 16 additions and 1 deletions

View File

@@ -24,4 +24,6 @@ MEMORY
ram : ORIGIN = 0x02000000, LENGTH = 32M ram : ORIGIN = 0x02000000, LENGTH = 32M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -24,4 +24,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -24,4 +24,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -17,4 +17,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -16,4 +16,6 @@ MEMORY
_PROM_START = ORIGIN (rom); _PROM_START = ORIGIN (rom);
_RAM_START = ORIGIN (ram); _RAM_START = ORIGIN (ram);
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -17,4 +17,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -17,4 +17,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -17,4 +17,6 @@ MEMORY
ram : ORIGIN = 0x40000000, LENGTH = 1024M ram : ORIGIN = 0x40000000, LENGTH = 1024M
} }
ENTRY(start)
INCLUDE linkcmds.base INCLUDE linkcmds.base

View File

@@ -3,7 +3,6 @@
OUTPUT_ARCH(sparc) OUTPUT_ARCH(sparc)
__DYNAMIC = 0; __DYNAMIC = 0;
ENTRY(start)
/* /*
* The memory map looks like this: * The memory map looks like this: