Re: svn commit: r332434 - head/sys/conf

2018-04-12 Thread Ruslan Bukin
On Thu, Apr 12, 2018 at 06:41:37PM +0100, Ruslan Bukin wrote:
> On Thu, Apr 12, 2018 at 09:48:10AM -0700, John Baldwin wrote:
> > On Thursday, April 12, 2018 03:12:40 PM Ruslan Bukin wrote:
> > > Author: br
> > > Date: Thu Apr 12 15:12:40 2018
> > > New Revision: 332434
> > > URL: https://svnweb.freebsd.org/changeset/base/332434
> > > 
> > > Log:
> > >   Add ld emulation types for hard-float mipses.
> > >   
> > >   Sponsored by:   DARPA, AFRL
> > 
> > We actually shouldn't need hf kernels anymore.  HAVE_FPU has been removed
> > and any mips kernel works fine with either hard or soft float userlands.
> > 
> 
> Ok I will work on removing hf targets. This should be kept I think until we 
> remove them.
> 

Oh sorry this is for kernels only. Ok I will revert this then.

Ruslan
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r332434 - head/sys/conf

2018-04-12 Thread Ruslan Bukin
On Thu, Apr 12, 2018 at 09:48:10AM -0700, John Baldwin wrote:
> On Thursday, April 12, 2018 03:12:40 PM Ruslan Bukin wrote:
> > Author: br
> > Date: Thu Apr 12 15:12:40 2018
> > New Revision: 332434
> > URL: https://svnweb.freebsd.org/changeset/base/332434
> > 
> > Log:
> >   Add ld emulation types for hard-float mipses.
> >   
> >   Sponsored by: DARPA, AFRL
> 
> We actually shouldn't need hf kernels anymore.  HAVE_FPU has been removed
> and any mips kernel works fine with either hard or soft float userlands.
> 

Ok I will work on removing hf targets. This should be kept I think until we 
remove them.

Thanks

Ruslan
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r332434 - head/sys/conf

2018-04-12 Thread John Baldwin
On Thursday, April 12, 2018 03:12:40 PM Ruslan Bukin wrote:
> Author: br
> Date: Thu Apr 12 15:12:40 2018
> New Revision: 332434
> URL: https://svnweb.freebsd.org/changeset/base/332434
> 
> Log:
>   Add ld emulation types for hard-float mipses.
>   
>   Sponsored by:   DARPA, AFRL

We actually shouldn't need hf kernels anymore.  HAVE_FPU has been removed
and any mips kernel works fine with either hard or soft float userlands.

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r332434 - head/sys/conf

2018-04-12 Thread Ruslan Bukin
Author: br
Date: Thu Apr 12 15:12:40 2018
New Revision: 332434
URL: https://svnweb.freebsd.org/changeset/base/332434

Log:
  Add ld emulation types for hard-float mipses.
  
  Sponsored by: DARPA, AFRL

Modified:
  head/sys/conf/kern.mk

Modified: head/sys/conf/kern.mk
==
--- head/sys/conf/kern.mk   Thu Apr 12 14:57:48 2018(r332433)
+++ head/sys/conf/kern.mk   Thu Apr 12 15:12:40 2018(r332434)
@@ -276,9 +276,13 @@ LD_EMULATION_armv6=armelf_fbsd
 LD_EMULATION_armv7=armelf_fbsd
 LD_EMULATION_i386=elf_i386_fbsd
 LD_EMULATION_mips= elf32btsmip_fbsd
+LD_EMULATION_mipshf= elf32btsmip_fbsd
 LD_EMULATION_mips64= elf64btsmip_fbsd
+LD_EMULATION_mips64hf= elf64btsmip_fbsd
 LD_EMULATION_mipsel= elf32ltsmip_fbsd
+LD_EMULATION_mipselhf= elf32ltsmip_fbsd
 LD_EMULATION_mips64el= elf64ltsmip_fbsd
+LD_EMULATION_mips64elhf= elf64ltsmip_fbsd
 LD_EMULATION_mipsn32= elf32btsmipn32_fbsd
 LD_EMULATION_mipsn32el= elf32btsmipn32_fbsd   # I don't think this is a thing 
that works
 LD_EMULATION_powerpc= elf32ppc_fbsd
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"