diff options
author | peter <peter@FreeBSD.org> | 2000-01-11 15:35:16 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-01-11 15:35:16 +0000 |
commit | f9553029644c999af019267d6ce868430942e32e (patch) | |
tree | c026b466076319654f784b64ac2bed65863267df /sys/conf/ldscript.powerpc | |
parent | 63e5e0617e042c8ac920514523c538a137fad92f (diff) | |
download | FreeBSD-src-f9553029644c999af019267d6ce868430942e32e.zip FreeBSD-src-f9553029644c999af019267d6ce868430942e32e.tar.gz |
Add $FreeBSD$
Make the alpha linker script more like the i386 version - delete the
/usr/local and egcs directories
Diffstat (limited to 'sys/conf/ldscript.powerpc')
-rw-r--r-- | sys/conf/ldscript.powerpc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/ldscript.powerpc b/sys/conf/ldscript.powerpc index 1bcfd90..a0e0547 100644 --- a/sys/conf/ldscript.powerpc +++ b/sys/conf/ldscript.powerpc @@ -1,9 +1,9 @@ -OUTPUT_FORMAT("elf64-alpha", "elf64-alpha", - "elf64-alpha") +/* $FreeBSD$ */ +OUTPUT_FORMAT("elf64-alpha", "elf64-alpha", "elf64-alpha") OUTPUT_ARCH(alpha) ENTRY(__start) -SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/egcs/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/egcs/alphaev5-unknown-linux-gnu/lib); - kernel_text = 0xfffffc0000300000; +SEARCH_DIR(/usr/lib); +kernel_text = 0xfffffc0000300000; SECTIONS { /* Read-only sections, merged into text segment: */ |