Re: Binary packages 2019Q1

2019-04-23 Thread Martin Husemann
On Tue, Apr 23, 2019 at 11:18:55PM +0200, Pedro Pinho wrote: > Hi all, > System: NetBSD 8.0 amd64 > Today I saw that the binaries from 2019Q1 were through. Fortunately, I've > decided to check the list of packages on-line before updating/upgrading my > system, as there are many packages missing.

Binary packages 2019Q1

2019-04-23 Thread Pedro Pinho
Hi all, System: NetBSD 8.0 amd64 Today I saw that the binaries from 2019Q1 were through. Fortunately, I've decided to check the list of packages on-line before updating/upgrading my system, as there are many packages missing. Enough to break my system, so I've pointed my repositories.conf to

Re: NetBSD current on RPI2 (vs 8.0_RC1)

2019-04-23 Thread Michael van Elst
On Tue, Apr 23, 2019 at 10:01:24PM +0530, Mayuresh wrote: > On Tue, Apr 23, 2019 at 03:55:41PM -, Michael van Elst wrote: > > The display is handled by the firmware, depending on your HDMI display > > you need to configure overscan in /boot/config.txt. > > I had a feeling that it was

Re: uniq on open streams

2019-04-23 Thread Greg A. Woods
At Tue, 23 Apr 2019 13:45:40 +0200, Andreas Krey wrote: Subject: Re: uniq on open streams > > On Tue, 23 Apr 2019 05:51:19 +, JP wrote: > > I had a need to run uniq on an open stream. It doesn't seem to print > > the most recent line. > > > > $ lua -e 'print("a");print("b");print("c");

Re: NetBSD current on RPI2 (vs 8.0_RC1)

2019-04-23 Thread Mayuresh
On Tue, Apr 23, 2019 at 03:55:41PM -, Michael van Elst wrote: > The display is handled by the firmware, depending on your HDMI display > you need to configure overscan in /boot/config.txt. I had a feeling that it was /boot/cmdline.txt which shows fb options. For either of them is there a

Re: NetBSD current on RPI2 (vs 8.0_RC1)

2019-04-23 Thread Michael van Elst
mayur...@acm.org (Mayuresh) writes: >- Garbled HDMI display on console (worked fine with x11) appears fixed > now. But it still fails to occupy the full width and height of the > screen. The display is handled by the firmware, depending on your HDMI display you need to configure overscan in

NetBSD current on RPI2 (vs 8.0_RC1)

2019-04-23 Thread Mayuresh
Just installed this image [thanks Herbert] on RPI2 http://nycdn.netbsd.org/pub/NetBSD-daily/HEAD/201904220430Z/evbarm-earmv7hf/binary/gzimg/armv7.img.gz This is not exactly a problem report, so not writing many details. I do not know on which of the following items work is/was going on and

Re: uniq on open streams

2019-04-23 Thread Valery Ushakov
Andreas Krey wrote: > [...] also: > >netbsd$ uniq --help >uniq: uniq: No such file or directory Thanks, this one should be fixed now. -uwe

Re: Which image for RPI2 NetBSD-current?

2019-04-23 Thread Greg Troxel
Mayuresh writes: > Wish to try out current on RPI2 by flashing an image. Read both of these thoroughly: http://wiki.netbsd.org/ports/evbarm/ http://wiki.netbsd.org/ports/evbarm/raspberry_pi/

Re: uniq on open streams

2019-04-23 Thread JP
oh i gotcha, the -c; i need this thing on open streams though i guess it's trivial to implement what i need - i did so with lua in a couple line On Tue, Apr 23, 2019 at 7:51 AM JP wrote: > > it should print the line the first time it sees it and not print the > repeats, in my opinion > > On

Which image for RPI2 NetBSD-current?

2019-04-23 Thread Mayuresh
Wish to try out current on RPI2 by flashing an image. Is following the right one for this purpose? http://nycdn.netbsd.org/pub/NetBSD-daily/netbsd-8/latest/evbarm-earmv7hf/installation/instkernel/netbsd-RPI2_INSTALL.bin.gz What is the purpose of .bin.gz, .gz, .srec.gz, .symbols.gz etc?

Re: uniq on open streams

2019-04-23 Thread JP
it should print the line the first time it sees it and not print the repeats, in my opinion On Tue, Apr 23, 2019 at 11:45 AM Andreas Krey wrote: > > On Tue, 23 Apr 2019 05:51:19 +, JP wrote: > > I had a need to run uniq on an open stream. It doesn't seem to print > > the most recent line. >

Re: uniq on open streams

2019-04-23 Thread Andreas Krey
On Tue, 23 Apr 2019 05:51:19 +, JP wrote: > I had a need to run uniq on an open stream. It doesn't seem to print > the most recent line. > > $ lua -e 'print("a");print("b");print("c"); repeat until false' |uniq > a > b > > ^ should print the c as well, no? Yes, but. 'uniq -c' can only

uniq on open streams

2019-04-23 Thread JP
I had a need to run uniq on an open stream. It doesn't seem to print the most recent line. $ lua -e 'print("a");print("b");print("c"); repeat until false' |uniq a b ^ should print the c as well, no?