svn commit: r186190 - head/sys/mips/mips

Warner Losh imp at FreeBSD.org
Tue Dec 16 20:04:03 UTC 2008


Author: imp
Date: Tue Dec 16 20:04:02 2008
New Revision: 186190
URL: http://svn.freebsd.org/changeset/base/186190

Log:
  Mips never had /usr/libexec/ld-elf.so.1, so remove it.  We don't have
  any binaries that need it.  This was moved before FreeBSD 5.x.

Modified:
  head/sys/mips/mips/elf_machdep.c

Modified: head/sys/mips/mips/elf_machdep.c
==============================================================================
--- head/sys/mips/mips/elf_machdep.c	Tue Dec 16 19:15:31 2008	(r186189)
+++ head/sys/mips/mips/elf_machdep.c	Tue Dec 16 20:04:02 2008	(r186190)
@@ -93,22 +93,6 @@ SYSINIT(elf32, SI_SUB_EXEC, SI_ORDER_ANY
     (sysinit_cfunc_t) elf32_insert_brand_entry,
     &freebsd_brand_info);
 
-static Elf32_Brandinfo freebsd_brand_oinfo = {
-	.brand		= ELFOSABI_FREEBSD,
-	.machine	= EM_MIPS,
-	.compat_3_brand	= "FreeBSD",
-	.emul_path	= NULL,
-	.interp_path	= "/usr/libexec/ld-elf.so.1",
-	.sysvec		= &elf32_freebsd_sysvec,
-	.interp_newpath	= NULL,
-	.flags		= 0
-};
-
-SYSINIT(oelf32, SI_SUB_EXEC, SI_ORDER_ANY,
-	(sysinit_cfunc_t) elf32_insert_brand_entry,
-	&freebsd_brand_oinfo);
-
-
 void
 elf32_dump_thread(struct thread *td __unused, void *dst __unused,
     size_t *off __unused)


More information about the svn-src-head mailing list