Re: find -exec util {} arg + confusion

2020-11-15 Thread Andreas Kusalananda Kähäri
On Thu, Nov 12, 2020 at 08:51:22PM +0100, Paul de Weerd wrote: > Hi all, > > I misread find(1) and did: > > [weerdpom] $ find path/to/cam -name \*.JPG -exec cp {} path/to/store + > find: -exec no terminating ";" or "+" Not really what you're asking for, but... What you seem to want to do can

Re: Add PCI ids for Intel 2.5Gb adapters

2020-11-15 Thread Jonathan Gray
On Mon, Nov 16, 2020 at 01:44:37PM +0800, Kevin Lo wrote: > ok? > > Index: sys/dev/pci/pcidevs > === > RCS file: /cvs/src/sys/dev/pci/pcidevs,v > retrieving revision 1.1942 > diff -u -p -u -p -r1.1942 pcidevs > ---

Add PCI ids for Intel 2.5Gb adapters

2020-11-15 Thread Kevin Lo
ok? Index: sys/dev/pci/pcidevs === RCS file: /cvs/src/sys/dev/pci/pcidevs,v retrieving revision 1.1942 diff -u -p -u -p -r1.1942 pcidevs --- sys/dev/pci/pcidevs 28 Oct 2020 18:49:03 - 1.1942 +++ sys/dev/pci/pcidevs 16 Nov

Re: powerpc lld fix

2020-11-15 Thread Theo de Raadt
> What would the impact on ports of disabling base-gcc be on powerpc? powerpc ports would get built sooner, because base snapshots would become available sooner :)

Re: find -exec util {} arg + confusion

2020-11-15 Thread Alexander Hall
On Sun, Nov 15, 2020 at 07:19:07PM +0100, Paul de Weerd wrote: > Hi all, > > It was pointed out to me off-list that I introduced a regression for > the case that has '+' as one of its arguments, e.g.: > > [weerd@pom] $ find /var/empty -exec echo + {} + > find: -exec: "+" should

Re: powerpc lld fix

2020-11-15 Thread Christian Weisgerber
Mark Kettenis: > What would the impact on ports of disabling base-gcc be on powerpc? None. $ cd /usr/ports $ make ARCH=macppc MACHINE_ARCH=powerpc show=CHOSEN_COMPILER |grep -B1 base-gcc $ -- Christian "naddy" Weisgerber na...@mips.inka.de

Re: find -exec util {} arg + confusion

2020-11-15 Thread Paul de Weerd
Hi all, It was pointed out to me off-list that I introduced a regression for the case that has '+' as one of its arguments, e.g.: [weerd@pom] $ find /var/empty -exec echo + {} + find: -exec: "+" should follow {} Updated diff fixes that case: [weerd@pom]

Re: pchgpio(4)

2020-11-15 Thread avv. Nicola Dell'Uomo
Hi, I can confirm that the trackpad has been working fine since I applied your diff and I did't have other apparent problems. Please le me know if you need some diagnostic data, or if I can help! Nicola Il 09/11/20 13:08, Mark Kettenis ha scritto: Here is the diff for the driver that

powerpc lld fix

2020-11-15 Thread Mark Kettenis
This is the diff from: https://reviews.llvm.org/D75419 which is needed to be able to link llvm with lld on powerpc. Not enough to link code generated by gcc 4.x though, but if I dissable building gcc a make build completes. What would the impact on ports of disabling base-gcc be on powerpc?

Re: uvm_fault: Kill goto Case2

2020-11-15 Thread Jonathan Matthew
On Fri, Nov 13, 2020 at 12:04:23PM -0300, Martin Pieuchot wrote: > Another simple refactoring of uvm_fault() removing a goto, ok? I like it, ok jmatthew@ > > Index: uvm/uvm_fault.c > === > RCS file: /cvs/src/sys/uvm/uvm_fault.c,v >