CVS commit: src/usr.sbin/sysinst
Module Name:src Committed By: martin Date: Fri Nov 6 12:23:10 UTC 2020 Modified Files: src/usr.sbin/sysinst: msg.entropy.de msg.entropy.en msg.entropy.es msg.entropy.fr msg.entropy.pl partitions.c partitions.h Log Message: Fix copy & pasted copyright comments. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/sysinst/msg.entropy.de \ src/usr.sbin/sysinst/msg.entropy.en src/usr.sbin/sysinst/msg.entropy.es \ src/usr.sbin/sysinst/msg.entropy.fr src/usr.sbin/sysinst/msg.entropy.pl cvs rdiff -u -r1.11 -r1.12 src/usr.sbin/sysinst/partitions.c cvs rdiff -u -r1.19 -r1.20 src/usr.sbin/sysinst/partitions.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: christos Date: Fri Nov 6 14:50:13 UTC 2020 Modified Files: src/sys/kern: uipc_domain.c uipc_usrreq.c src/sys/rump/librump/rumpnet: net_stub.c src/sys/sys: un.h Log Message: PR/55777: Ruslan Nikolaev: Move the unp_sysctl_create to uipc_usrreq.c to facilitate splitting rump modules and does not require a dummy function. To generate a diff of this commit: cvs rdiff -u -r1.107 -r1.108 src/sys/kern/uipc_domain.c cvs rdiff -u -r1.199 -r1.200 src/sys/kern/uipc_usrreq.c cvs rdiff -u -r1.40 -r1.41 src/sys/rump/librump/rumpnet/net_stub.c cvs rdiff -u -r1.58 -r1.59 src/sys/sys/un.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/dev/lib
Module Name:src Committed By: christos Date: Fri Nov 6 15:35:33 UTC 2020 Modified Files: src/sys/rump/dev/lib/libpci_usbhc: Makefile PCI_USBHC.ioconf src/sys/rump/dev/lib/libusb: USB.ioconf Log Message: PR/55789: Ruslan Nikolaev: New rump drivers To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/rump/dev/lib/libpci_usbhc/Makefile cvs rdiff -u -r1.1 -r1.2 src/sys/rump/dev/lib/libpci_usbhc/PCI_USBHC.ioconf cvs rdiff -u -r1.2 -r1.3 src/sys/rump/dev/lib/libusb/USB.ioconf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbppc/conf
Module Name:src Committed By: martin Date: Fri Nov 6 18:36:35 UTC 2020 Modified Files: src/sys/arch/evbppc/conf: INSTALL.inc Log Message: Bump ramdisk size slightly To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbppc/conf/INSTALL.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/evbppc/ramdisk
Module Name:src Committed By: martin Date: Fri Nov 6 18:36:20 UTC 2020 Modified Files: src/distrib/evbppc/ramdisk: Makefile Log Message: Bump ramdisk size slightly To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/distrib/evbppc/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/sysinst/arch/vax
Module Name:src Committed By: martin Date: Fri Nov 6 19:47:31 UTC 2020 Modified Files: src/usr.sbin/sysinst/arch/vax: Makefile Log Message: Minimize the installer for crunched install media To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/sysinst/arch/vax/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 20:20:00 UTC 2020 Modified Files: src/usr.bin/make: make.h Log Message: make(1): clean up comments in make.h To generate a diff of this commit: cvs rdiff -u -r1.189 -r1.190 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 20:24:08 UTC 2020 Modified Files: src/usr.bin/make: make.h Log Message: make(1): document progname To generate a diff of this commit: cvs rdiff -u -r1.190 -r1.191 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make/unit-tests
Module Name:src Committed By: rillig Date: Fri Nov 6 20:29:35 UTC 2020 Modified Files: src/usr.bin/make/unit-tests: directive-ifmake.mk Log Message: make(1): fix indentation in test directive-ifmake To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/usr.bin/make/unit-tests/directive-ifmake.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 20:50:49 UTC 2020 Modified Files: src/usr.bin/make: cond.c Log Message: make(1): fix tests directive-ifmake and varcmd with custom boolean When make is compiled with -DUSE_UCHAR_BOOLEAN, these tests failed. Merge duplicate code and don't depend on the actual value of TRUE when evaluating conditions. To generate a diff of this commit: cvs rdiff -u -r1.175 -r1.176 src/usr.bin/make/cond.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 20:59:52 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): fix wrong condition in mkTempFile (since 2020-10-31) The wrong negation had been added in main.c 1.414 from 2020-10-31. Found by GCC 10, which complained about a potential null pointer dereference in line 2188. To generate a diff of this commit: cvs rdiff -u -r1.426 -r1.427 src/usr.bin/make/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 21:01:43 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): fix typo from previous commit To generate a diff of this commit: cvs rdiff -u -r1.427 -r1.428 src/usr.bin/make/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 21:09:06 UTC 2020 Modified Files: src/usr.bin/make: make.h Log Message: make(1): sort and renumber debug flags To generate a diff of this commit: cvs rdiff -u -r1.191 -r1.192 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 21:12:20 UTC 2020 Modified Files: src/usr.bin/make: make.h Log Message: make(1): document DEBUG_LINT To generate a diff of this commit: cvs rdiff -u -r1.192 -r1.193 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 21:20:31 UTC 2020 Modified Files: src/usr.bin/make: job.c main.c make.h Log Message: make(1): rename dieQuietly to shouldDieQuietly It was too confusing to have a function named die that doesn't actually die. Plus, the return type int didn't give any clue about what the function actually returns. To generate a diff of this commit: cvs rdiff -u -r1.303 -r1.304 src/usr.bin/make/job.c cvs rdiff -u -r1.428 -r1.429 src/usr.bin/make/main.c cvs rdiff -u -r1.193 -r1.194 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 22:37:07 UTC 2020 Modified Files: src/usr.bin/make: make.h Log Message: make(1): move name of inline functions to the beginning of the line To generate a diff of this commit: cvs rdiff -u -r1.194 -r1.195 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 22:39:10 UTC 2020 Modified Files: src/usr.bin/make: cond.c make.h Log Message: make(1): merge duplicate code for skipping horizontal whitespace To generate a diff of this commit: cvs rdiff -u -r1.176 -r1.177 src/usr.bin/make/cond.c cvs rdiff -u -r1.195 -r1.196 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 23:04:20 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): clean up Cmd_Exec stylistically To generate a diff of this commit: cvs rdiff -u -r1.429 -r1.430 src/usr.bin/make/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 23:05:20 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): fix comment of Error To generate a diff of this commit: cvs rdiff -u -r1.430 -r1.431 src/usr.bin/make/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 23:11:11 UTC 2020 Modified Files: src/usr.bin/make: main.c nonints.h var.c src/usr.bin/make/unit-tests: varmisc.mk Log Message: make(1): rename getBoolean and s2Boolean To generate a diff of this commit: cvs rdiff -u -r1.431 -r1.432 src/usr.bin/make/main.c cvs rdiff -u -r1.149 -r1.150 src/usr.bin/make/nonints.h cvs rdiff -u -r1.668 -r1.669 src/usr.bin/make/var.c cvs rdiff -u -r1.26 -r1.27 src/usr.bin/make/unit-tests/varmisc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Fri Nov 6 23:59:22 UTC 2020 Modified Files: src/usr.bin/make: arch.c dir.c nonints.h Log Message: make(1): rename Arch_MemMTime to Arch_MemberMTime The abbreviation Mem was ambiguous, it could have meant memory as well. To generate a diff of this commit: cvs rdiff -u -r1.154 -r1.155 src/usr.bin/make/arch.c cvs rdiff -u -r1.194 -r1.195 src/usr.bin/make/dir.c cvs rdiff -u -r1.150 -r1.151 src/usr.bin/make/nonints.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Sat Nov 7 00:02:54 UTC 2020 Modified Files: src/usr.bin/make: nonints.h var.c Log Message: make(1): rename VarSet_Flags to VarSetFlags Most other types don't have an underscore as well. To generate a diff of this commit: cvs rdiff -u -r1.151 -r1.152 src/usr.bin/make/nonints.h cvs rdiff -u -r1.669 -r1.670 src/usr.bin/make/var.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: rillig Date: Sat Nov 7 00:06:13 UTC 2020 Modified Files: src/usr.bin/make: job.c nonints.h var.c Log Message: make(1): rename Var_Set_with_flags to Var_SetWithFlags Now that the function is exported from the var module, it should stick to the naming conventions for public functions. To generate a diff of this commit: cvs rdiff -u -r1.304 -r1.305 src/usr.bin/make/job.c cvs rdiff -u -r1.152 -r1.153 src/usr.bin/make/nonints.h cvs rdiff -u -r1.670 -r1.671 src/usr.bin/make/var.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make/unit-tests
Module Name:src Committed By: rillig Date: Sat Nov 7 00:07:03 UTC 2020 Modified Files: src/usr.bin/make/unit-tests: archive-suffix.mk varmisc.mk Log Message: make(1): fix references to Var_SetWithFlags in tests To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.bin/make/unit-tests/archive-suffix.mk cvs rdiff -u -r1.27 -r1.28 src/usr.bin/make/unit-tests/varmisc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.