CVS commit: src/sys/dev
Module Name:src Committed By: pgoyette Date: Sat Mar 25 07:00:33 UTC 2017 Modified Files: src/sys/dev: vnd.c Log Message: Don't display step-by-step detailed error messages unless DIAGNOSTIC. Among other things, this avoids expected "error messages" when the module is being auto-unloaded while one or more units are still in use. To generate a diff of this commit: cvs rdiff -u -r1.258 -r1.259 src/sys/dev/vnd.c 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: martin Date: Sat Mar 25 09:21:21 UTC 2017 Modified Files: src/sys/arch/sparc/stand/common: promdev.c src/sys/arch/sparc/stand/ofwboot: ofdev.c src/sys/dev/ofw: ofdisk.c Log Message: Virtio block devices may have a "scsi" device_type instead of "block", so accept both. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/arch/sparc/stand/common/promdev.c cvs rdiff -u -r1.35 -r1.36 src/sys/arch/sparc/stand/ofwboot/ofdev.c cvs rdiff -u -r1.51 -r1.52 src/sys/dev/ofw/ofdisk.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/sparc/stand/ofwboot
Module Name:src Committed By: martin Date: Sat Mar 25 09:22:02 UTC 2017 Modified Files: src/sys/arch/sparc/stand/ofwboot: version Log Message: Bump version - virtio support added To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/sys/arch/sparc/stand/ofwboot/version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/kernel
Module Name:src Committed By: skrll Date: Sat Mar 25 10:07:55 UTC 2017 Modified Files: src/tests/kernel: t_ptrace_wait.c Log Message: kern/52012 kern/52018 kern/52019 were all fixed by christos To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/tests/kernel/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/npf/npfd
Module Name:src Committed By: christos Date: Sat Mar 25 11:00:27 UTC 2017 Modified Files: src/usr.sbin/npf/npfd: npfd_log.c Log Message: can't call pcap_datalink before activate. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/npf/npfd/npfd_log.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: martin Date: Sat Mar 25 13:05:09 UTC 2017 Modified Files: src/sys/dev/pci: virtio.c Log Message: PR kern/52107: for now (while we still use the legacy virtio spec) at least hack around the endianess issues with that. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/dev/pci/virtio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/sparc64/sparc64
Module Name:src Committed By: martin Date: Sat Mar 25 13:08:38 UTC 2017 Modified Files: src/sys/arch/sparc64/sparc64: autoconf.c Log Message: Add boot device recognition for ld @ virtio. To generate a diff of this commit: cvs rdiff -u -r1.208 -r1.209 src/sys/arch/sparc64/sparc64/autoconf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/sparc64/conf
Module Name:src Committed By: martin Date: Sat Mar 25 13:24:08 UTC 2017 Modified Files: src/sys/arch/sparc64/conf: GENERIC Log Message: Add virtio PCI devices, some of them mostly untested so far To generate a diff of this commit: cvs rdiff -u -r1.197 -r1.198 src/sys/arch/sparc64/conf/GENERIC Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amd64/amd64
Module Name:src Committed By: maxv Date: Sat Mar 25 15:05:16 UTC 2017 Modified Files: src/sys/arch/amd64/amd64: gdt.c Log Message: Use a bitmap-based allocator, will be easier to share with i386. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/arch/amd64/amd64/gdt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amd64/amd64
Module Name:src Committed By: maxv Date: Sat Mar 25 15:07:21 UTC 2017 Modified Files: src/sys/arch/amd64/amd64: locore.S Log Message: Don't need gdtstore here. To generate a diff of this commit: cvs rdiff -u -r1.122 -r1.123 src/sys/arch/amd64/amd64/locore.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 16:57:40 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-7]: trap.c src/sys/arch/i386/i386 [netbsd-7]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1391): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.78.4.1 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.272 -r1.272.4.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 16:58:10 UTC 2017 Modified Files: src/doc [netbsd-7]: CHANGES-7.2 Log Message: 1391 To generate a diff of this commit: cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-7.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-1] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 16:58:25 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-7-1]: trap.c src/sys/arch/i386/i386 [netbsd-7-1]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1391): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.78.10.1 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.272 -r1.272.10.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-1] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 16:58:41 UTC 2017 Modified Files: src/doc [netbsd-7-1]: CHANGES-7.1.1 Log Message: 1391 To generate a diff of this commit: cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-7.1.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-0] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 16:59:01 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-7-0]: trap.c src/sys/arch/i386/i386 [netbsd-7-0]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1391): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.78.6.1 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.272 -r1.272.6.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-0] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 16:59:46 UTC 2017 Modified Files: src/doc [netbsd-7-0]: CHANGES-7.0.3 Log Message: 1391 To generate a diff of this commit: cvs rdiff -u -r1.1.2.35 -r1.1.2.36 src/doc/CHANGES-7.0.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 17:18:25 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-6]: trap.c src/sys/arch/i386/i386 [netbsd-6]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1446): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.69.2.1 -r1.69.2.2 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.262 -r1.262.8.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 17:18:57 UTC 2017 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: 1446 To generate a diff of this commit: cvs rdiff -u -r1.1.2.278 -r1.1.2.279 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-1] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 17:19:32 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-6-1]: trap.c src/sys/arch/i386/i386 [netbsd-6-1]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1446): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.69.2.1 -r1.69.2.1.6.1 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.262 -r1.262.14.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-1] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 17:19:47 UTC 2017 Modified Files: src/doc [netbsd-6-1]: CHANGES-6.1.6 Log Message: 1446 To generate a diff of this commit: cvs rdiff -u -r1.1.2.86 -r1.1.2.87 src/doc/CHANGES-6.1.6 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 17:20:30 UTC 2017 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.7 Log Message: 1446 To generate a diff of this commit: cvs rdiff -u -r1.1.2.88 -r1.1.2.89 src/doc/CHANGES-6.0.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src/sys/arch
Module Name:src Committed By: snj Date: Sat Mar 25 17:20:07 UTC 2017 Modified Files: src/sys/arch/amd64/amd64 [netbsd-6-0]: trap.c src/sys/arch/i386/i386 [netbsd-6-0]: trap.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1446): sys/arch/amd64/amd64/trap.c: revision 1.94 sys/arch/i386/i386/trap.c: revision 1.287 Mmh, allow iret to be handled when an #SS fault (T_STKFLT) happens. Even if the sdm is far from being clear, it appears that iret can trigger an #SS fault if %ss points to a writable but non-present segment; in which case the kernel would panic, thinking the fault was internal to it. In particular, userland can create a broken segment in the ldt with USER_LDT, update its %ss with setcontext and trigger the panic. I don't think amd64 is affected since USER_LDT does not exist there, and the changes on tf_ss seem correct - but I'm still adding T_STKFLT for safety. To generate a diff of this commit: cvs rdiff -u -r1.69.2.1 -r1.69.2.1.4.1 src/sys/arch/amd64/amd64/trap.c cvs rdiff -u -r1.262 -r1.262.12.1 src/sys/arch/i386/i386/trap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/usb
Module Name:src Committed By: snj Date: Sat Mar 25 17:26:53 UTC 2017 Modified Files: src/sys/dev/usb [netbsd-6]: uplcom.c Log Message: Pull up following revision(s) (requested by bad in ticket #1444): sys/dev/usb/uplcom.c: revision 1.76 Don't pretend to do zero length IN control transfers as dwctwo(4) (correctly according to usb 2.0 specification 8.5.3) uses IN status stage when no (zero length) data stage. Instead read into a 1 byte array. My uplcom(4) now works on RPI. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.73.2.1 src/sys/dev/usb/uplcom.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/usb
Module Name:src Committed By: snj Date: Sat Mar 25 17:30:18 UTC 2017 Modified Files: src/sys/dev/usb [netbsd-6]: uplcom.c Log Message: Pull up following revision(s) (requested by bad in ticket #1445): sys/dev/usb/uplcom.c: revision 1.75 Null suspend/resume handler for uplcom(4). To generate a diff of this commit: cvs rdiff -u -r1.73.2.1 -r1.73.2.2 src/sys/dev/usb/uplcom.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/pci/ixgbe
Module Name:src Committed By: snj Date: Sat Mar 25 17:35:56 UTC 2017 Modified Files: src/sys/dev/pci/ixgbe [netbsd-6]: ixgbe.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #1439): sys/dev/pci/ixgbe/ixgbe.c: revision 1.60 via patch Use 64bit DMA tag. If not, a lot of bounce buffer is allocated. Fixes PR#49968 reported by Hauke. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.4.1 src/sys/dev/pci/ixgbe/ixgbe.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/bin/cat
Module Name:src Committed By: snj Date: Sat Mar 25 17:41:48 UTC 2017 Modified Files: src/bin/cat [netbsd-6]: cat.c Log Message: Pull up following revision(s) (requested by sevan in ticket #1387): bin/cat/cat.c: revision 1.57 When invoked with -se, print a '$' on blank lines Obtained from OpenBSD r1.13 of src/bin/cat/cat.c Closes PR bin/51250 Reviewed by Christos@ To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.47.20.1 src/bin/cat/cat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: jdolecek Date: Sat Mar 25 17:50:51 UTC 2017 Modified Files: src/sys/dev/pci: virtio.c Log Message: use ipl level specified by child when attaching interrupts, instead of always using IPL_NET To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/dev/pci/virtio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: snj Date: Sat Mar 25 17:58:44 UTC 2017 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: 1444, 1445, 1439, 1387 To generate a diff of this commit: cvs rdiff -u -r1.1.2.279 -r1.1.2.280 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: jdolecek Date: Sat Mar 25 18:02:06 UTC 2017 Modified Files: src/sys/dev/pci: if_vioif.c ld_virtio.c viomb.c viornd.c vioscsi.c virtio.c virtiovar.h Log Message: reorganize the attachment process for virtio child devices, so that more common code is shared among the drivers, and it's possible for the drivers to be correctly dynamically loaded; forbid direct access to struct virtio_softc from the child driver code To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/if_vioif.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pci/ld_virtio.c cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/viomb.c cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/viornd.c cvs rdiff -u -r1.11 -r1.12 src/sys/dev/pci/vioscsi.c cvs rdiff -u -r1.21 -r1.22 src/sys/dev/pci/virtio.c cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pci/virtiovar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: jdolecek Date: Sat Mar 25 18:09:44 UTC 2017 Modified Files: src/sys/dev/pci: vioscsi.c Log Message: cap adapt_openings to minimum of cmd_per_lun and qsize, so that we don't overpromise to the upper layer cap ntargets and nluns to 16 and 1024 as avoid spending excessive time probing for nonexistent devices; e.g. qemu defaults to 255/16383 causing the probe to take about a minute To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/pci/vioscsi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: jdolecek Date: Sat Mar 25 18:13:53 UTC 2017 Modified Files: src/sys/dev/pci: vioscsi.c Log Message: cap also adapt_nchannels to 1, we only attach one To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/pci/vioscsi.c 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: jdolecek Date: Sat Mar 25 18:15:31 UTC 2017 Modified Files: src/sys/dev/pci: vioscsi.c Added Files: src/sys/modules/vioscsi: Makefile vioscsi.ioconf Log Message: add support for loading vioscsi driver dynamically To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pci/vioscsi.c cvs rdiff -u -r0 -r1.1 src/sys/modules/vioscsi/Makefile \ src/sys/modules/vioscsi/vioscsi.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/hp300/dev
Module Name:src Committed By: tsutsui Date: Sat Mar 25 22:08:27 UTC 2017 Modified Files: src/sys/arch/hp300/dev: dnkbd.c Log Message: In RAWKBD mode, don't schedule autorepeat callout(9) after KEY_UP events. Now Apollo Domain keyboard works propery on Xorg server on my 425t. Changes are taken from sys/dev/hil/hilkbd.c. Note as OpenBSD says in the following commit log: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/arch/hp300/dev/Attic/dnkbd.c#rev1.18 >> Auto-repeat keys in WSKBD_RAW mode is not needed. >> WSKBD_RAW mode used in X, but X independently implements auto-repeat keys. these autorepeat code will be removed later, but I commit this fix first for the record. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/hp300/dev/dnkbd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/hp300/dev
Module Name:src Committed By: tsutsui Date: Sat Mar 25 22:09:45 UTC 2017 Modified Files: src/sys/arch/hp300/dev: ppi.c Log Message: Include for hz. Compile test only. (no HP-IB devices here) To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/sys/arch/hp300/dev/ppi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/games/fortune/datfiles
Module Name:src Committed By: dholland Date: Sat Mar 25 22:33:16 UTC 2017 Modified Files: src/games/fortune/datfiles: fortunes Log Message: add somethign To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/games/fortune/datfiles/fortunes Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/modules
Module Name:src Committed By: jdolecek Date: Sat Mar 25 23:17:07 UTC 2017 Modified Files: src/sys/modules: Makefile Log Message: add vioscsi to the list (disabled) To generate a diff of this commit: cvs rdiff -u -r1.189 -r1.190 src/sys/modules/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/notes/hp300
Module Name:src Committed By: tsutsui Date: Sat Mar 25 23:33:11 UTC 2017 Modified Files: src/distrib/notes/hp300: hardware Log Message: Sync description of "supported hardware" with reality. - internal video on 362 and 382 works (no palette support) - framebuffer 425e works (console text only) - serial console for 425e on bootloader works - Tigershark PersonalVRX was ported from OpenBSD (untested) - Apollo Domain keyboard and mouse work - ARCOFI audio on 425e works - internal SCSI floppy is recognized as usual removable disk by MI SCSI To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/distrib/notes/hp300/hardware Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: christos Date: Sat Mar 25 23:58:35 UTC 2017 Modified Files: src/sys/dev/pci: vioscsi.c Log Message: fix printf format. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/pci/vioscsi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.