CVS commit: src/sys/conf

2021-06-29 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Tue Jun 29 10:24:41 UTC 2021

Modified Files:
src/sys/conf: majors.usb

Log Message:
mark urio/uscanner device majors obsolete


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/majors.usb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-29 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Sat May 29 12:03:34 UTC 2021

Modified Files:
src/sys/conf: files

Log Message:
Put the MSGBUFSIZE option in opt_param.h so that changes of its setting
in kernel config files will be picked up automatically without needing
a "make clean".  Added to opt_param.h since ports define their default
MSGBUFSIZE settings in their  (or equivalent).


To generate a diff of this commit:
cvs rdiff -u -r1.1284 -r1.1285 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-21 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri May 21 11:28:11 UTC 2021

Modified Files:
src/sys/conf: newvers_stand.mk

Log Message:
Fix previous to use the proper version file path.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/conf/newvers_stand.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-17 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Mon May 17 20:10:27 UTC 2021

Modified Files:
src/sys/conf: newvers_stand.mk

Log Message:
Make vers.c depend on ${_NETBSD_VERSION_DEPENDS}.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/newvers_stand.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-02 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun May  2 20:11:43 UTC 2021

Modified Files:
src/sys/conf: lint.mk

Log Message:
sys/conf/lint.mk: fix order of command line options

The option -o must come before the first filename.

Now it is possible to lint kern_exec.c at least.  The next failure is in
netbsd32_machdep.c:

netbsd32_machdep.c(395): error: illegal bit-field size: 255 [36]

That line in netbsd32_process_read_fpregs reads:

__CTASSERT(sizeof(*regs) == sizeof(struct save87));

This is probably a bug in lint.  The struct save87 contains 3 uint16_t,
followed by a union containing a uint64_t, followed by a packed struct
with size 10.  The combination of packed and padding is suspicious.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/conf/lint.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-02 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun May  2 19:51:57 UTC 2021

Modified Files:
src/sys/conf: lint.mk

Log Message:
sys/conf/lint.mk: allow GCC extensions in the kernel

The syntax errors due to the __asm statements are now gone.  The file
kern_exec.c only produces a few warnings now.  But after running that
file through lint1, the main lint complains about wrong usage.  This is
due to this call:

${LINT} ... -i $< -o $@

The main lint has never supported -o after the first filename, so it
complains.  It would have been helpful if lint had given any hint as to
which option was invalid.  Anyway, the next step is to reorder the
arguments.  As it is now, the code can never have worked.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/lint.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-05-02 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun May  2 19:29:30 UTC 2021

Modified Files:
src/sys/conf: lint.mk

Log Message:
sys/conf/lint.mk: a small step for linting the kernel

Due to the missing path, the following commands had failed:

$ cd src/sys/arch/amd64/compile/GENERIC
$ nbmake-amd64-lint kern_exec.ln
nbmake: don't know how to make kern/kern_exec.c. Stop

After fixing the path, "make kern_exec.ln" fails with:

sys/kern/kern_exec.c(65): error: syntax error '"' [249]

The affected line contains:

__KERNEL_RCSID(0, "...");

The macro __KERNEL_RCSID expands to __asm("some strings").  Since
KERNLINTFLAGS is missing the -g, lint does not recognize __asm as
keyword and tries to parse it as an identifier instead, expecting a
variable or function declaration.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/lint.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-04-06 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Tue Apr  6 15:05:12 UTC 2021

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Revert rev 1.278 which tried to call ctfmerge only once - this has
caused kernels with embedded symbol tables to explode in size.


To generate a diff of this commit:
cvs rdiff -u -r1.279 -r1.280 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-04-05 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Apr  5 22:52:03 UTC 2021

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Don't use /usr/bin/time (it is not portable)


To generate a diff of this commit:
cvs rdiff -u -r1.278 -r1.279 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-04-04 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Mon Apr  5 06:22:00 UTC 2021

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Move the ctfmerge call from SYSTEM_LD_TAIL (used by both STAGE1 and STAGE2)
to SYSTEM_LD_TAIL_STAGE2 only.  ctfmerge is slow enough that just calling
it once is enough.


To generate a diff of this commit:
cvs rdiff -u -r1.277 -r1.278 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-02-06 Thread Darrin B. Jewell
Module Name:src
Committed By:   dbj
Date:   Sat Feb  6 16:03:31 UTC 2021

Modified Files:
src/sys/conf: files

Log Message:
defflag USBHIST_PRINT


To generate a diff of this commit:
cvs rdiff -u -r1.1278 -r1.1279 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-01-31 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan 31 23:17:21 UTC 2021

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
sys/conf: remove useless dollars from Makefile.kern.inc

When parsing a variable modifier such as :C or :S, all '$' but the very
last are silently swallowed.

See usr.bin/make/unit-tests/varmod-subst.mk for details.

Since August 2020, make has a strict lint mode that is activated by
passing it the option -dL.  In that mode, these redundant '$' are not
accepted anymore.


To generate a diff of this commit:
cvs rdiff -u -r1.276 -r1.277 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2021-01-01 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri Jan  1 08:02:16 UTC 2021

Modified Files:
src/sys/conf: copyright

Log Message:
welcome 2021.  YES.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/conf/copyright

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-09-27 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sun Sep 27 19:08:11 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
Wups, forgot to commit this with vether.


To generate a diff of this commit:
cvs rdiff -u -r1.1275 -r1.1276 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-08-28 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Aug 28 14:58:25 UTC 2020

Modified Files:
src/sys/conf: majors

Log Message:
Nix trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-07-22 Thread Jaromir Dolecek
Module Name:src
Committed By:   jdolecek
Date:   Wed Jul 22 19:37:59 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
enable -Walloca, warn if something uses alloca()


To generate a diff of this commit:
cvs rdiff -u -r1.274 -r1.275 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-07-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jul  9 02:13:58 UTC 2020

Modified Files:
src/sys/conf: assym.mk

Log Message:
factor out common code.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/conf/assym.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-07-08 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Wed Jul  8 19:39:22 UTC 2020

Modified Files:
src/sys/conf: assym.mk

Log Message:
Drop -fstack-usage* from CFLAGS passed genassym.
We don't want it to create a "-.su" file.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/conf/assym.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-06-25 Thread Jaromir Dolecek
Module Name:src
Committed By:   jdolecek
Date:   Thu Jun 25 14:52:26 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
enable gcc stack usage limit for kernel functions, set to 3.5 KiB for now
as that seems to be enough to accomodate the current biggest stack usages

there are about six functions which use over 3KiB local stack, and
about a dozen between 2-3 KiB, so pushing this further needs more work
if desired

compile tested on amd64, i386, sparc64, sparc, powerpc (evbppc - BookE),
m68k (mac68k)


To generate a diff of this commit:
cvs rdiff -u -r1.273 -r1.274 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-06-18 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Fri Jun 19 00:58:17 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Use -fstack-usage only if we are using gcc.

Pointed out by maxv@


To generate a diff of this commit:
cvs rdiff -u -r1.272 -r1.273 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-06-18 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Thu Jun 18 11:50:45 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Discard -fstack-usage for vax, for which GCC does not support that option
at the moment.


To generate a diff of this commit:
cvs rdiff -u -r1.271 -r1.272 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-06-16 Thread Simon Burge
Module Name:src
Committed By:   simonb
Date:   Wed Jun 17 02:40:43 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Add -fstack-usage to kernel builds. Produces .su files that can be
analysed to find large stack users.


To generate a diff of this commit:
cvs rdiff -u -r1.270 -r1.271 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-05-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu May 21 18:44:19 UTC 2020

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Do the chmod last so that the kernels get consistent permissions for MKREPRO
Reported by wiz@.


To generate a diff of this commit:
cvs rdiff -u -r1.269 -r1.270 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-04-04 Thread Jaromir Dolecek
Module Name:src
Committed By:   jdolecek
Date:   Sat Apr  4 19:02:53 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
remove also files.netsmb from here


To generate a diff of this commit:
cvs rdiff -u -r1.1263 -r1.1264 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-30 Thread Tohru Nishimura
Module Name:src
Committed By:   nisimura
Date:   Tue Mar 31 03:42:10 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
dme needs mii


To generate a diff of this commit:
cvs rdiff -u -r1.1261 -r1.1262 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-07 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Mar  8 00:18:41 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
undo previous since config has been fixed


To generate a diff of this commit:
cvs rdiff -u -r1.1260 -r1.1261 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-07 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Mar  7 18:08:48 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
Fix MIPS builds by working around an apparent bug in config(8)'s elif
handling.


To generate a diff of this commit:
cvs rdiff -u -r1.1259 -r1.1260 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-06 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar  7 00:53:25 UTC 2020

Modified Files:
src/sys/conf: copts.mk

Log Message:
XXX:

turn off -Wunused-but-set-variable for mips' linux_machdep.c and GCC 8.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/conf/copts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-05 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Mar  5 21:08:36 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
Also exclude EXEC_AOUT stuff for aarch64

XXX Pullup-9 and -8


To generate a diff of this commit:
cvs rdiff -u -r1.1258 -r1.1259 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-05 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Mar  5 13:11:31 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
Fix comment - thanks Ryo Shimizu


To generate a diff of this commit:
cvs rdiff -u -r1.1257 -r1.1258 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-03-03 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Wed Mar  4 02:20:57 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
mips64 has compat_netbsd32 but cannot have exec_aout; all other users
of compat_netbsd32 need exec_aout

Addresses PR kern/55037.

XXX pullup-9


To generate a diff of this commit:
cvs rdiff -u -r1.1256 -r1.1257 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-02-03 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Mon Feb  3 13:28:11 UTC 2020

Modified Files:
src/sys/conf: majors.usb

Log Message:
urio has gone.   Comment it out (remaining visible to hold the number)


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/majors.usb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-01-20 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Mon Jan 20 22:18:39 UTC 2020

Modified Files:
src/sys/conf: files

Log Message:
COMPAT_43 requires COMPAT_60


To generate a diff of this commit:
cvs rdiff -u -r1.1253 -r1.1254 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2020-01-17 Thread Ryo ONODERA
Module Name:src
Committed By:   ryoon
Date:   Sat Jan 18 07:54:26 UTC 2020

Modified Files:
src/sys/conf: compat_netbsd80.config compat_netbsd90.config

Log Message:
Fix version numbers in comments


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/compat_netbsd80.config
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/compat_netbsd90.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-12-31 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Jan  1 06:14:29 UTC 2020

Modified Files:
src/sys/conf: copyright

Log Message:
Welcome to 2020.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/conf/copyright

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-06 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon May  6 11:59:46 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Oops, disable FILECORE as intended.
heads up  


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon May  6 01:43:09 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Add ADOSFS & FILECORE (both disabled)


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon May  6 01:20:42 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Add V7FS (disabled)


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon May  6 01:11:42 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Add autofs pseudo device (disabled)
Add a description for existing pseudo devices


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Mon May  6 00:33:17 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Include EFS support.
Tested on amd64 & macppc


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sun May  5 17:24:00 UTC 2019

Modified Files:
src/sys/conf: majors

Log Message:
Now the real number for ipmi


To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-05-05 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sun May  5 17:22:31 UTC 2019

Modified Files:
src/sys/conf: majors

Log Message:
reservation for IPMI driver


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-04-26 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sat Apr 27 00:37:40 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Sort more


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-04-26 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sat Apr 27 00:30:37 UTC 2019

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Sort


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-04-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Apr 24 20:53:10 UTC 2019

Modified Files:
src/sys/conf: dts.mk

Log Message:
change -h to -n because it is more "portable"


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-04-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Apr 23 13:36:42 UTC 2019

Modified Files:
src/sys/conf: dts.mk

Log Message:
Add -h to the link command so that we replace the target file each time; this
should fix:

*** Failed target:  .BEGIN
*** Failed command: ln -sf 
/usr/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts dts/arm
*** Error code 1 (ignored)
ln: dts/arm/dts: Permission denied


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-03-16 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Sun Mar 17 01:06:42 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
config glue for ssdfb


To generate a diff of this commit:
cvs rdiff -u -r1.1230 -r1.1231 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-02-23 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Feb 23 12:25:33 UTC 2019

Modified Files:
src/sys/conf: majors

Log Message:
Reserve majors for HAXM and example loadable kernel modules

348-350 are reserved for HAXM
351 is reserved for sys/modules/examples

Discussed on tech-kern@


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-02-22 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 23 07:33:21 UTC 2019

Modified Files:
src/sys/conf: majors

Log Message:
Reserve major number for spi driver


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-02-09 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Feb 10 05:01:59 UTC 2019

Modified Files:
src/sys/conf: copts.mk

Log Message:
mark pf.c, radeon_cs.c and via_dmablit.c for no fall thru error.

this was already done in the various modules, but not in the main
kernel.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/copts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-02-05 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Feb  5 08:33:25 UTC 2019

Modified Files:
src/sys/conf: Makefile.kern.inc
Added Files:
src/sys/conf: copts.mk

Log Message:
pass -Wno-error=implicit-fallthrough for zlib.c.

XXX: consider using copts.mk for various warning/copt flags passed
in kernel builds currently set via 'makeoptions' in files.* files.
this is suboptimal, as those all get embedded into the kernel with
config_file.h.


To generate a diff of this commit:
cvs rdiff -u -r1.267 -r1.268 src/sys/conf/Makefile.kern.inc
cvs rdiff -u -r0 -r1.1 src/sys/conf/copts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-01-27 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Mon Jan 28 01:00:23 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
Move COMPAT_43 to preceed anything that depends on it


To generate a diff of this commit:
cvs rdiff -u -r1.1226 -r1.1227 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-01-27 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Mon Jan 28 00:26:53 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
Spell COMPAT_43 correctly - no NETBSD in the middle


To generate a diff of this commit:
cvs rdiff -u -r1.1225 -r1.1226 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-01-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan 28 00:00:18 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
comma police.


To generate a diff of this commit:
cvs rdiff -u -r1.1224 -r1.1225 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-01-27 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sun Jan 27 22:06:07 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
COMPAT_FREEBSD also requires COMPAT_43


To generate a diff of this commit:
cvs rdiff -u -r1.1223 -r1.1224 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2019-01-27 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sun Jan 27 22:00:14 UTC 2019

Modified Files:
src/sys/conf: files

Log Message:
Adjust dependencies for COMPAT_FREEBSD and COMPAT_LINUX

Should address kern/53915


To generate a diff of this commit:
cvs rdiff -u -r1.1222 -r1.1223 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-12-31 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Tue Jan  1 01:52:40 UTC 2019

Modified Files:
src/sys/conf: copyright

Log Message:
Welcome to 2019!


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/conf/copyright

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-12-16 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Mon Dec 17 04:37:15 UTC 2018

Modified Files:
src/sys/conf: dts.mk

Log Message:
Add support for building overlay DT blobs specified in the kernel
config file like so:

makeoptions DTS_OVERLAYDIR="${THISARM}/conf"
makeoptions DTS_OVERLAYS="
my-cool-overlay.dts
"

The result is my-cool-overlay.dtbo in the kernel compile directory.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-09-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Sep  8 14:12:04 UTC 2018

Modified Files:
src/sys/conf: files

Log Message:
Add libnv


To generate a diff of this commit:
cvs rdiff -u -r1.1206 -r1.1207 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-08-26 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Aug 27 05:35:22 UTC 2018

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Add CFLAGS, CPPFLAGS, and CWARNFLAGS from options to .c files.


To generate a diff of this commit:
cvs rdiff -u -r1.264 -r1.265 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-07-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Jul 15 07:07:15 UTC 2018

Modified Files:
src/sys/conf: files

Log Message:
More ipkdb removal


To generate a diff of this commit:
cvs rdiff -u -r1.1201 -r1.1202 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-05-25 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri May 25 19:48:12 UTC 2018

Modified Files:
src/sys/conf: dts.mk

Log Message:
Compile dtbs with -@ so that fdtoverlay(1) et.al. can symbolically
reference phandles.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-02-17 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sat Feb 17 22:47:14 UTC 2018

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Restrict -fno-delete-null-pointer-checks to GCC.


To generate a diff of this commit:
cvs rdiff -u -r1.263 -r1.264 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-02-13 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Feb 13 09:50:36 UTC 2018

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
use -fno-delete-null-pointer-checks for kernels.


To generate a diff of this commit:
cvs rdiff -u -r1.262 -r1.263 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-01-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan 22 17:38:46 UTC 2018

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
- Coverity does not like -std=gnu99
- Another lose is that you need to manually edit the compiler XML to add
  all the kernel options because cov-configure barfs because it tries to
  test the compilation environment thinking that we are userland even
  when options like -ffreestanding are present.


To generate a diff of this commit:
cvs rdiff -u -r1.261 -r1.262 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-01-14 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Mon Jan 15 07:20:10 UTC 2018

Modified Files:
src/sys/conf: compat_netbsd09.config compat_netbsd10.config
compat_netbsd11.config compat_netbsd12.config
compat_netbsd13.config compat_netbsd14.config
compat_netbsd15.config compat_netbsd16.config
compat_netbsd20.config compat_netbsd30.config
compat_netbsd40.config compat_netbsd50.config
compat_netbsd60.config compat_netbsd70.config

Log Message:
note that COMPAT_X implies all COMPAT_X+N.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/compat_netbsd09.config \
src/sys/conf/compat_netbsd10.config src/sys/conf/compat_netbsd11.config \
src/sys/conf/compat_netbsd12.config src/sys/conf/compat_netbsd13.config \
src/sys/conf/compat_netbsd14.config src/sys/conf/compat_netbsd15.config \
src/sys/conf/compat_netbsd16.config src/sys/conf/compat_netbsd20.config \
src/sys/conf/compat_netbsd30.config src/sys/conf/compat_netbsd40.config \
src/sys/conf/compat_netbsd50.config src/sys/conf/compat_netbsd60.config \
src/sys/conf/compat_netbsd70.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2018-01-10 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Jan 10 11:32:29 UTC 2018

Modified Files:
src/sys/conf: filesystems.config

Log Message:
Comment out AUTOFS until it compiles


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/filesystems.config

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-12-16 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sat Dec 16 09:34:18 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
Fix the linux dependency. It does not depend on COMPAT_16, it just wants
the compat functions (not really controlled by COMPAT_NETBSD, but for the
principle).

Makes it possible to load compat_linux.kmod from the filesystem without
any COMPAT_* option compiled (but COMPAT_NETBSD).


To generate a diff of this commit:
cvs rdiff -u -r1.1187 -r1.1188 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-12-05 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Dec  6 02:08:03 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
use -@ like bsd.klinks.mk


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-12-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Dec  5 02:57:37 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
Use similar restrictions to bsd.klinks.mk for .BEGIN rules.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-12-03 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Dec  3 17:07:18 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
handle absolute $S paths; we want to add ../ if they are relative only.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-12-03 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Dec  3 16:36:05 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
Add more complexity because of the path mess in the dts files. Requested
by jmcneill@


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-11-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Nov 18 18:44:55 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
Catch up with the new config version.


To generate a diff of this commit:
cvs rdiff -u -r1.1183 -r1.1184 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-10-09 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Mon Oct  9 10:28:33 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
(untested) attempt to fix b5 evbarm-earmv7hf build - please revert if this
is incorrect, or harms anything else...


To generate a diff of this commit:
cvs rdiff -u -r1.1181 -r1.1182 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-09-07 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Sep  7 21:22:19 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
Add support for building dts files from multiple paths, idea from christos


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-07-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jul 15 15:53:48 UTC 2017

Modified Files:
src/sys/conf: dts.mk

Log Message:
do dts depend processing in two passes, one for /include/ and one for #include


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-07-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jul 15 15:20:52 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc
Added Files:
src/sys/conf: dts.mk

Log Message:
Move the dts rule to a separate file and add dependencies handling.


To generate a diff of this commit:
cvs rdiff -u -r1.259 -r1.260 src/sys/conf/Makefile.kern.inc
cvs rdiff -u -r0 -r1.1 src/sys/conf/dts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-07-12 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Jul 13 01:17:03 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Add support for dts files outside of external/gpl2.


To generate a diff of this commit:
cvs rdiff -u -r1.258 -r1.259 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-06-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jun 17 17:08:49 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Assign DTB files to a variable so we can make -V DTB


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-06-16 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Jun 16 21:36:35 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
bump required config version for multiline makeoptions feature


To generate a diff of this commit:
cvs rdiff -u -r1.1177 -r1.1178 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Jun 15 21:41:01 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Add support for building DTB files during kernel build, from christos.


To generate a diff of this commit:
cvs rdiff -u -r1.256 -r1.257 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-06-11 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sun Jun 11 21:45:28 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
Remove the 'needs-flag' from spkr.c - it's not needed by anything.


To generate a diff of this commit:
cvs rdiff -u -r1.1176 -r1.1177 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-04-09 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Apr  9 14:52:14 UTC 2017

Modified Files:
src/sys/conf: newvers_stand.mk

Log Message:
Fix typo


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/newvers_stand.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Apr  8 19:53:54 UTC 2017

Modified Files:
src/sys/conf: newvers_stand.sh
Added Files:
src/sys/conf: newvers_stand.mk

Log Message:
Add makefile snippet for vers.c building.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/conf/newvers_stand.mk
cvs rdiff -u -r1.8 -r1.9 src/sys/conf/newvers_stand.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-04-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Apr  8 18:24:09 UTC 2017

Modified Files:
src/sys/conf: newvers.mk newvers.sh

Log Message:
- modernize: use getopts/usage/true/false variables
- if ${MKREPRO_TIMESTAMP} is used, synthesize all the information, instead
  of eliding it.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/newvers.mk
cvs rdiff -u -r1.61 -r1.62 src/sys/conf/newvers.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-02-02 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Feb  2 19:50:35 UTC 2017

Modified Files:
src/sys/conf: files

Log Message:
chipsfb needs glyphcache now


To generate a diff of this commit:
cvs rdiff -u -r1.1168 -r1.1169 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-01-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan  8 17:10:35 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc ssp.mk

Log Message:
Move to ssp.c suggested by uebayasi@


To generate a diff of this commit:
cvs rdiff -u -r1.254 -r1.255 src/sys/conf/Makefile.kern.inc
cvs rdiff -u -r1.1 -r1.2 src/sys/conf/ssp.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-01-07 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan  8 05:02:08 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Add COPTS for xhci.c, since the do_command_locked causes a spurious stack
proector warning.


To generate a diff of this commit:
cvs rdiff -u -r1.253 -r1.254 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-01-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Jan  4 21:37:46 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
Collect a list of kernel swap files to be removed (Yorick Hardy)


To generate a diff of this commit:
cvs rdiff -u -r1.252 -r1.253 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-01-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Jan  4 19:55:06 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
match the M* and N* targets.


To generate a diff of this commit:
cvs rdiff -u -r1.251 -r1.252 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2017-01-04 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Jan  4 15:43:04 UTC 2017

Modified Files:
src/sys/conf: Makefile.kern.inc

Log Message:
PR/51772: Yorick Hardy: Don't hard-code "netbsd", use ${.TARGET} consistently.


To generate a diff of this commit:
cvs rdiff -u -r1.250 -r1.251 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-12-31 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Jan  1 06:56:59 UTC 2017

Modified Files:
src/sys/conf: copyright

Log Message:
goodbye 2016, hello 2017!


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/conf/copyright

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-11-01 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Nov  1 22:54:33 UTC 2016

Modified Files:
src/sys/conf: files

Log Message:
Update dependencies for COMPAT_LINUX32 to include COMPAT_NETBSD32

Without this, an attempt to build a kernel with COMPAT_LINUX32 but without
COMPAT_NETBSD32 will fail during the execution of genassym, and the error
messages are not very helpful.

With this change, config(1) will automatically (and silently) select/add
COMPAT_NETBSD32 to the configuration.  It might be better if config(1)
were to issue an appropriate diagnostic, but that is a change for some
future day.


To generate a diff of this commit:
cvs rdiff -u -r1.1164 -r1.1165 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-09-09 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Sep  9 21:10:01 UTC 2016

Modified Files:
src/sys/conf: files

Log Message:
sppp is not a pseudo-device


To generate a diff of this commit:
cvs rdiff -u -r1.1163 -r1.1164 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-08-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Aug 11 15:16:54 UTC 2016

Modified Files:
src/sys/conf: files

Log Message:
defopt PPPOE_DEBUG kill unknown sessions


To generate a diff of this commit:
cvs rdiff -u -r1.1161 -r1.1162 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-05-13 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri May 13 07:41:47 UTC 2016

Modified Files:
src/sys/conf: majors

Log Message:
Clarify the intention here after discussing it with soda@


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-05-12 Thread Noriyuki Soda
Module Name:src
Committed By:   soda
Date:   Fri May 13 02:00:36 UTC 2016

Modified Files:
src/sys/conf: majors

Log Message:
- change major number limit for MI devices from 255 to 511,
  because twe is already using 332
- clarify that new MI devices should go to this file
  instead of majors.{ws,usb,std,tty,storage}
- fix major number conflict about hdmicec vs tty

OKed by matt@
the expression "previously not MI" is suggested by matt@ too.


To generate a diff of this commit:
cvs rdiff -u -r1.71 -r1.72 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed May 11 06:42:06 UTC 2016

Modified Files:
src/sys/conf: majors

Log Message:
Update with info about tty/storage reservations


To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/sys/conf/majors

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-04-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Apr 27 19:46:11 UTC 2016

Modified Files:
src/sys/conf: files

Log Message:
Add rt2860 now that it compiles.


To generate a diff of this commit:
cvs rdiff -u -r1.1156 -r1.1157 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/conf

2016-04-23 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 23 12:50:35 UTC 2016

Modified Files:
src/sys/conf: files

Log Message:
Merge nick-nhusb (missed commit)


To generate a diff of this commit:
cvs rdiff -u -r1.1154 -r1.1155 src/sys/conf/files

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



  1   2   3   >