mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
In fact, we don't need any of these __DYNAMIC. it is a.out leftover and commented out.
This commit is contained in:
parent
e35d9de240
commit
6ba63f2d8c
4 changed files with 0 additions and 8 deletions
|
|
@ -1,8 +1,6 @@
|
|||
/* $FreeBSD$ */
|
||||
|
||||
ENTRY(_start)
|
||||
__DYNAMIC = 0;
|
||||
PROVIDE (_DYNAMIC = 0);
|
||||
|
||||
PHDRS {
|
||||
text PT_LOAD FLAGS(0x7);
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", "elf32-powerpc")
|
|||
OUTPUT_ARCH(powerpc)
|
||||
ENTRY(__start)
|
||||
SEARCH_DIR(/usr/lib);
|
||||
/* Do we need any of these for elf?
|
||||
__DYNAMIC = 0; */
|
||||
PROVIDE (__stack = 0);
|
||||
SECTIONS
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf64-powerpc", "elf64-powerpc", "elf64-powerpc")
|
|||
OUTPUT_ARCH(powerpc)
|
||||
ENTRY(__start)
|
||||
SEARCH_DIR(/usr/lib);
|
||||
/* Do we need any of these for elf?
|
||||
__DYNAMIC = 0; */
|
||||
PROVIDE (__stack = 0);
|
||||
SECTIONS
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf64-sparc", "elf64-sparc",
|
|||
OUTPUT_ARCH(sparc:v9)
|
||||
ENTRY(_start)
|
||||
SEARCH_DIR(/usr/lib);
|
||||
/* Do we need any of these for elf?
|
||||
__DYNAMIC = 0; */
|
||||
SECTIONS
|
||||
{
|
||||
/* Read-only sections, merged into text segment: */
|
||||
|
|
|
|||
Loading…
Reference in a new issue