Re: CVS commit: src/share/man/man4

2024-05-16 Thread nia
On Thu, May 16, 2024 at 05:48:05PM +0300, Valery Ushakov wrote: > On Thu, May 16, 2024 at 11:54:20 +0000, Nia Alarie wrote: > > > Modified Files: > > src/share/man/man4: eap.4 > > > > Log Message: > > Note that EAP_USE_BOTH_DACS is deprecated in the eap(

Re: CVS commit: src/sbin/cgdconfig

2022-05-15 Thread nia
On Sun, May 15, 2022 at 03:53:27PM -0400, Christos Zoulas wrote: > Log Message: > Build argon2 inline so that crunched programs work. I also disabled threads > for now; we can put them back if needed. Please re-enable threads. They influence the output hash so by disabling threads you stop people

Re: CVS commit: src/sbin/cgdconfig

2022-05-17 Thread nia
On Mon, May 16, 2022 at 09:10:40AM +, Taylor R Campbell wrote: > Surely `disabling threads' just means cgdconfig can't take advantage > of parallelism to compute the same function in less time, not that > cgdconfig computes a different function or fails to compute the same > function, no? > M

Re: CVS commit: xsrc/external/mit

2022-05-27 Thread nia
On Fri, May 27, 2022 at 06:10:22PM +0300, Valery Ushakov wrote: > On Fri, May 27, 2022 at 14:23:23 +0000, Nia Alarie wrote: > > > Module Name:xsrc > > Committed By: nia > > Date: Fri May 27 14:23:23 UTC 2022 > > > > Modified Files

Re: CVS commit: src

2022-05-29 Thread nia
On Sun, May 29, 2022 at 09:34:16AM +0200, Frank Kardel wrote: > Hi *! > > I see we are building knobs to not build and install parts of the system. > Somehow I missed the discussion on this. Could someone point me to that > thread, so that I can understand the overall rationale? > > As for NTP: s

Re: CVS commit: src

2022-05-29 Thread nia
On Sun, May 29, 2022 at 05:50:30PM +0100, Alistair Crooks wrote: > But before starting to make piecemeal changes to the build system, maybe > some research into how others have accomplished this before with NetBSD? > > I'd really like to avoid the plethora of (sometimes conflicting) switches > tha

Re: CVS commit: src

2022-06-05 Thread nia
On Sun, May 29, 2022 at 07:35:45PM +0200, J. Hannken-Illjes wrote: > Just a side note, how do we test a build system with say 20 knobs, > do we build all 2**20 configurations to be sure everything at > least builds? > > Isn't it better to always build everything and move this selection > into the

Re: CVS commit: src

2022-06-06 Thread nia
On Sun, Jun 05, 2022 at 10:30:42PM +0100, Alistair Crooks wrote: > Then you can create a target file system, possibly by using some of the > in-tree tools The idea was to use the in-tree tooling we are already using for live images, which can be adapted to add custom software by changing a configu

Re: CVS commit: src

2022-06-06 Thread nia
On Mon, Jun 06, 2022 at 10:15:59AM +, nia wrote: > On Sun, Jun 05, 2022 at 10:30:42PM +0100, Alistair Crooks wrote: > > Then you can create a target file system, possibly by using some of the > > in-tree tools > > The idea was to use the in-tree tooling we are already us

Re: CVS commit: src/usr.bin/make

2022-01-08 Thread nia
On Fri, Jan 07, 2022 at 08:04:49PM +, Roland Illig wrote: > Using memcmp for comparing the variable name was probably overkill since > the variable names are usually very short, so rather compare them byte > by byte. I don't see the point of this change - it makes the code harder to read. We s

Re: CVS commit: src/usr.bin/make

2022-01-09 Thread nia
On Sun, Jan 09, 2022 at 01:18:32AM +0100, Roland Illig wrote: > If I were to extract the newly added code into a function call > cpp_skip_string(&p, varname), would that help? That function could be > used in var.c as well, for example in ModMatch and ModMatchEq. Yes, it should be a utility funct

Re: CVS commit: src/bin/sh

2022-08-19 Thread nia
On Fri, Aug 19, 2022 at 04:15:52AM +0700, Robert Elz wrote: > The effect of "set -o editor" (for whichever editor it uses), that > is when the shell does: el_set(el, EL_EDITOR, editor); is to essentially > set up all the key bindings so they match what that editor expects them > to be. Doing that

Re: CVS commit: src/sys/dev/wscons

2021-10-11 Thread nia
On Sun, Oct 10, 2021 at 10:44:03PM +0900, Izumi Tsutsui wrote: > > Module Name:src > > Committed By: nia > > Date: Tue Sep 28 06:14:28 UTC 2021 > > > > Modified Files: > > src/sys/dev/wscons: wsconsio.h wsmouse.c wsmousevar.h &g

Re: CVS commit: src/usr.sbin/rpcbind

2021-10-30 Thread nia
On Sat, Oct 30, 2021 at 08:25:42PM +0900, Rin Okuyama wrote: > We should not break from infinite loop here, even if svc_fdset_getmax() > fails. Please restore the old behavior. And please be more careful before > making such a non-trivial change. Ah, thank you. I incorrectly assumed that "out" mus

Re: CVS commit: src/sys

2020-03-28 Thread nia
On Sat, Mar 28, 2020 at 08:35:37AM +, Tetsuya Isaki wrote: > - 4msec is (probably no problem for most modern real hardware but) > too aggressive to be default. > - 10msec is too severe for antique machines but it's hard to draw a line. <5ms blk_ms is required by real world applications; see

Re: CVS commit: src/sys/dev/audio

2020-05-27 Thread nia
On Wed, May 27, 2020 at 09:46:04PM +0900, Tetsuya Isaki wrote: > Why are playback and recording asymmetric? > > Thanks, I think this is because audio_rmixer_start is used unguarded in audio_open (it doesn't check for the sc_rbusy flag). This isn't the case for pmixer. So, if the audio device is

Re: CVS commit: src/sys/dev/audio

2020-05-29 Thread nia
OK... Can you request a pullup to ensure resuming with a stream playing doesn't panic on 9.1? Playing audio is very distorted on resume, but that can be resolved by killing the streams...

Re: CVS commit: src/sys/dev/audio

2020-05-30 Thread nia
On Sat, May 30, 2020 at 09:48:36PM +0900, Tetsuya Isaki wrote: > I will do it on next weekend. > > Thanks, > --- > Tetsuya Isaki Thank you.

Re: CVS commit: src

2020-08-15 Thread nia
On Fri, Aug 14, 2020 at 12:53:17AM +, Taylor R Campbell wrote: > New system call getrandom() compatible with Linux and others. > > [..] > > As proposed on tech-userlevel, tech-crypto, tech-security, and > tech-kern, and subsequently adopted by core (minus the getentropy part > of the proposal,

Re: CVS commit: src/share/man/man8

2020-08-15 Thread nia
On Sat, Aug 15, 2020 at 04:12:40PM +0200, Leonardo Taccari wrote: > Hello Nia, > > Nia Alarie writes: > > [...] > > Log Message: > > afterboot.8: Explain how to install pkgin on a fresh system > > [...] > > +.Pp > > +To install pkgin, if it was not don

Re: CVS commit: src

2020-08-15 Thread nia
On Sat, Aug 15, 2020 at 06:49:11PM +, Taylor R Campbell wrote: > - The behaviour is incompatible only in the sense that NetBSD's idea > of `adequate entropy' is stronger than FreeBSD's or Linux's, so > blocking is _more likely_ on NetBSD than on FreeBSD or Linux. In practice, the blocking

Re: CVS commit: src

2020-08-19 Thread nia
On Mon, Aug 17, 2020 at 12:47:40PM +0100, David Brownlee wrote: > On Sun, 16 Aug 2020 at 08:13, Martin Husemann wrote: > > > > Hi Nia, > > > > I think you are mixing a few issues here into one discussion - which might > > make sense from a user perspective, bu

Re: CVS commit: src/sbin/mount

2020-10-25 Thread nia
On Sat, Oct 24, 2020 at 10:38:04PM +0700, Robert Elz wrote: > | file systems that are used as what spools? > > Ah, youth! > > The old text: > This option is useful for optimizing read performance on file systems > that are used as news spools. > was refering to netnews (usenet, NNTP

Re: CVS commit: src

2020-10-27 Thread nia
On Tue, Oct 27, 2020 at 01:16:00PM +1100, matthew green wrote: > this doesn't seem like the right design. we have cpus > already that have multiple frequency domains, so this > doesn't work with that setup, so attempt to use it as a > general method for estd etc seems limited and thsu not > the ri

Re: CVS commit: src

2020-10-27 Thread nia
On Tue, Oct 27, 2020 at 03:14:29PM -0400, David H. Gutteridge wrote: > On Tue, 27 Oct 2020 at 09:04:28 +0000, nia wrote: > >On Tue, Oct 27, 2020 at 01:16:00PM +1100, matthew green wrote: > >> this doesn't seem like the right design. we have cpus > >> already that

Re: CVS commit: src

2020-10-28 Thread nia
On Tue, Oct 27, 2020 at 05:01:51PM -0400, David H. Gutteridge wrote: > > i can have a look at mate-applets tomorrow, the current code looks > > like it won't work with AMD CPUs on netbsd-9 and that should ideally > > be fixed. > > Yeah, that's my understanding. (I'm guessing Youri only had Intel >

Re: CVS commit: src

2020-11-10 Thread nia
On Tue, Nov 10, 2020 at 04:29:21PM +, Taylor R Campbell wrote: > > Module Name:src > > Committed By: nia > > Date: Sun Nov 8 21:56:48 UTC 2020 > > > > Modified Files: > > src/external/bsd/kyua-cli: Makefile.inc > > src

Re: please put back cat man pages, and what's the deal with warp?

2020-11-11 Thread nia
https://github.com/NetBSD/src/blob/8dacd60b50e3047dcbb2645d41df02cd16fd2072/games/warp/warp.c#L10 this doesn't read like a netbsd-compatible software license. it's using libcompat. should new programs in base really be relying on ancient bsd compat?

Re: CVS commit: src

2020-11-12 Thread nia
I'll revert the commit shortly. I wasn't expecting such major breakage (obviously) and actually did run a build but ran into different problems with libstdc++.

Re: CVS commit: src

2020-11-12 Thread nia
On Thu, Nov 12, 2020 at 05:35:44PM +, nia wrote: > I'll revert the commit shortly. > > I wasn't expecting such major breakage (obviously) and actually > did run a build but ran into different problems with libstdc++. For the record I'm just trying to fix things

Re: please put back cat man pages, and what's the deal with warp?

2020-11-13 Thread nia
On Wed, Nov 11, 2020 at 01:12:58PM +0100, Kamil Rytarowski wrote: > On 11.11.2020 11:05, nia wrote: > > https://github.com/NetBSD/src/blob/8dacd60b50e3047dcbb2645d41df02cd16fd2072/games/warp/warp.c#L10 > > > > this doesn't read like a netbsd-compatible software license.

Re: CVS commit: src/share/man/man9

2021-02-07 Thread nia
think it's clear that conversion of other formats is not supported by the rest of the paragraph, so it doesn't need to be mentioned here, where the primary purpose of the sentence is to explain why you don't need to handle conversion in that case yourself. That's just my opinion, though - I'm not an English expert, there's lots of rules I know but cannot explain. Thanks, Nia

Re: CVS commit: src/share/man/man4

2021-03-11 Thread nia
On Fri, Mar 12, 2021 at 05:02:00PM +1100, matthew green wrote: > > Modified Files: > > src/share/man/man4: hdaudio.4 > > > > Log Message: > > Mention that formats with >16-bit precision cannot yet be used > > i'm not near a system to test right now, but when i added > support for floating poin

Re: CVS commit: src/usr.sbin/bta2dpd/bta2dpd

2021-03-16 Thread nia
On Sun, Mar 07, 2021 at 01:09:43PM +, Nathanial Sloss wrote: > This is to compenstate for the behaviour in NetBSD current that pad(4) will > no longer output 0's when its corresponding audio(4) device is not active. > > I believe that this new pad(4) behaviour is not present in -9 and -8. I a

Re: CVS commit: src/sys/dev/audio

2021-06-08 Thread nia
On Tue, Jun 01, 2021 at 09:12:24PM +, Taylor R Campbell wrote: > audio(4): Set AUMODE_PLAY/RECORD only if asked _and_ supported. > > If one is requested and _not_ supported, fail; otherwise we might > enter audio_write with a null play track and crash on KASSERT. It looks like this is an inco

Re: CVS commit: src/lib/libcurses

2021-07-26 Thread nia
On Mon, Jul 26, 2021 at 11:55:24PM +0300, Valery Ushakov wrote: > On Mon, Jul 26, 2021 at 20:17:10 +0000, Nia Alarie wrote: > > > Module Name:src > > Committed By: nia > > Date: Mon Jul 26 20:17:10 UTC 2021 > > > > Modif

Re: CVS commit: src/lib/libcurses

2021-07-26 Thread nia
On Mon, Jul 26, 2021 at 09:01:51PM +, nia wrote: > On Mon, Jul 26, 2021 at 11:55:24PM +0300, Valery Ushakov wrote: > > On Mon, Jul 26, 2021 at 20:17:10 +, Nia Alarie wrote: > > > > > Module Name: src > > > Committed By: nia > > > Date

Re: CVS commit: src/lib/libcurses

2021-07-27 Thread nia
On Tue, Jul 27, 2021 at 12:22:18AM +0300, Valery Ushakov wrote: > I'm not sure what is the discussion you are referring to, but it's not > a matter of a simple rewording. "It's complicated", as it ties into a > few other things, so ideally it needs a coordinated change to several > man pages. Dur

CVS commit: src/doc

2023-12-13 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Dec 13 08:20:04 UTC 2023 Modified Files: src/doc: CHANGES Log Message: doc: Recent changes To generate a diff of this commit: cvs rdiff -u -r1.3021 -r1.3022 src/doc/CHANGES Please note that diffs are not public domain; they

CVS commit: src/doc

2023-12-13 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Dec 13 08:20:04 UTC 2023 Modified Files: src/doc: CHANGES Log Message: doc: Recent changes To generate a diff of this commit: cvs rdiff -u -r1.3021 -r1.3022 src/doc/CHANGES Please note that diffs are not public domain; they

CVS commit: src/doc

2024-01-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Jan 23 08:01:15 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Changes for January To generate a diff of this commit: cvs rdiff -u -r1.3028 -r1.3029 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-01-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Jan 23 08:01:15 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Changes for January To generate a diff of this commit: cvs rdiff -u -r1.3028 -r1.3029 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-01-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Jan 23 08:08:36 UTC 2024 Modified Files: src/doc: CHANGES Log Message: indent To generate a diff of this commit: cvs rdiff -u -r1.3029 -r1.3030 src/doc/CHANGES Please note that diffs are not public domain; they are subject to

CVS commit: src/doc

2024-01-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Jan 23 08:08:36 UTC 2024 Modified Files: src/doc: CHANGES Log Message: indent To generate a diff of this commit: cvs rdiff -u -r1.3029 -r1.3030 src/doc/CHANGES Please note that diffs are not public domain; they are subject to

CVS commit: src/doc

2024-02-13 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Feb 13 15:28:42 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Changes since 20/01 To generate a diff of this commit: cvs rdiff -u -r1.3034 -r1.3035 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-02-13 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Feb 13 15:28:42 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Changes since 20/01 To generate a diff of this commit: cvs rdiff -u -r1.3034 -r1.3035 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-02-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Feb 14 19:20:29 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Fix syntax To generate a diff of this commit: cvs rdiff -u -r1.3036 -r1.3037 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-02-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Feb 14 19:20:29 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Fix syntax To generate a diff of this commit: cvs rdiff -u -r1.3036 -r1.3037 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-03-15 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Mar 15 17:47:02 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: changes from the last 2 weeks To generate a diff of this commit: cvs rdiff -u -r1.3044 -r1.3045 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/doc

2024-03-15 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Mar 15 17:47:02 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: changes from the last 2 weeks To generate a diff of this commit: cvs rdiff -u -r1.3044 -r1.3045 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/usr.sbin/sysinst

2024-03-20 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 21 02:24:35 UTC 2024 Modified Files: src/usr.sbin/sysinst: msg.mi.en Log Message: sysinst: Clarify that usernames are maximum 8 characters At least one user reported thinking that the previous wording implied that usernames

CVS commit: src/usr.sbin/sysinst

2024-03-20 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 21 02:24:35 UTC 2024 Modified Files: src/usr.sbin/sysinst: msg.mi.en Log Message: sysinst: Clarify that usernames are maximum 8 characters At least one user reported thinking that the previous wording implied that usernames

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 07:57:31 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Recent changes To generate a diff of this commit: cvs rdiff -u -r1.3045 -r1.3046 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 07:57:31 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Recent changes To generate a diff of this commit: cvs rdiff -u -r1.3045 -r1.3046 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 07:59:21 UTC 2024 Modified Files: src/doc: CHANGES Log Message: spell uftdi(4) properly. To generate a diff of this commit: cvs rdiff -u -r1.3046 -r1.3047 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 07:59:21 UTC 2024 Modified Files: src/doc: CHANGES Log Message: spell uftdi(4) properly. To generate a diff of this commit: cvs rdiff -u -r1.3046 -r1.3047 src/doc/CHANGES Please note that diffs are not public domain

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 16:17:50 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Fix a few typos To generate a diff of this commit: cvs rdiff -u -r1.3047 -r1.3048 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-03-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 28 16:17:50 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Fix a few typos To generate a diff of this commit: cvs rdiff -u -r1.3047 -r1.3048 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src

2024-04-09 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 9 15:17:25 UTC 2024 Modified Files: src/distrib/common/bootimage: Makefile.bootimage src/distrib/sets: maketars regpkgset sets.subr src/distrib/sets/lists/base: ad.aarch64 ad.arm ad.mips ad.powerpc

CVS commit: src

2024-04-09 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 9 15:17:25 UTC 2024 Modified Files: src/distrib/common/bootimage: Makefile.bootimage src/distrib/sets: maketars regpkgset sets.subr src/distrib/sets/lists/base: ad.aarch64 ad.arm ad.mips ad.powerpc

CVS commit: src/doc

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 10 14:24:31 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Changes since the end of March To generate a diff of this commit: cvs rdiff -u -r1.3048 -r1.3049 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/doc

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 10 14:24:31 UTC 2024 Modified Files: src/doc: CHANGES Log Message: Changes since the end of March To generate a diff of this commit: cvs rdiff -u -r1.3048 -r1.3049 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/distrib/sets/lists/debug32

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 10 16:14:26 UTC 2024 Modified Files: src/distrib/sets/lists/debug32: ad.aarch64 ad.mips64eb ad.mips64el ad.mipsn64eb ad.mipsn64el ad.powerpc64 ad.riscv64 md.amd64 md.sparc64 Log Message: Add missing

CVS commit: src/distrib/sets/lists/debug32

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 10 16:14:26 UTC 2024 Modified Files: src/distrib/sets/lists/debug32: ad.aarch64 ad.mips64eb ad.mips64el ad.mipsn64eb ad.mipsn64el ad.powerpc64 ad.riscv64 md.amd64 md.sparc64 Log Message: Add missing

CVS commit: src

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 11 06:20:29 UTC 2024 Modified Files: src: UPDATING Log Message: UPDATING: note new sets To generate a diff of this commit: cvs rdiff -u -r1.346 -r1.347 src/UPDATING Please note that diffs are not public domain; they are

CVS commit: src

2024-04-10 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 11 06:20:29 UTC 2024 Modified Files: src: UPDATING Log Message: UPDATING: note new sets To generate a diff of this commit: cvs rdiff -u -r1.346 -r1.347 src/UPDATING Please note that diffs are not public domain; they are

CVS commit: src/distrib/sets/lists/debug32

2024-04-11 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 11 08:19:31 UTC 2024 Modified Files: src/distrib/sets/lists/debug32: ad.aarch64 ad.mips64eb ad.mips64el ad.mipsn64eb ad.mipsn64el ad.powerpc64 ad.riscv64 md.amd64 md.sparc64 Log Message: sync

CVS commit: src/distrib/sets/lists/debug32

2024-04-11 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 11 08:19:31 UTC 2024 Modified Files: src/distrib/sets/lists/debug32: ad.aarch64 ad.mips64eb ad.mips64el ad.mipsn64eb ad.mipsn64el ad.powerpc64 ad.riscv64 md.amd64 md.sparc64 Log Message: sync

CVS commit: src

2024-04-22 Thread Nia Alarie
Module Name:src Committed By: nia Date: Mon Apr 22 14:41:26 UTC 2024 Modified Files: src/distrib/common/bootimage: Makefile.bootimage src/distrib/sets: maketars regpkgset sets.subr src/distrib/sets/lists/base32: ad.mips64eb ad.mips64el src/distrib

CVS commit: src/distrib

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 23 12:25:57 UTC 2024 Modified Files: src/distrib/amd64/cdroms/installcd: Makefile src/distrib/common: Makefile.bootcd src/distrib/sparc64/cdroms/installcd: Makefile Log Message: Exclude compat sets from ISO

CVS commit: src/distrib

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 23 12:25:57 UTC 2024 Modified Files: src/distrib/amd64/cdroms/installcd: Makefile src/distrib/common: Makefile.bootcd src/distrib/sparc64/cdroms/installcd: Makefile Log Message: Exclude compat sets from ISO

CVS commit: src/distrib

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 23 20:37:08 UTC 2024 Modified Files: src/distrib/common: Makefile.bootcd src/distrib/i386/cdroms/installcd: Makefile Log Message: Reduce the size of the i386 ISO to help it fit on a CD-ROM Exclude tests and html man

CVS commit: src/distrib

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Apr 23 20:37:08 UTC 2024 Modified Files: src/distrib/common: Makefile.bootcd src/distrib/i386/cdroms/installcd: Makefile Log Message: Reduce the size of the i386 ISO to help it fit on a CD-ROM Exclude tests and html man

CVS commit: src/distrib/sparc64/cdroms/installcd

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 05:16:16 UTC 2024 Modified Files: src/distrib/sparc64/cdroms/installcd: Makefile Log Message: Give lots of room for further expansion of the sparc64 CD image To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33

CVS commit: src/distrib/sparc64/cdroms/installcd

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 05:16:16 UTC 2024 Modified Files: src/distrib/sparc64/cdroms/installcd: Makefile Log Message: Give lots of room for further expansion of the sparc64 CD image To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33

CVS commit: src/share/mk

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 05:20:35 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: USE_XZ_SETS is no longer needed for sparc64 to fit on a standard CD-ROM To generate a diff of this commit: cvs rdiff -u -r1.1368 -r1.1369 src/share

CVS commit: src/share/mk

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 05:20:35 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: USE_XZ_SETS is no longer needed for sparc64 to fit on a standard CD-ROM To generate a diff of this commit: cvs rdiff -u -r1.1368 -r1.1369 src/share

CVS commit: src/doc

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 06:44:18 UTC 2024 Modified Files: src/doc: TODO.smpnet Log Message: ena(4) became MPSAFe last year To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/doc/TODO.smpnet Please note that diffs are not public

CVS commit: src/doc

2024-04-23 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 06:44:18 UTC 2024 Modified Files: src/doc: TODO.smpnet Log Message: ena(4) became MPSAFe last year To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/doc/TODO.smpnet Please note that diffs are not public

CVS commit: src/external/mit/ctwm/etc

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 10:35:13 UTC 2024 Modified Files: src/external/mit/ctwm/etc: system.ctwmrc Log Message: it's netbsd-11, time for a slightly less eye-bleeding shade of orange To generate a diff of this commit: cvs rdiff -u -r1.19 -

CVS commit: src/external/mit/ctwm/etc

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 10:35:13 UTC 2024 Modified Files: src/external/mit/ctwm/etc: system.ctwmrc Log Message: it's netbsd-11, time for a slightly less eye-bleeding shade of orange To generate a diff of this commit: cvs rdiff -u -r1.19 -

CVS commit: src/distrib

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 11:29:35 UTC 2024 Modified Files: src/distrib/amd64/cdroms: Makefile src/distrib/cdrom: current.conf src/distrib/common: Makefile.bootcd src/distrib/i386/cdroms: Makefile Added Files: src

CVS commit: src/distrib

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 11:29:35 UTC 2024 Modified Files: src/distrib/amd64/cdroms: Makefile src/distrib/cdrom: current.conf src/distrib/common: Makefile.bootcd src/distrib/i386/cdroms: Makefile Added Files: src

CVS commit: src/distrib/sparc64/cdroms

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:39:58 UTC 2024 Modified Files: src/distrib/sparc64/cdroms: Makefile Added Files: src/distrib/sparc64/cdroms/installdvd: Makefile Log Message: sparc64 follows x86 and gets an installdvd image with all sets To

CVS commit: src/distrib/sparc64/cdroms

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:39:58 UTC 2024 Modified Files: src/distrib/sparc64/cdroms: Makefile Added Files: src/distrib/sparc64/cdroms/installdvd: Makefile Log Message: sparc64 follows x86 and gets an installdvd image with all sets To

CVS commit: src/doc

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:41:42 UTC 2024 Modified Files: src/doc: CHANGES Log Message: recent changes To generate a diff of this commit: cvs rdiff -u -r1.3049 -r1.3050 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/doc

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:41:42 UTC 2024 Modified Files: src/doc: CHANGES Log Message: recent changes To generate a diff of this commit: cvs rdiff -u -r1.3049 -r1.3050 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:46:20 UTC 2024 Modified Files: src/bin/csh: alloc.c extern.h Log Message: csh: add a reallocarray function for using inside csh To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/bin/csh/alloc.c cvs

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:46:20 UTC 2024 Modified Files: src/bin/csh: alloc.c extern.h Log Message: csh: add a reallocarray function for using inside csh To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/bin/csh/alloc.c cvs

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:47:12 UTC 2024 Modified Files: src/bin/csh: csh.h Log Message: csh: add a helper definition for the reallocarray function To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/bin/csh/csh.h Please note

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:47:12 UTC 2024 Modified Files: src/bin/csh: csh.h Log Message: csh: add a helper definition for the reallocarray function To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/bin/csh/csh.h Please note

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:49:03 UTC 2024 Modified Files: src/bin/csh: dir.c file.c func.c glob.c misc.c str.c Log Message: csh: replace malloc(x * y) and realloc(x * y) with reallocarray To generate a diff of this commit: cvs rdiff -u -r1.35

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:49:03 UTC 2024 Modified Files: src/bin/csh: dir.c file.c func.c glob.c misc.c str.c Log Message: csh: replace malloc(x * y) and realloc(x * y) with reallocarray To generate a diff of this commit: cvs rdiff -u -r1.35

CVS commit: src/distrib

2024-04-25 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 25 11:56:51 UTC 2024 Modified Files: src/distrib/common: Makefile.bootcd src/distrib/common/bootimage: Makefile.installimage src/distrib/i386/cdroms/installcd: Makefile Log Message: remove redundant kernels

CVS commit: src/distrib

2024-04-25 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Apr 25 11:56:51 UTC 2024 Modified Files: src/distrib/common: Makefile.bootcd src/distrib/common/bootimage: Makefile.installimage src/distrib/i386/cdroms/installcd: Makefile Log Message: remove redundant kernels

CVS commit: src/distrib

2024-04-26 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Apr 26 17:36:32 UTC 2024 Modified Files: src/distrib/amd64/cdroms: Makefile.cdrom src/distrib/amd64/cdroms/installdvd: Makefile src/distrib/i386/cdroms: Makefile.cdrom src/distrib/i386/cdroms/installdvd

CVS commit: src/distrib

2024-04-26 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Apr 26 17:36:32 UTC 2024 Modified Files: src/distrib/amd64/cdroms: Makefile.cdrom src/distrib/amd64/cdroms/installdvd: Makefile src/distrib/i386/cdroms: Makefile.cdrom src/distrib/i386/cdroms/installdvd

CVS commit: src/share/mk

2024-04-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sun Apr 28 08:01:04 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: Turn off MKAMDGPUFIRMWARE on i386 It's too big for the i386 install media and not useful on either pre-2012 hardware or the kinds of emb

CVS commit: src/share/mk

2024-04-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sun Apr 28 08:01:04 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: Turn off MKAMDGPUFIRMWARE on i386 It's too big for the i386 install media and not useful on either pre-2012 hardware or the kinds of emb

CVS commit: src/sys/arch/i386/conf

2024-04-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sun Apr 28 08:12:44 UTC 2024 Modified Files: src/sys/arch/i386/conf: LEGACY Log Message: i386: disable DRMKMS drivers in LEGACY kernel (this is for ISA) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/i386

  1   2   3   4   5   6   7   >