CVS commit: src/sys/modules/lua

2021-08-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 8 22:26:32 UTC 2021 Modified Files: src/sys/modules/lua: lua.c Log Message: Fix LIST operations, found by strictly-aligned CPUs, i.e., ARMv5 and IBM403: - Initialize LIST_HEAD. - Use LIST_FOREACH_SAFE() where necessary.

CVS commit: src/sys/modules/lua

2021-08-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Aug 7 04:19:31 UTC 2021 Modified Files: src/sys/modules/lua: lua.c Log Message: Make sure that buffers allocated by lua_alloc() are aligned to 8-byte boundaries as done by kmem_alloc(9). Fix alignment faults on armv5te; GCC

CVS commit: src/sys/arch/arm/xscale

2021-08-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Aug 6 09:01:36 UTC 2021 Modified Files: src/sys/arch/arm/xscale: i80321_icu.c i80321var.h Log Message: Simplify i80321_intr_calculate_masks(). G/C unused members of struct intrq. No functional changes intended. To generate

CVS commit: src/sys/arch/arm/xscale

2021-08-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Aug 6 08:58:42 UTC 2021 Modified Files: src/sys/arch/arm/xscale: i80321_intr.h Log Message: Do *NOT* lower IPL in i80321_splraise(). Fix various strange crashes for DIAGNOSTIC kernel on evbarm/HDL_G, including one worked

CVS commit: src

2021-08-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 3 09:25:44 UTC 2021 Modified Files: src/doc: CHANGES src/sys/arch/evbppc/dht: machdep.c src/sys/arch/evbppc/evbppc: evbppc_machdep.c src/sys/arch/evbppc/explora: machdep.c

CVS commit: src

2021-07-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Jul 26 12:49:13 UTC 2021 Modified Files: src/lib/libc/arch/powerpc/string: Makefile.inc src/sys/lib/libkern/arch/powerpc: Makefile.inc Log Message: Improve previous: - Add suffix ``d'' for mkdep(1). - Improve comment a

CVS commit: src/tests/lib/libc/sys

2021-07-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jul 24 08:39:54 UTC 2021 Modified Files: src/tests/lib/libc/sys: t_ptrace_core_wait.h Log Message: For sh3, increment PC when PT_CONTINUE from trigger_trap(), as already done for aarch64, arm, and powerpc. Otherwise, child is

CVS commit: src/sys/lib/libkern/arch/powerpc

2021-07-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jul 24 05:29:26 UTC 2021 Modified Files: src/sys/lib/libkern/arch/powerpc: Makefile.inc Log Message: For evbppc, use C version of memcpy(3), memcmp(3), and memmove(3) consistently for *.{po,pico,go} (for RUMP), in order to avoid

CVS commit: src/lib/libc/arch/powerpc/string

2021-07-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jul 24 05:27:26 UTC 2021 Modified Files: src/lib/libc/arch/powerpc/string: Makefile.inc Log Message: For evbppc, use C version of bcopy(3), memcpy(3), memcmp(3), and memmove(3) consistently for debug library (*.go) in order to

CVS commit: src/doc

2021-07-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Jul 19 01:34:03 UTC 2021 Modified Files: src/doc: 3RDPARTY Log Message: binutils 2.37 has been released. To generate a diff of this commit: cvs rdiff -u -r1.1807 -r1.1808 src/doc/3RDPARTY Please note that diffs are not public

CVS commit: src/doc

2021-07-16 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Jul 16 10:02:50 UTC 2021 Modified Files: src/doc: HACKS Log Message: PR port-sh3/56311 Correct misinterpretation for the cause of the problem, and link to the bug report for upstream. To generate a diff of this commit: cvs

CVS commit: src/doc

2021-07-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jul 15 08:02:47 UTC 2021 Modified Files: src/doc: HACKS Log Message: PR port-sh3/56311 Document -O0 workaround for initdecl() in doc/HACKS. To generate a diff of this commit: cvs rdiff -u -r1.222 -r1.223 src/doc/HACKS Please

CVS commit: src/usr.bin/xlint/lint1

2021-07-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jul 15 07:58:05 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: decl.c Log Message: PR port-sh3/56311 As a workaround for GCC bug, compile initdecl() with -O0 for sh3. To generate a diff of this commit: cvs rdiff -u -r1.199

CVS commit: src/sys/arch/landisk/dev

2021-07-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jul 15 05:07:50 UTC 2021 Modified Files: src/sys/arch/landisk/dev: btn_obio.c button.c buttonvar.h Log Message: Migrate btn_init() from btnopen() (with RUN_ONCE) to btn_obio_attach(). Fix uninitialized use of

CVS commit: src/sys/arch/sh3/sh3

2021-07-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jul 15 04:58:33 UTC 2021 Modified Files: src/sys/arch/sh3/sh3: locore_subr.S Log Message: For cpu_switchto(), inherit PSL_IMASK field of SR between lwp's. Otherwise, IPL is lost during context switch, which allows improper

CVS commit: src/lib/libc/arch/arm

2021-06-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 30 00:00:49 UTC 2021 Modified Files: src/lib/libc/arch/arm/gen: swapcontext.S src/lib/libc/arch/arm/sys: __clone.S Log Message: Fix previous. For Thumb-1: - sp cannot be manipulated directly - {add,sub}s should be

CVS commit: src/lib/libc/arch/arm

2021-06-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 29 23:29:12 UTC 2021 Modified Files: src/lib/libc/arch/arm/gen: swapcontext.S src/lib/libc/arch/arm/sys: __clone.S Log Message: Align sp to 8-byte boundary as required by EABI. IIUC, this change only affects libc

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm

2021-06-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 29 23:26:00 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm: aeabi_cfcmp.S divmodsi4.S divsi3.S modsi3.S Log Message: Align sp to 8-byte boundary as required by EABI. This is

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

2021-06-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 29 11:35:28 UTC 2021 Modified Files: src/sys/arch/evbarm/conf: std.hdl_g Log Message: KERNEL_BASE is 0xc000 for HDL_G. With this change, HDL-G boots multiuser! To generate a diff of this commit: cvs rdiff -u -r1.7

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

2021-06-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 26 09:13:00 UTC 2021 Modified Files: src/sys/arch/evbarm/conf: README.evbarm Log Message: ARMADILLO-IOT-G3 kernel was gone; it is now supported by GENERIC. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33

CVS commit: src/sys/arch

2021-06-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 26 09:11:31 UTC 2021 Modified Files: src/sys/arch/hpcarm/conf: std.hpcarm src/sys/arch/hpcmips/conf: std.hpcmips Log Message: Set VMSWAP_DEFAULT_PLAINTEXT for hpcarm and hpcmips, that suffer from slow CPU as well as

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

2021-06-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 26 09:03:46 UTC 2021 Modified Files: src/sys/arch/evbppc/conf: std.explora Log Message: Oops, revert unintentional part of the previous. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9

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

2021-06-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 26 09:00:39 UTC 2021 Modified Files: src/sys/arch/evbppc/conf: std.explora Log Message: Set VMSWAP_DEFAULT_PLAINTEXT for Explora 450 (IBM_PPC403). (slow CPU & memory shortage) To generate a diff of this commit: cvs rdiff

CVS commit: src/external/bsd/libfido2/lib

2021-06-17 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 17 06:20:56 UTC 2021 Modified Files: src/external/bsd/libfido2/lib: Makefile Log Message: Unbreak build; new libfido2 requires OpenBSD-compatible freezero(). To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: src/sys/sys

2021-06-16 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 11:55:10 UTC 2021 Modified Files: src/sys/sys: systm.h Log Message: Provide KERNEL_LOCK facilities also for MODULAR, in addition to MULTIPROCESSOR and _MODULE. Otherwise, inconsistencies occur between UP kernel and

CVS commit: src

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:21:09 UTC 2021 Modified Files: src/lib/libc/compiler_rt: Makefile.inc src/lib/libm/compiler_rt: Makefile.inc src/sys/lib/libkern: Makefile.compiler-rt Added Files:

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:07:49 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: adddf3.c addsf3.c ashldi3.c ashrdi3.c comparedf2.c comparesf2.c divdf3.c divsf3.c divsi3.c extendhfsf2.c

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:07:18 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: floatdidf.c Log Message: PR port-arm/55897 Cherry-pick upstream commit llvm-svn: 303207:

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:06:46 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: adddf3.c addsf3.c ashldi3.c ashrdi3.c comparedf2.c comparesf2.c divdf3.c divsf3.c divsi3.c extendhfsf2.c

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:06:21 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: int_lib.h Log Message: PR port-arm/55897 Cherry-pick upstream commit llvm-svn: 303138:

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:05:49 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: int_lib.h Log Message: PR port-arm/55897 Cherry-pick upstream commit llvm-svn: 298974 for lib/builtins/int_lib.h.

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 05:05:03 UTC 2021 Modified Files: src/sys/external/bsd/compiler_rt/dist/lib/builtins: int_lib.h Log Message: PR port-arm/55897 Cherry-pick upstream commit llvm-svn: 266891:

CVS commit: src/external/gpl3/gcc

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 16 00:56:16 UTC 2021 Modified Files: src/external/gpl3/gcc: README.gcc10 Log Message: Update earmv[67]{,hf}{,eb}: hazard has gone, just working fine! Note that kernel texts for soft-float variants are just same as that for

CVS commit: src/sys/arch/amiga/dev

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 15 09:00:33 UTC 2021 Modified Files: src/sys/arch/amiga/dev: amidisplaycc.c Log Message: Remove parentheses from return. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36

CVS commit: src/sys/arch/amiga/dev

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 15 08:53:47 UTC 2021 Modified Files: src/sys/arch/amiga/dev: amidisplaycc.c Log Message: Add support for WSDISPLAYIO_MODE_DUMBFB to WSDISPLAYIO_SMODE. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35

CVS commit: src/external/gpl3/gcc/dist/gcc

2021-06-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 15 08:22:23 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc: config.gcc Log Message: Fix GCC10 for arm. Include order of bpapi.h and netbsd-elf.h was swapped when official support for arm*--netbsdelf-eabi{,hf} was

CVS commit: src/sys/dev/hpc

2021-06-04 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 5 02:27:08 UTC 2021 Modified Files: src/sys/dev/hpc: hpcfb.c Log Message: hpcfb_cnattach(): If fbconf == NULL, this is for early console output (used for hpcmips/VR41xx machines), and wsdisplay_preattach() should be used

CVS commit: src/external/gpl3/gdb/dist/gdb

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Jun 4 01:42:14 UTC 2021 Modified Files: src/external/gpl3/gdb/dist/gdb: aarch64-nbsd-tdep.c Log Message: Add missing nbsd_init_abi() call to aarch64_nbsd_init_abi(). Fix tests/usr.bin/gdb/t_regress:pie on aarch64eb (types of

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

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 3 09:09:22 UTC 2021 Modified Files: src/sys/arch/evbppc/conf: DHT Log Message: - Add some more things necessary for ATF. - Add makphy(4) found in recent wm(4) models. - Style. To generate a diff of this commit: cvs rdiff

CVS commit: src/share/mk

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 3 07:40:48 UTC 2021 Modified Files: src/share/mk: bsd.own.mk bsd.x11.mk Log Message: Switch amiga to Xorg server 1.20; wsfb(4) is only graphic driver both for 1.10 and 1.20 (Xamiga was gone a long ago...), and there is no

CVS commit: src/external/mit/xorg/server/drivers/xf86-input-keyboard

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 3 07:37:01 UTC 2021 Modified Files: src/external/mit/xorg/server/drivers/xf86-input-keyboard: Makefile Log Message: Sort ${MACHINE}'s. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 \

CVS commit: src/external/mit/xorg/server/drivers/xf86-input-keyboard

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 3 07:34:30 UTC 2021 Modified Files: src/external/mit/xorg/server/drivers/xf86-input-keyboard: Makefile Log Message: For amiga, use wskbd as default, which is only supported protocol today. To generate a diff of this

CVS commit: src/sys/arch/amiga/dev

2021-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jun 3 07:31:20 UTC 2021 Modified Files: src/sys/arch/amiga/dev: kbd.c ms.c Log Message: kbd(4) and ms(4) carry multiple interface attributes. They are configurable both as standalone drivers for legacy framebuffer console, or

CVS commit: src/sys/kern

2021-06-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 2 15:43:33 UTC 2021 Modified Files: src/sys/kern: kern_ksyms.c Log Message: Fix regression introduced in rev 1.90: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/kern/kern_ksyms.c#rev1.90 in which the last element of

CVS commit: xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/bsd

2021-06-02 Thread Rin Okuyama
Module Name:xsrc Committed By: rin Date: Wed Jun 2 15:01:18 UTC 2021 Modified Files: xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/bsd: ppc_video.c Log Message: Declare IOPortBase for mips, as done for xorg-server. Fix build for sgimips, which

CVS commit: src/sys/arch/arm/vfp

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 1 00:30:22 UTC 2021 Modified Files: src/sys/arch/arm/vfp: vfp_init.c Log Message: PR port-arm/55790 Fix KASSERT failure with floating-point exception in userland. Consider the case in which curlwp owns enabled FPU in

CVS commit: src/sys/arch/arm/vfp

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jun 1 00:13:19 UTC 2021 Modified Files: src/sys/arch/arm/vfp: vfp_init.c Log Message: PR port-arm/55790 Style fix for clarity, in preparation of main fix. Replace condition ``curcpu()->ci_pcu_curlwp[PCU_FPU] == curlwp'' with

CVS commit: src

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 22:33:19 UTC 2021 Modified Files: src/doc: HACKS src/external/gpl3/gdb.old/lib/libgdb: Makefile src/external/gpl3/gdb/lib/libgdb: Makefile Log Message: PR toolchain/55837 Get rid of -O0 hack for GDB for

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 21:31:34 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 Stop using enum for flags, as per request from joerg. #define constants and #undef after use. To generate a diff

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 12:12:24 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 Bump LAST_REGISTER and LAST_RESTORE_REG to REGNO_ARM32_S31 for arm. There are two numbering schemes for VFPv2

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:57:28 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 Fix logic error in copyFloatVectorRegister() for arm; copy s0-s31 or d0-d31, not both. To generate a diff of this

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:54:01 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 Fix pointer arithmetic when copying s0-s31 registers for arm. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:50:43 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 Fix DWARF/internal register numbers of s31 for arm. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:47:18 UTC 2021 Modified Files: src/sys/lib/libunwind: unwind_registers.S Log Message: PR toolchain/55837 Fix for jumpto() armeb; use word-wise load for flags, instead of byte-wise one. To generate a diff of this

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:44:07 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: PR toolchain/55837 copyFloatVectorRegister(): Assert register number is valid to make sure. To generate a diff of this commit: cvs

CVS commit: src/sys/lib/libunwind

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:41:22 UTC 2021 Modified Files: src/sys/lib/libunwind: Registers.hpp unwind_registers.S Log Message: PR toolchain/55837 Misc style fixes for clarity: - Rename lazyVFP1() and lazyVFP3() to lazyVFPv2() and lazyVFPv3(),

CVS commit: src/sys/stand/efiboot

2021-05-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 31 11:12:42 UTC 2021 Modified Files: src/sys/stand/efiboot: boot.c Log Message: Generalize boot.cfg workaround for ISO9660; fallback to default_device whenever efi_file_path() fails (due to broken firmware), in addition to

CVS commit: src/sys/arch/arm/include/arm32

2021-05-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun May 30 07:20:00 UTC 2021 Modified Files: src/sys/arch/arm/include/arm32: param.h Log Message: Include opt_param.h for MSGBUFSIZE ifdef _KERNEL_OPT. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34

CVS commit: src/sys/arch/aarch64/aarch64

2021-05-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun May 30 05:40:57 UTC 2021 Modified Files: src/sys/arch/aarch64/aarch64: netbsd32_machdep.c Log Message: Fix conversion between aarch64 and aarch32 fpreg's; in aarch32 mode, d0-d31 are packed into v0-v15 (== q0-q15). This fixes

CVS commit: src/share/mk

2021-05-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 29 12:25:08 UTC 2021 Modified Files: src/share/mk: bsd.own.mk Log Message: Switch mac68k to Xorg server 1.20. Only available driver is wsfb(4) both for 1.10 and 1.20, and there is no reason to stay with 1.10. XXX 1.20 works

CVS commit: src/external/mit/xorg/server/drivers/xf86-input-keyboard

2021-05-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 29 12:15:32 UTC 2021 Modified Files: src/external/mit/xorg/server/drivers/xf86-input-keyboard: Makefile Log Message: Make wskbd(4) default for mac68k; no other protocol is available. To generate a diff of this commit: cvs

CVS commit: src/etc/etc.evbarm

2021-05-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu May 27 08:43:02 UTC 2021 Modified Files: src/etc/etc.evbarm: Makefile.inc Log Message: Switch arm64.img to big-endian for aarch64eb, as libsa/efiboot support bi-endian FFS/disklabel now. Many thanks to mrg@ for working on

CVS commit: src/external/bsd/nvi/dist/regex

2021-05-16 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 17 04:01:58 UTC 2021 Modified Files: src/external/bsd/nvi/dist/regex: regcomp.c Log Message: Fix search for collating symbols in form of [[.foo.]], as in a similar manner as already done for POSIX character classes by

CVS commit: src/sys/arch/aarch64/aarch64

2021-05-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 15 11:39:20 UTC 2021 Modified Files: src/sys/arch/aarch64/aarch64: aarch32_syscall.c Log Message: Wrap long line. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: src/sys/arch/aarch64/aarch64

2021-05-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 15 11:38:26 UTC 2021 Modified Files: src/sys/arch/aarch64/aarch64: aarch32_syscall.c Log Message: Fix __syscall(2) for COMPAT_NETBSD32 on aarch64{,eb}. The 1st argument for __syscall(2) is quad_t, which is stored in r0 and

CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000

2021-05-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue May 11 01:47:21 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: rs6000.c Log Message: Cherry-pick upstream fix for GCC10 regression to -misel option. Assembler codes generated by GCC are identical with

CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000

2021-05-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue May 11 01:39:09 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: rs6000.c Log Message: In preparation to import upstream fix, revert our local fix in rev 1.26:

CVS commit: src/sys/dev/pci/ixgbe

2021-05-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue May 11 01:30:30 UTC 2021 Modified Files: src/sys/dev/pci/ixgbe: ix_txrx.c Log Message: Call bus_dmamap_unload(9) via ixgbe_dmamap_unload(), before freeing DMA buffer. Also, when the buffer is already freed, do not call

CVS commit: src/etc/etc.mac68k

2021-05-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 8 10:08:33 UTC 2021 Modified Files: src/etc/etc.mac68k: ttys Log Message: Turn on constty instead of ttyE0 as done for majority of other ports in order to make both framebuffer and serial consoles happy. Also, change TERM

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

2021-05-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 8 09:23:37 UTC 2021 Modified Files: src/distrib/sets/lists/debug: mi Log Message: Add missing aiomixer.debug to fix debug build. XXX I *really* hope someone(TM) invent better replacement of distrib/sets/lists... To

CVS commit: src/sys/arch/vax/vsa

2021-05-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat May 8 09:03:30 UTC 2021 Modified Files: src/sys/arch/vax/vsa: tc_vsbus.c Log Message: Catch up with this commit: http://www.nerv.org/netbsd/?q=id:20210507T165558Z.d4aba9e0e053181f2a98ee4ee43012b50949921b by which per slot

CVS commit: src/external/gpl3/gdb.old/lib/libgdb

2021-05-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri May 7 12:19:48 UTC 2021 Modified Files: src/external/gpl3/gdb.old/lib/libgdb: Makefile Log Message: For GCC10, add -Wno-unused-result for alloca(0) here and there. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src

2021-05-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu May 6 13:23:36 UTC 2021 Modified Files: src/share/mk: bsd.own.mk src/sys/arch/mvme68k/stand: Makefile Makefile.booters src/sys/arch/mvme68k/stand/wrtvid: Makefile wrtvid.c src/tools: Makefile Added Files:

CVS commit: src/sys/arch/amiga/stand/bootblock

2021-05-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu May 6 13:07:00 UTC 2021 Modified Files: src/sys/arch/amiga/stand/bootblock: Makefile Log Message: Unhook elf2bb and txlt as they are built as tools. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/sys/dev

2021-05-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon May 3 10:28:26 UTC 2021 Modified Files: src/sys/dev/acpi: genet_acpi.c src/sys/dev/fdt: genet_fdt.c src/sys/dev/ic: bcmgenet.c bcmgenetvar.h Log Message: genet(4): Add support for rnd(9). To generate a diff of

CVS commit: src/sys/arch/mac68k/mac68k

2021-04-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Apr 28 02:28:06 UTC 2021 Modified Files: src/sys/arch/mac68k/mac68k: machdep.c Log Message: Change sccA address for Quadra 800 from base + 0xc000 to 0xc020. The H/W partially decodes its address, and sccA is available at

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

2021-04-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Apr 28 02:15:03 UTC 2021 Modified Files: src/distrib/sets/lists/comp: mi Log Message: config_found_ia.9 and config_found_sm_loc.9 have been obsoleted. Should fix build. To generate a diff of this commit: cvs rdiff -u -r1.2384

CVS commit: src/sys/arch/mac68k/mac68k

2021-04-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Apr 28 02:00:59 UTC 2021 Modified Files: src/sys/arch/mac68k/mac68k: machdep.c Log Message: Make mac68k_set_io_offsets() a little bit cleaner: - Via1Base is always ``base'' for all supported models. - Set sccA and SCSIBase for

CVS commit: src/sys/arch/amiga/clockport

2021-04-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Apr 28 00:35:47 UTC 2021 Modified Files: src/sys/arch/amiga/clockport: files.clockport Log Message: clockport_common does not need its own interface attribute. All children are attached to clockportbus. To generate a diff of

CVS commit: src/external/gpl3/gdb/lib/libctf

2021-04-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Apr 26 23:51:08 UTC 2021 Removed Files: src/external/gpl3/gdb/lib/libctf: ctf-error.h Log Message: Remove accidentally committed autogen file. Should fix periodic snapshot builds with RO mounted /usr/src. To generate a diff of

CVS commit: src/share/mk

2021-04-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Apr 25 15:33:15 UTC 2021 Modified Files: src/share/mk: bsd.own.mk Log Message: Add missing \ for previous. To generate a diff of this commit: cvs rdiff -u -r1.1244 -r1.1245 src/share/mk/bsd.own.mk Please note that diffs are

CVS commit: src/external/gpl3/gcc

2021-04-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Apr 25 15:32:25 UTC 2021 Modified Files: src/external/gpl3/gcc: README.gcc10 Log Message: Update as(1) failure on armv6; it occurs also for earmv6hfeb, whereas it does not for earmv6{,eb}. To generate a diff of this commit:

CVS commit: src/sys/dev/usb

2021-04-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Apr 25 05:16:27 UTC 2021 Modified Files: src/sys/dev/usb: if_smsc.c Log Message: Sample # of RX packets as entropy source. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/sys/dev/usb/if_smsc.c Please note

CVS commit: src/sys/dev/usb

2021-04-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Apr 25 05:15:20 UTC 2021 Modified Files: src/sys/dev/usb: usbnet.c Log Message: Sample # of TX packets as entropy source. For RX packets, individual drivers need to be modified. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/external/gpl3/gcc/lib/libgcc

2021-04-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Apr 24 06:34:53 UTC 2021 Modified Files: src/external/gpl3/gcc/lib/libgcc: Makefile.inc Log Message: Fix build with MKDEBUG=yes for aarch64. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50

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

2021-04-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Apr 23 15:21:49 UTC 2021 Modified Files: src/distrib/sets/lists/debug: mi Log Message: Add lto-dump.debug. To generate a diff of this commit: cvs rdiff -u -r1.349 -r1.350 src/distrib/sets/lists/debug/mi Please note that diffs

CVS commit: src/share/man/man8/man8.x86

2021-04-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 22 01:36:25 UTC 2021 Modified Files: src/share/man/man8/man8.x86: boot.8 Log Message: Capitalize /EFI and /EFI/NetBSD as usual. Both are case-insensitive although. Maybe not worth bumping dates... To generate a diff of

CVS commit: src/sys/arch/powerpc/booke/dev

2021-04-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 22 01:33:18 UTC 2021 Modified Files: src/sys/arch/powerpc/booke/dev: pq3etsec.c Log Message: Fix rnd(9) support; events were not sampled actually in the previous. Remove #if-0'ed and wrap long line for clarity. To

CVS commit: src/external/gpl3/binutils.old/dist/bfd

2021-04-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 22 01:14:18 UTC 2021 Modified Files: src/external/gpl3/binutils.old/dist/bfd: elf32-ppc.c elf64-ppc.c Log Message: Apply this fix also for binutils.old.

CVS commit: src/external/gpl3/binutils/dist/bfd

2021-04-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 22 01:09:48 UTC 2021 Modified Files: src/external/gpl3/binutils/dist/bfd: elf32-ppc.c elf64-ppc.c Log Message: Fix regression where ld(1) is trapped into infinite loop when linking binary whose text does not fit within

CVS commit: src/sys/arch/powerpc/include/booke

2021-04-17 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Apr 17 13:25:57 UTC 2021 Modified Files: src/sys/arch/powerpc/include/booke: vmparam.h Log Message: Sync MAXfoo params with oea: MAXTSIZ: 512MB -> 128MB MAXDSIZ: 3.25GB -> 1GB There should be no particular reasons for

CVS commit: src/sys/arch/powerpc/include/booke

2021-04-17 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Apr 17 13:23:24 UTC 2021 Modified Files: src/sys/arch/powerpc/include/booke: vmparam.h Log Message: PR port-powerpc/56107 Decrease MAXSSIZ from ~256MB to 32MB (same as oea). This fixes tests in /usr/tests/usr.bin/make, that

CVS commit: src/sys/arch/powerpc/include/oea

2021-04-17 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Apr 17 09:22:29 UTC 2021 Modified Files: src/sys/arch/powerpc/include/oea: vmparam.h Log Message: Adjust TABs. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21

CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000

2021-04-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Apr 16 02:33:28 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: rs6000.c Log Message: Restore our local change to remove GNU_STACK program header:

CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000

2021-04-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Apr 16 02:26:43 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: rs6000.c Log Message: Fix regression introduced to GCC10, where it wrongly recognizes 32-bit processors as POWER9 if -misel flag is

CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000

2021-04-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Apr 16 02:18:04 UTC 2021 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: rs6000.c Log Message: Fix regression introduced to GCC10, by which inline assembler codes for 403/405 are miscompiled. Redundant .machine

CVS commit: src/sys/arch/alpha/include

2021-04-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 15 08:23:24 UTC 2021 Modified Files: src/sys/arch/alpha/include: cpu.h Log Message: Fix fallout from alpha/interrupt.c rev 1.93: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/arch/alpha/alpha/interrupt.c#rev1.93 by which

CVS commit: src/sys/kern

2021-04-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 15 00:37:31 UTC 2021 Modified Files: src/sys/kern: subr_evcnt.c Log Message: intrcnt[] is changed from long to u_int. Use sizeof(var) instead of sizeof(type) to catch up with this change. No binary changes as all ports with

CVS commit: src/sys/dev

2021-04-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 15 00:32:50 UTC 2021 Modified Files: src/sys/dev: dksubr.c Log Message: dk_start(): retry device-dependent start() routine later, also when it returns ENOMEM in addition to EAGAIN. Device-dependent start() routine may

CVS commit: src/sys/arch/alpha/alpha

2021-04-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Apr 15 00:19:52 UTC 2021 Modified Files: src/sys/arch/alpha/alpha: interrupt.c Log Message: Contrary to comment here, nowadays hardclock() and statclock() should be called with cpu_intr_p() is turning on, if used from the

  1   2   3   4   5   6   7   8   9   10   >