Re: em0 link fail

2018-07-31 Thread R. Tyler Croy
(replies inline)

On Wed, 25 Jul 2018, R. Tyler Croy wrote:

> (replies inline)
> 
> On Sun, 15 Jul 2018, Michael Butler wrote:
> 
> > On 07/05/18 09:54, I wrote:
> > > On 07/05/18 09:27, tech-lists wrote:
> > >> On 03/07/2018 19:47, Michael Butler wrote:
> > >>> That would've been ..
> > >>>
> > >>> JunĀ  1 09:56:15 toshi kernel: FreeBSD 12.0-CURRENT #35 r334484: Fri Jun
> > >>> 1 08:25:58 EDT 2018
> > >>>
> > >>> I'm going to build one with SVN r334862 reverted to see if that works,
> > >>
> > >> Hi,
> > >>
> > >> Is it working now? Am asking because a system I'd like to take from
> > >> 11-stable to 12 uses the em driver.
> > > 
> > > No :-( I haven't had the chance yet to revisit it,
> > 
> > As it turns out, SVN r336313 (committed today) solves the issue I was
> > having with the hardware stalling,
> 
> 
> 
> I'll give r336313 a try as soon as possible and corroborate the fixes!



After a couple days with this new build, it looks like i can corroborate the
fix referenced by Michael. :D





signature.asc
Description: PGP signature


Can't upgrade past 10.4-STABLE (interrupt storm?)

2018-07-31 Thread Chris H

Hello,
I've got an older laptop that I attempted to install 12 on w/o success.
Well, it installed. But was unusable. Typing anything at the console
frequently doesn't output on the screen w/o tapping one of the arrow
keys. But doing that causes other problems. As I can't really use the
output. :(
I suspected an interrupt storm of some type. But really can't say for
sure. a vmstat -i seems to show unusually high numbers for irq1: atkbd0
often ~1/3rd the number for CPU0. I can easily realize all this during
the install process from the install media. So it's easy to test.
This is a i386 based Pentium M. FreeBSD 10.4-STABLE runs like a dream.
But I'm going to need to move forward at some point, and I'd like that
some point to be now. :)
Any thoughts on how I might discover /what/ change was made from
10.4-->11* to cause this?
It has a trackpad. Should that make any difference.

Thanks!

--Chris


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


Re: how to make ports not install xorg or dependencies

2018-07-31 Thread Miroslav Lachman

tech-lists wrote on 2018/07/31 12:41:

There used to be a way to enforce this no-xorg in make.conf but looking 
at /usr/share/examples/etc/make.conf I can find no reference to X Xorg 
x11 or xorg. I presume there's a new method. If there is, can anyone 
please tell me how?



We are using OPTIONS_UNSET= X11 GUI CUPS DOCS EXAMPLES NLS for all of 
our packages (built with poudriere)
As Guido Falsi already said it is not guaranteed that you will not have 
ports with some X libs, because some ports does not have option to 
disable X11 dependencies.


Miroslav Lachman
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: how to make ports not install xorg or dependencies

2018-07-31 Thread Guido Falsi
On 7/31/18 12:49 PM, Guido Falsi wrote:
> On 7/31/18 12:41 PM, tech-lists wrote:
>> Hello,
>>
>> context: freebsd-12 r336215 arm64
>>
>> I don't want xorg or X11 or any of its components installed on this
>> system. I install ports in the traditional way, in other words cd port
>> && make config && make install. Any ports that in a generic config want
>> to install xorg libs, I want the no-x11 variant.
>>
>> There used to be a way to enforce this no-xorg in make.conf but looking
>> at /usr/share/examples/etc/make.conf I can find no reference to X Xorg
>> x11 or xorg. I presume there's a new method. If there is, can anyone
>> please tell me how?
> 
> You can add OPTIONS_UNSET+=X11 in make.conf.
> 
> ports having an X11 option will have that disabled by default.
> 
> There is no warranty no port will have X11 dependencies anyway, it's not
> mandatory to respect that knob.
> 

I was too hasty in hitting send. There are other options which influence
X11 dependencies.

I usually also disable XPM and CUPS at least. It also depends on which
ports you are installing.

-- 
Guido Falsi 
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: how to make ports not install xorg or dependencies

2018-07-31 Thread Guido Falsi
On 7/31/18 12:41 PM, tech-lists wrote:
> Hello,
> 
> context: freebsd-12 r336215 arm64
> 
> I don't want xorg or X11 or any of its components installed on this
> system. I install ports in the traditional way, in other words cd port
> && make config && make install. Any ports that in a generic config want
> to install xorg libs, I want the no-x11 variant.
> 
> There used to be a way to enforce this no-xorg in make.conf but looking
> at /usr/share/examples/etc/make.conf I can find no reference to X Xorg
> x11 or xorg. I presume there's a new method. If there is, can anyone
> please tell me how?

You can add OPTIONS_UNSET+=X11 in make.conf.

ports having an X11 option will have that disabled by default.

There is no warranty no port will have X11 dependencies anyway, it's not
mandatory to respect that knob.

-- 
Guido Falsi 
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


how to make ports not install xorg or dependencies

2018-07-31 Thread tech-lists

Hello,

context: freebsd-12 r336215 arm64

I don't want xorg or X11 or any of its components installed on this 
system. I install ports in the traditional way, in other words cd port 
&& make config && make install. Any ports that in a generic config want 
to install xorg libs, I want the no-x11 variant.


There used to be a way to enforce this no-xorg in make.conf but looking 
at /usr/share/examples/etc/make.conf I can find no reference to X Xorg 
x11 or xorg. I presume there's a new method. If there is, can anyone 
please tell me how?


thanks,
--
J.
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: svn commit: r336940 - in head/sys: netinet netinet6 [This broke ci.freebsd.org 's FreeBSD-head-mips*-build 's]

2018-07-31 Thread Michael Tuexen
> On 31. Jul 2018, at 03:44, Mark Millard  wrote:
> 
> https://ci.freebsd.org/job/FreeBSD-head-mips-build/3577/consoleText shows:
> 
> --- tcp_usrreq.o ---
> cc1: warnings being treated as errors
> /usr/src/sys/netinet/tcp_usrreq.c: In function 'tcp_usr_send':
> /usr/src/sys/netinet/tcp_usrreq.c:905: warning: unused variable 'sin' 
> [-Wunused-variable]
> . . .
> --- tcp_usrreq.o ---
> *** [tcp_usrreq.o] Error code 1
> 
> make[2]: stopped in /usr/obj/usr/src/mips.mips/sys/MALTA
> 1 error
> 
> (Note: -r366935 built correctly as #3576 .)
> 
> 
> 
> https://ci.freebsd.org/job/FreeBSD-head-mips64-build/3624/consoleText shows:
> 
> --- tcp_usrreq.o ---
> cc1: warnings being treated as errors
> /usr/src/sys/netinet/tcp_usrreq.c: In function 'tcp_usr_send':
> /usr/src/sys/netinet/tcp_usrreq.c:905: warning: unused variable 'sin' 
> [-Wunused-variable]
> *** [tcp_usrreq.o] Error code 1
> 
> make[2]: stopped in /usr/obj/usr/src/mips.mips64/sys/MALTA64
> 
> (Note: -r366935 built correctly as #3623 .)
Fixed in https://svnweb.freebsd.org/changeset/base/336962

Thanks for the report and sorry for the breakage.

Best regards
Michael
> 
> 
> 
> 
> ===
> Mark Millard
> marklmi at yahoo.com
> ( dsl-only.net went
> away in early 2018-Mar)
> 

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