Re: vmd(8) i8042 device implementation questions

2019-05-29 Thread Katherine Rohl
Okay, here’s the first pass of my 8042 device - I wasn’t able to figure out how to tie the reset line to the guest VM reset, so I was hoping someone could give me a hand with that. Other than that, it attaches to i386 and amd64 OpenBSD guests. There’s no input yet as I mentioned, but the 8042

Re: [Patch] Driver for Keyspan USA-19HS

2019-05-29 Thread Cody Cutler
Thank you for your comments, Joshua. I'll send an updated patch shortly. j...@openbsd.org (joshua stein) - Tue, May 28, 2019 at 07:51:08PM -0500 > Hi, > > Some feedback inline: > > On Tue, 28 May 2019 at 18:42:51 -0400, Cody Cutler wrote: > > Hello tech, I'm submitting the following patch for

Re: [Patch] Driver for Keyspan USA-19HS

2019-05-29 Thread Tracey Emery
> > The routine for adding USB devices is to just add them to > /usr/src/sys/dev/usb/usbdevs, then run 'make' in > /usr/src/sys/dev/usb/. That will automatically regenerate usbdevs.h > and usbdevs_data.h. I'm happy to test when the new diff is submitted. I have a USA19HS sitting in my desk.

Re: smtpd.conf(5) small wording patch

2019-05-29 Thread Theo de Raadt
Sorry, this reads correctly as it is. Eddie Thieda wrote: > --- smtpd.conf.5.orig Wed May 29 13:25:37 2019 > +++ smtpd.conf.5 Wed May 29 13:25:54 2019 > @@ -33,7 +33,7 @@ each > .Dq RCPT TO: > command generates a mail envelope. > If an envelope matches > -any of a pre-designated set of

smtpd.conf(5) small wording patch

2019-05-29 Thread Eddie Thieda
--- smtpd.conf.5.orig Wed May 29 13:25:37 2019 +++ smtpd.conf.5 Wed May 29 13:25:54 2019 @@ -33,7 +33,7 @@ each .Dq RCPT TO: command generates a mail envelope. If an envelope matches -any of a pre-designated set of criteria +any pre-designated set of criteria (using the .Ic match directive),

Re: bgpd set nexthop 198.51.100.42 clarifications

2019-05-29 Thread Claudio Jeker
On Tue, May 28, 2019 at 07:09:00PM +0200, Job Snijders wrote: > On Tue, May 28, 2019 at 05:17:08PM +0200, Claudio Jeker wrote: > > On Tue, May 28, 2019 at 01:28:32PM +0200, Job Snijders wrote: > > > On Mon, May 13, 2019 at 09:03:41PM +0200, Claudio Jeker wrote: > > > > When using a rule forcing

Re: Mount point just for W|X packages?

2019-05-29 Thread Theo de Raadt
Stuart Henderson wrote: > On 2019/05/28 17:48, ops...@firemail.cc wrote: > > So, following the new advancements in W^X from Theo, I was thinking about > > this idea: ports maintainers cannot make every single package be W^X, this > > is obvious. > > But they could test each package without

Re: Mount point just for W|X packages?

2019-05-29 Thread Stuart Henderson
On 2019/05/28 17:48, ops...@firemail.cc wrote: > So, following the new advancements in W^X from Theo, I was thinking about > this idea: ports maintainers cannot make every single package be W^X, this > is obvious. > But they could test each package without wxallowed and, if it is not > working,

Re: bgpd "export default-route" [Re: CVS: cvs.openbsd.org: src]

2019-05-29 Thread Stuart Henderson
Thanks for a couple of offlist replies .. I had a partial src checkout and "make install" was installing the new binaries to / rather than /usr/sbin. I thought I had accounted for that and copied them into place but I guess with the late hour I must have missed something, as I've done a full src

Mount point just for W|X packages?

2019-05-29 Thread opskey
So, following the new advancements in W^X from Theo, I was thinking about this idea: ports maintainers cannot make every single package be W^X, this is obvious. But they could test each package without wxallowed and, if it is not working, make the package go to other specified filesystem with

Re: vmd(8) i8042 device implementation questions

2019-05-29 Thread Katherine Rohl
I did a little more looking and the only practical use is $F0 to pulse the reset line rather than setting it directly (and thus locking up the system forever). I’ll treat it as a reset. $F1 would pulse Gate A20 (which is a useless operation in a PC) and $F2 and $F3 pulse reserved bits. > On

Re: [patch] use acme-client to sign certificated with ecdsa keys

2019-05-29 Thread Renaud Allard
On 5/29/19 9:58 AM, Florian Obser wrote: On Wed, May 22, 2019 at 01:33:11PM +0200, Renaud Allard wrote: Hello, First, sorry for double posting to misc@. This is a short patch to let acme-client accept ECDSA keys now that letsencrypt accepts signing certificates with those keys. This

Re: vmd(8) i8042 device implementation questions

2019-05-29 Thread Mike Larkin
On Tue, May 28, 2019 at 09:57:02PM -0500, Katherine Rohl wrote: > I have my i8042 device for vmd(8) mostly implemented. It’s only missing a few > commands, but since there are no PS/2 input devices yet, there isn’t very > much in the way of testing I can do beyond ensuring that commands act as

Re: [patch] use acme-client to sign certificated with ecdsa keys

2019-05-29 Thread Florian Obser
On Wed, May 22, 2019 at 01:33:11PM +0200, Renaud Allard wrote: > Hello, > > First, sorry for double posting to misc@. > > This is a short patch to let acme-client accept ECDSA keys now that > letsencrypt accepts signing certificates with those keys. This functionality > is present in certbot, so