Re: rc.d - no support for python scripts

2020-08-17 Thread Leonardo Taccari
Thomas Klausner writes: > Hi! > Hello Thomas, > I wanted to run a python service using an rc.d script. It knows to write a > pid file, but that is not good enough for our rc.d system. It complains: > > # /etc/rc.d/syncserver stop >

Re: NetBSD 9 on ThinkPad X220

2020-05-26 Thread Leonardo Taccari
nia writes: > On Mon, May 25, 2020 at 09:35:00PM +0300, Jukka Ruohonen wrote: > > * X (modular) segfaults from the beginning (GENERIC_ALSR) for intel(4), but > > works fine when "UXA" is set for "AccelMethod" in xorg.conf(5). > > Yeah, we really shouldn't be using xf86-video-intel. > It's been

Re: Panic: vrelel: bad ref count (9.99.54)

2020-05-04 Thread Leonardo Taccari
Hello Yorick and Andrew, Yorick Hardy writes: > > > > [...] > > > > > > > > Crash version 9.99.55, image version 9.99.55. > > > > crash: _kvm_kvatop(0) > > > > Kernel compiled without options LOCKDEBUG. > > > > System panicked: vrelel: bad ref count > > > > Backtrace from time of crash

Re: Current wisdom on printing from Firefox

2019-12-29 Thread Leonardo Taccari
Hello Chavdar, Chavdar Ivanov writes: > [...] > I haven't had the particular need to print from firefox on NetBSD > recently; after reading this I tried... > > The moment I hit the 'Print' menu item to get the dialog, my firefox > process goes in an endless loop, becoming completely

Unkillable process got stuck in uao_put()

2019-04-27 Thread Leonardo Taccari
Hello folks, on NetBSD/amd64 -current (2019-04-27 11:40 UTC) when trying to grep source code via ag (part of textproc/the_silver_searcher) on a tmpfs the ag process get stuck in uao_put() and become unkillable. I can easily reproduce^[0] that using libvirt-5.2.0 distfile^[1], extracting them on a

Re: Failure to build "current" emacs from pkgsrc on current

2018-10-27 Thread Leonardo Taccari
Hello Greg, Andreas and Riccardo, Leonardo Taccari writes: > [...] > I have just added it to buildlink3.mk, please let me know if that > fixes the problem you have reported! (just a `make replace' in > emacs or any other problematic package should be enough to test > that)

Re: Failure to build "current" emacs from pkgsrc on current

2018-10-27 Thread Leonardo Taccari
Hello Andreas, Greg and Riccardo, Andreas Gustafsson writes: > Greg, Riccardo, > > Please disregard the parts of my earlier mail that pertained to > tests run under NetBSD-current. I had missed the fact that > ftp://ftp.NetBSD.org/pub/pkgsrc/current/pkgsrc.tar.gz is only > regenerated weekly,

Re: What's with pkgsrc and checksums?

2017-12-22 Thread Leonardo Taccari
Hello Tom, Tom Ivar Helbekkmo writes: > Ah, "make distinfo" in the relevant pkgsrc directory. That works; it > makes /usr/pkgsrc/mk/checksum/checksum claim that the checksum is wrong > (and it also disagrees with the checksum algorithm the distfile claims > has been used), but the actual "make

Re: 80x25 text mode console

2017-12-06 Thread Leonardo Taccari
Hello Stephen, "Stephen M. Jones" writes: > Is it possible to configure wscons (/dev/console) to 80x25 on a PC without > modifying the kernel? > > I've tried a few options in wscons.conf as well as in boot.cfg but don't seem > to be able to change the mode. Have you tried to add to /boot.cfg the

Some pkgsrc/mk/pax.mk suggestions (was: Re: PaX mprotect now on for amd64)

2016-07-05 Thread Leonardo Taccari
Hello Pierre and tech-pkg@! (moving the discussion to tech-pkg@ where is more appropriate) Pierre Pronchery writes: > I wrote this mini-framework for paxctl(8) in pkgsrc: > > http://git.edgebsd.org/gitweb/?p=edgebsd-pkgsrc.git;a=commitdiff;h=f1354300f9d734202bd0ce49b33d74f455aea9e1 > > and

Re: new arp and squid

2016-04-26 Thread Leonardo Taccari
Hello Patrick! Patrick Welche writes: > In the new arp world: > > Noticeable changes are: > - Several definitions of routing flags and messages are removed > - RTF_CLONING, RTF_XRESOLVE, RTF_LLINFO, RTF_CLONED and RTM_RESOLVE > > In Squid 3's src/eui/Eui48.cc: > > // return binary

Re: Erroneous comment in GENERIC config file(s)?

2015-12-20 Thread Leonardo Taccari
Hello Paul, Paul Goyette writes: > From the amd64 (and most other) GENERIC config, we have > > ... > # For further information on compiling NetBSD kernels, see the config(8) > # man page. > ... > > But there is no config(8) man page, only config(1)! Maybe it really meant config(5)? Ciao, L.

Re: in-system dtrace ".d" failure

2015-10-27 Thread Leonardo Taccari
Hello bch, bch writes: > > "/usr/lib/dtrace/psinfo.d", line 46: syntax error near "u_int" > > I'm trying to build a userland app w/ dtrace support, and a dtrace > compilation is failing w/ the above error... Is anybody having success > instrumenting userland code w/ dtrace ? I saw this[0], and

alc(4): add support for 816x devices (and request for review)

2015-01-16 Thread Leonardo Taccari
Hello tech-net@, current-users@ and Jared[0], my new laptop has an Atheros AR8171 PCIe Gigabit Ethernet card that ATM is not supported in NetBSD. Some months ago alc(4) driver in FreeBSD was modified in order to support the 816x devices too. I have tried to port the changes from FreeBSD to NetBSD

Re: alc(4): add support for 816x devices (and request for review)

2015-01-16 Thread Leonardo Taccari
Hello Christos, Christos Zoulas writes: Or we can just define IFM_UNKNOWN and use it. Done. I have added it to if_alcreg.h. According to net/if_media.h that the max subtype can be 31. I have chosen this value (that does not conflict with the ones defined in net/if_media.h... If someday there

Re: alc(4): add support for 816x devices (and request for review)

2015-01-14 Thread Leonardo Taccari
Hello Christos and the entire NetBSD community, Christos Zoulas writes: Looks pretty good, perhaps this: - if (phy != sc-alc_phyaddr) - return; - is causing your multiple phy issue? Great catch! I can confirm that adding it to alc_mii_readreg_816x() function (just