Backport Comet Lake support for Mesa

2019-08-22 Thread Jonathan Gray
Backport Comet Lake support for Mesa. commit 82f6a746e8b47fb6e3f96d7f5f69973f50eec9ca Author: Anuj Phogat Date: Fri Mar 29 13:13:01 2019 -0700 intel: Add support for Comet Lake Signed-off-by: Anuj Phogat Reviewed-by: Jordan Justen Index: include/pci_ids/i965_pci_ids.h

Backport Comet Lake support for inteldrm from mainline linux

2019-08-22 Thread Jonathan Gray
Backport Comet Lake support for inteldrm from mainline linux. commit a7b4deeb02b978bc59808cb13c93ba84f01023a4 Author: Anusha Srivatsa Date: Mon Mar 18 13:01:32 2019 -0700 drm/i915/cml: Add CML PCI IDS Comet Lake is a Intel Processor containing Gen9 Intel HD Graphics. This

typo in man page of sysupgrade option -s

2019-08-22 Thread Rashad Kanavath
update description of -s option in sysupgrade man page. Index: usr.sbin/sysupgrade/sysupgrade.8 === RCS file: /cvs/src/usr.sbin/sysupgrade/sysupgrade.8,v retrieving revision 1.8 diff -u -p -u -p -r1.8 sysupgrade.8 ---

install.sub: do not run start_dmesg_listener() in unattended upgrades

2019-08-22 Thread Klemens Nanni
Practically a NOP but we currently still enter the function, remove an nonexistent lock file that is never going to be used outside of interactive mode and then return early. Doing it this way also brings it in line with the sysupgrade watchdog doing `$UU && start_watchog()`. OK? Index:

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Andreas Kusalananda Kähäri
On Thu, Aug 22, 2019 at 12:37:28PM +0200, Klemens Nanni wrote: > We support -delete since the following and I see no reason to prefer the > current examples for the very same reasons tedu already outlined: > > find.c revision 1.21 > date: 2017/01/03 21:31:16; author: tedu; state:

find.1: Use -delete in EXAMPLES

2019-08-22 Thread Klemens Nanni
We support -delete since the following and I see no reason to prefer the current examples for the very same reasons tedu already outlined: find.c revision 1.21 date: 2017/01/03 21:31:16; author: tedu; state: Exp; lines: +10 -4; add -delete option which can simplify the

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Theo Buehler
On Thu, Aug 22, 2019 at 12:37:28PM +0200, Klemens Nanni wrote: > We support -delete since the following and I see no reason to prefer the > current examples for the very same reasons tedu already outlined: > > find.c revision 1.21 > date: 2017/01/03 21:31:16; author: tedu; state:

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Claudio Jeker
On Thu, Aug 22, 2019 at 12:37:28PM +0200, Klemens Nanni wrote: > We support -delete since the following and I see no reason to prefer the > current examples for the very same reasons tedu already outlined: > > find.c revision 1.21 > date: 2017/01/03 21:31:16; author: tedu; state:

Re: install.sub: do not run start_dmesg_listener() in unattended upgrades

2019-08-22 Thread Klemens Nanni
On Thu, Aug 22, 2019 at 12:19:27PM +0200, Klemens Nanni wrote: > # Start listener process looking for dmesg changes. > -start_dmesg_listener > +$AI && start_dmesg_listener Oh my! Diff with correct boolean logic below (using `||' not `&&'). Index: install.sub

synch make doc/defines with reality

2019-08-22 Thread Marc Espie
This happened a long time ago... okay ? Index: make.1 === RCS file: /cvs/src/usr.bin/make/make.1,v retrieving revision 1.128 diff -u -p -r1.128 make.1 --- make.1 31 Jan 2019 10:27:28 - 1.128 +++ make.1 22 Aug 2019

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Todd C . Miller
The point of that example is to show how to safely use xargs. Since find now has its own built-in xargs support perhaps we should adapt the example to use that instead. We can also list the -delete method as an alternative. E.g. $ find . \( -name \*.jpg -o -name \*.gif \) -exec rm {} + or

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Todd C . Miller
On Thu, 22 Aug 2019 11:06:12 -0600, "Theo de Raadt" wrote: > Todd C. Miller wrote: > > > The point of that example is to show how to safely use xargs. Since > > find now has its own built-in xargs support perhaps we should adapt > > the example to use that instead. > > Does it not matter that

recognize eMMC/SDXC Intel 100 Series found in Tuxedo InfinityBook 14 v2

2019-08-22 Thread Felix Kronlage-Dammers
Hi, couple devices found in the Tuxedo InfinityBook 14 v2. felix Index: sys/dev/pci/pcidevs === RCS file: /cvs/src/sys/dev/pci/pcidevs,v retrieving revision 1.1894 diff -u -p -u -r1.1894 pcidevs --- sys/dev/pci/pcidevs 13 Aug 2019

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Theo de Raadt
Todd C. Miller wrote: > The point of that example is to show how to safely use xargs. Since > find now has its own built-in xargs support perhaps we should adapt > the example to use that instead. Does it not matter that the xargs solution is maximally portable in scripts, but the builtin

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Theo de Raadt
Todd C. Miller wrote: > On Thu, 22 Aug 2019 11:06:12 -0600, "Theo de Raadt" wrote: > > > Todd C. Miller wrote: > > > > > The point of that example is to show how to safely use xargs. Since > > > find now has its own built-in xargs support perhaps we should adapt > > > the example to use that

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Todd C . Miller
On Thu, 22 Aug 2019 11:10:43 -0600, "Theo de Raadt" wrote: > Todd C. Miller wrote: > > > On Thu, 22 Aug 2019 11:06:12 -0600, "Theo de Raadt" wrote: > > > > > Todd C. Miller wrote: > > > > > > > The point of that example is to show how to safely use xargs. Since > > > > find now has its own

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Klemens Nanni
On Thu, Aug 22, 2019 at 11:00:57AM -0600, Todd C. Miller wrote: > The point of that example is to show how to safely use xargs. Since > find now has its own built-in xargs support perhaps we should adapt > the example to use that instead. As claudio and tb already pointed out, that is indeed a

Re: find.1: Use -delete in EXAMPLES

2019-08-22 Thread Todd C . Miller
On Thu, 22 Aug 2019 19:20:53 +0200, Klemens Nanni wrote: > I concur. We can at least showcase the "batching" version that passes > multiple arguments to rm(1) while also mentioning `-delete'. > > Both find(1)'s `-print0' and xarg(1)'s `-0' reference each other, I'd > say that is enough together

fix rpki client regression tests

2019-08-22 Thread Moritz Buhl
Hi, some experts forgot to run the rpki-client regression tests after some changes. The tests are relinking parts of the source and this is not great but after all I still prefer some running tests. Patch attached. thanks, mbuhl Index: regress/usr.sbin/rpki-client/test-cert.c

ndp: Use warn(3)

2019-08-22 Thread Klemens Nanni
All of these fprintf(3) to standard error (with exit(3) afterwards) can be simplified. OK? Index: ndp.c === RCS file: /cvs/src/usr.sbin/ndp/ndp.c,v retrieving revision 1.93 diff -u -p -r1.93 ndp.c --- ndp.c 28 Jun 2019

Re: recognize eMMC/SDXC Intel 100 Series found in Tuxedo InfinityBook 14 v2

2019-08-22 Thread Jonathan Gray
On Thu, Aug 22, 2019 at 08:23:05PM +0200, Felix Kronlage-Dammers wrote: > Hi, > > couple devices found in the Tuxedo InfinityBook 14 v2. > > felix thanks, committed > > > Index: sys/dev/pci/pcidevs > === > RCS file:

umount after path rename

2019-08-22 Thread Alexander Bluhm
Hi, after renaming a directory that has a mountpoint in its subtree, umount will fail. # rm -rf /mnt/FOO # mkdir -p /mnt/foo/bar # mount -t mfs /dev/sd0b /mnt/foo/bar # mv /mnt/foo /mnt/FOO # umount /mnt/foo/bar umount: /mnt/foo/bar: No such file or directory # umount /mnt/FOO/bar umount:

fix ssh unittest misc regression test

2019-08-22 Thread Moritz Buhl
Hi, some ssh unittest ist failing because it links stuff together in another way. basically add 'sshbuf-misc.c' to SRCS. additional suggestion: make variable assignments similar to ports mbuhl Index: regress/usr.bin/ssh/unittests/misc/Makefile