Re: tar extract to stdout

2022-05-26 Thread Todd C . Miller
Our tar's -O flag is only used when creating an archive, it is unused for extraction. I'd prefer that we use the same option letter as GNU tar and bsdtar for this. - todd

tar extract to stdout

2022-05-26 Thread Ted Unangst
tar can read and write archive files from stdin/out, but cannot extract files to stdout. This may be kinda esoteric, but there's a few uses. Archive of log files, etc., where you want to check for something without extracting to a tmp file. I tried working around this by renaming to /dev/fd/1,

Re: powerpc64: do tc_init(9) before cpu_startclock()

2022-05-26 Thread Mark Kettenis
> From: Scott Cheloha > Date: Thu, 26 May 2022 08:51:22 -0500 > > > On May 24, 2022, at 7:12 PM, Scott Cheloha wrote: > > > > In the future, the clock interrupt will need a working timecounter to > > accurately reschedule itself. > > > > Move tc_init(9) up before cpu_startclock(). > > > > (I

Re: ntpd trusted servers

2022-05-26 Thread Stuart Henderson
Good catch! OK sthen@ On 2022/05/27 02:20, Nathanael Rensen wrote: > I found the trusted keyword is not respected when using the > servers directive in ntpd.conf(5): > > servers pool.trusted.local trusted > > Nathanael > > Index: ntp.c >

Re: powerpc64: do tc_init(9) before cpu_startclock()

2022-05-26 Thread Scott Cheloha
> On May 24, 2022, at 7:12 PM, Scott Cheloha wrote: > > In the future, the clock interrupt will need a working timecounter to > accurately reschedule itself. > > Move tc_init(9) up before cpu_startclock(). > > (I can't test this but it seems correct.) > > ok? Ping. This is trivial, can