CVS commit: src/sys/arch/powerpc/ibm4xx

2011-02-06 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Feb  7 07:02:24 UTC 2011

Modified Files:
src/sys/arch/powerpc/ibm4xx: pmap.c

Log Message:
Use EVCNT_ATTACH_STATIC


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/powerpc/ibm4xx/pmap.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/powerpc/booke

2011-02-06 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Feb  7 06:41:08 UTC 2011

Modified Files:
src/sys/arch/powerpc/booke: trap.c

Log Message:
Fix inverted test.  cpu_setmcontext should return success. :)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/powerpc/booke/trap.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/powerpc/include

2011-02-06 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Feb  7 06:37:01 UTC 2011

Modified Files:
src/sys/arch/powerpc/include: asm.h

Log Message:
binutils is automagically doing securecrt so make sure plt calls are emitted
with the secureplt magic as well.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/powerpc/include/asm.h

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



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

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Mon Feb  7 04:05:49 UTC 2011

Modified Files:
src/sys/arch/i386/conf: GENERIC

Log Message:
options SPLASHSCREEN_PROGRESS is no more


To generate a diff of this commit:
cvs rdiff -u -r1.1009 -r1.1010 src/sys/arch/i386/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

2011-02-06 Thread Chuck Silvers
Module Name:src
Committed By:   chs
Date:   Mon Feb  7 03:54:46 UTC 2011

Modified Files:
src/sys/arch/amd64/amd64: netbsd32_machdep.c
src/sys/arch/amd64/include: segments.h
src/sys/compat/linux32/arch/amd64: linux32_machdep.c

Log Message:
move macros for validating fs/gs to segments.h and use them
in the linux32 code as well.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/sys/arch/amd64/amd64/netbsd32_machdep.c
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/amd64/include/segments.h
cvs rdiff -u -r1.27 -r1.28 \
src/sys/compat/linux32/arch/amd64/linux32_machdep.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/pud

2011-02-06 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Mon Feb  7 03:14:28 UTC 2011

Modified Files:
src/sys/dev/pud: pud.c

Log Message:
Third argument of MODULE() is typically a string literal.
Moreover it (at least sometimes) didn't build otherwise.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pud/pud.c

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



CVS commit: src/sys/fs/hfs

2011-02-06 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Mon Feb  7 03:03:16 UTC 2011

Modified Files:
src/sys/fs/hfs: hfs_vnops.c

Log Message:
Make this build.

Also, the previous commit contanined "unintended" functional changes I'm
going to ignore.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/fs/hfs/hfs_vnops.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/splash

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Mon Feb  7 02:57:49 UTC 2011

Modified Files:
src/sys/dev/splash: splash.c

Log Message:
%d -> %zd for size_t printf format


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/splash/splash.c

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



CVS commit: src/sys/fs/hfs

2011-02-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Feb  7 02:06:21 UTC 2011

Modified Files:
src/sys/fs/hfs: hfs_vnops.c

Log Message:
KNF, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/fs/hfs/hfs_vnops.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/fwctl

2011-02-06 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Feb  7 01:37:12 UTC 2011

Modified Files:
src/usr.sbin/fwctl: fwdv.c

Log Message:
Fix typo, from Henning Petersen in PR 44513.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/fwctl/fwdv.c

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



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

2011-02-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Feb  7 00:26:27 UTC 2011

Modified Files:
src/usr.bin/xlint/lint1: mkops

Log Message:
provide  __arraycount() if not there.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/xlint/lint1/mkops

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



CVS commit: src/sys

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Feb  6 23:25:18 UTC 2011

Modified Files:
src/sys/arch/amd64/conf: GENERIC
src/sys/arch/evbarm/conf: MPCSA_GENERIC
src/sys/arch/evbppc/conf: VIRTEX_DFC
src/sys/arch/evbppc/virtex/dev: tft.c tftvar.h
src/sys/arch/x86/x86: x86_machdep.c
src/sys/dev/pci: radeonfb.c radeonfbvar.h
src/sys/dev/splash: files.splash splash.c splash.h
src/sys/dev/wsfb: genfb.c
src/sys/kern: subr_autoconf.c
Removed Files:
src/sys/dev/splash/images: bikeshed.h netbsd-small.h netbsd.h

Log Message:
- add support for using compressed images as splash images
- retire SPLASHSCREEN_PROGRESS and SPLASHSCREEN_IMAGE options


To generate a diff of this commit:
cvs rdiff -u -r1.300 -r1.301 src/sys/arch/amd64/conf/GENERIC
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/evbarm/conf/MPCSA_GENERIC
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbppc/conf/VIRTEX_DFC
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbppc/virtex/dev/tft.c \
src/sys/arch/evbppc/virtex/dev/tftvar.h
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/x86/x86/x86_machdep.c
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/pci/radeonfb.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/radeonfbvar.h
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/splash/files.splash
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/splash/splash.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/splash/splash.h
cvs rdiff -u -r1.1 -r0 src/sys/dev/splash/images/bikeshed.h \
src/sys/dev/splash/images/netbsd-small.h \
src/sys/dev/splash/images/netbsd.h
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/wsfb/genfb.c
cvs rdiff -u -r1.212 -r1.213 src/sys/kern/subr_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/i386/stand

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Feb  6 23:16:05 UTC 2011

Modified Files:
src/sys/arch/i386/stand/boot: boot2.c version
src/sys/arch/i386/stand/lib: bootmod.h exec.c libi386.h

Log Message:
add support for passing image files to the kernel with the 'splash' keyword:

 vesa on;splash /netbsd.jpg;boot -z


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/i386/stand/boot/boot2.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/i386/stand/boot/version
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/i386/stand/lib/bootmod.h
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/i386/stand/lib/exec.c
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/i386/stand/lib/libi386.h

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



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

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Feb  6 23:14:04 UTC 2011

Modified Files:
src/sys/arch/x86/include: bootinfo.h

Log Message:
add BI_MODULE_IMAGE boot module type


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/x86/include/bootinfo.h

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



CVS commit: src/sys

2011-02-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Feb  6 23:13:04 UTC 2011

Modified Files:
src/sys/conf: files
Added Files:
src/sys/dev/stbi: files.stbi stb_image.c stbi.h stbiconfig.h

Log Message:
add a public domain image decoder


To generate a diff of this commit:
cvs rdiff -u -r1.996 -r1.997 src/sys/conf/files
cvs rdiff -u -r0 -r1.1 src/sys/dev/stbi/files.stbi \
src/sys/dev/stbi/stb_image.c src/sys/dev/stbi/stbi.h \
src/sys/dev/stbi/stbiconfig.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/usb

2011-02-06 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sun Feb  6 23:11:54 UTC 2011

Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h

Log Message:
Regen for MPMan.


To generate a diff of this commit:
cvs rdiff -u -r1.570 -r1.571 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.571 -r1.572 src/sys/dev/usb/usbdevs_data.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/usb

2011-02-06 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sun Feb  6 23:11:11 UTC 2011

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
Add MPMan to the vendor list.


To generate a diff of this commit:
cvs rdiff -u -r1.577 -r1.578 src/sys/dev/usb/usbdevs

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



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

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 23:03:02 UTC 2011

Modified Files:
src/usr.bin/xlint/lint1: mkops

Log Message:
don't use __arraycount in tools


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/xlint/lint1/mkops

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



CVS commit: [bouyer-quota2] src/usr.sbin/edquota

2011-02-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Feb  6 22:18:38 UTC 2011

Modified Files:
src/usr.sbin/edquota [bouyer-quota2]: edquota.8 edquota.c

Log Message:
Fix usage().
Document new behavior and options.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.12.50.1 src/usr.sbin/edquota/edquota.8
cvs rdiff -u -r1.29.16.8 -r1.29.16.9 src/usr.sbin/edquota/edquota.c

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



CVS commit: src/sbin/wsconsctl

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 21:38:10 UTC 2011

Modified Files:
src/sbin/wsconsctl: util.c

Log Message:
update macro names to match new ones
(i don't know why they changed, just fixing the build)


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sbin/wsconsctl/util.c

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



CVS commit: src/lib/librumpuser

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 21:05:53 UTC 2011

Modified Files:
src/lib/librumpuser: rumpuser.c

Log Message:
Support query of the partition size in case underlying device is
a wedge.  This still lacks the proplibistic query of the sector
size and just assumes 512.  It's good that we make asking a file's
size as simple as requiring one stat(), one open() and three (3)
different ioctls plus some proplist mumbojumbo.  I'm surprised it's
available at all by means other than #wish.

code mostly from Taylor R Campbell, rant from me.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/librumpuser/rumpuser.c

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



CVS commit: src/share/mk

2011-02-06 Thread Julio Merino
Module Name:src
Committed By:   jmmv
Date:   Sun Feb  6 19:38:48 UTC 2011

Modified Files:
src/share/mk: bsd.test.mk

Log Message:
Fix the 'test' target to force atf to use its own files from DESTDIR instead
of the installed ones.  This is achieved by overriding all ATF_* environment
variables and making them point inside DESTDIR.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/share/mk/bsd.test.mk

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



CVS commit: src/external/bsd/atf/lib/libatf-c++

2011-02-06 Thread Julio Merino
Module Name:src
Committed By:   jmmv
Date:   Sun Feb  6 19:34:20 UTC 2011

Modified Files:
src/external/bsd/atf/lib/libatf-c++: Makefile

Log Message:
Add missing DPADD on libatf-c.a.  Spotted by Garrett Cooper.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/atf/lib/libatf-c++/Makefile

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



CVS commit: [bouyer-quota2] src/usr.sbin/edquota

2011-02-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Feb  6 19:24:20 UTC 2011

Modified Files:
src/usr.sbin/edquota [bouyer-quota2]: edquota.c

Log Message:
Change format to print the quota version for each filesystem in editor.
For version 1, have '-d' edit the filesystem's grace times.


To generate a diff of this commit:
cvs rdiff -u -r1.29.16.7 -r1.29.16.8 src/usr.sbin/edquota/edquota.c

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



CVS commit: src/sys/netinet6

2011-02-06 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Sun Feb  6 19:12:55 UTC 2011

Modified Files:
src/sys/netinet6: in6.c

Log Message:
Delete unnecessary casts to void *. No functional change intended.  Same
assembly generated before and after this change.


To generate a diff of this commit:
cvs rdiff -u -r1.156 -r1.157 src/sys/netinet6/in6.c

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



CVS commit: src/libexec/httpd

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 19:00:54 UTC 2011

Modified Files:
src/libexec/httpd: daemon-bozo.c

Log Message:
Call daemon() later to make sure there is a listening socket by
the time the foreground process exits.

discussed with mrg.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/libexec/httpd/daemon-bozo.c

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



CVS commit: src/sys/netbt

2011-02-06 Thread Iain Hibbert
Module Name:src
Committed By:   plunky
Date:   Sun Feb  6 18:51:00 UTC 2011

Modified Files:
src/sys/netbt: l2cap.h l2cap_signal.c

Log Message:
respond to L2CAP Information requests


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/netbt/l2cap.h
cvs rdiff -u -r1.11 -r1.12 src/sys/netbt/l2cap_signal.c

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



CVS commit: src

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 18:47:56 UTC 2011

Modified Files:
src/distrib/sets/lists/tests: mi
src/etc/mtree: NetBSD.dist.tests

Log Message:
librumphijack build infra


To generate a diff of this commit:
cvs rdiff -u -r1.242 -r1.243 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.24 -r1.25 src/etc/mtree/NetBSD.dist.tests

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



CVS commit: src/tests/lib

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 18:44:30 UTC 2011

Modified Files:
src/tests/lib: Makefile
Added Files:
src/tests/lib/librumphijack: Atffile Makefile h_netget.c index.html
netstat.expout t_tcpip.sh

Log Message:
Add a simple test for the purpose of making sure rumphijack works
on -current in addition to 5.x.  The test serves a simple index.html
on a hijacked bozohttpd and checks the file can be retrieved.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/tests/lib/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/librumphijack/Atffile \
src/tests/lib/librumphijack/Makefile \
src/tests/lib/librumphijack/h_netget.c \
src/tests/lib/librumphijack/index.html \
src/tests/lib/librumphijack/netstat.expout \
src/tests/lib/librumphijack/t_tcpip.sh

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/conf

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 18:40:55 UTC 2011

Modified Files:
src/sys/arch/hp300/conf: GENERIC

Log Message:
Switch NetBSD/hp300 to wscons with rasops. Simply ported from OpenBSD/hp300.

- Only A1416 Kathmandu (topcat) framebuffer on 425t is tested, but
  all other variants (TigerShark, Hyperion, DaVinci, GatorBox, Renaissance)
  should also work if they are working on OpenBSD/hp300.
- sti(4) and SGC bus support are not pulled because I don't have 425e
  and I can't confirm that 362 and 382 actually have SGC bus.
  (I'll commit a DIO based dumb driver for 362 and 382 framebuffers later)
- Xorg server with wsfb driver will also be integrated soon
  once after keycode with NoSymbol problem is addressed.
  (We have to re-think what code should be used on WSDISPLAY_COMPAT_RAWKBD)
- MI HIL keyboard and mouse drivers are working fine though
  cngetc via hilkbd has some problem (still we can input commands).
- No old HP-UX like HIL ioctl compatibility (we removed COMPAT_HPUX anyway).
  grfinfo(8) and hilinfo(8) will be removed shortly.

Demonstrated on NetBSD booth at Open Source Conference 2011 Kagawa.


To generate a diff of this commit:
cvs rdiff -u -r1.160 -r1.161 src/sys/arch/hp300/conf/GENERIC

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



CVS commit: src/doc

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 18:38:01 UTC 2011

Modified Files:
src/doc: CHANGES

Log Message:
Note NetBSD/hp300 wscons.


To generate a diff of this commit:
cvs rdiff -u -r1.1500 -r1.1501 src/doc/CHANGES

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



CVS commit: src/sys/dev/hil

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 18:34:52 UTC 2011

Added Files:
src/sys/dev/hil: hildevs_data.h

Log Message:
Initially generate hildevs_data.h from hildevs.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/dev/hil/hildevs_data.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/hil

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 18:32:56 UTC 2011

Modified Files:
src/sys/dev/hil: hildevs

Log Message:
Add NetBSD's RCS Id.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hil/hildevs

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



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

2011-02-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Feb  6 18:28:22 UTC 2011

Modified Files:
src/usr.bin/xlint/lint1: mkops

Log Message:
use unsigned char instead of uint8_t, easier for portability


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.bin/xlint/lint1/mkops

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



CVS commit: src

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 18:26:54 UTC 2011

Modified Files:
src/distrib/hp300/miniroot: dot.profile install.md
src/distrib/hp300/ramdisk: dot.profile
src/etc/etc.hp300: MAKEDEV.conf ttys
src/sys/arch/hp300/conf: INSTALL files.hp300 majors.hp300
src/sys/arch/hp300/dev: maskbits.h
src/sys/arch/hp300/hp300: autoconf.c machdep.c
src/sys/arch/hp300/include: autoconf.h
src/sys/dev/wscons: wsconsio.h
Added Files:
src/sys/arch/hp300/dev: diofb.c diofb_mono.c diofbreg.h diofbvar.h
dvbox.c dvboxreg.h gbox.c gboxreg.h hil_intio.c hyper.c hyperreg.h
rbox.c rboxreg.h topcat.c topcatreg.h tvrx.c
src/sys/arch/hp300/include: hil_machdep.h
src/sys/dev/hil: Makefile devlist2h.awk files.hil hil.c hildevs
hildevs.h hilid.c hilkbd.c hilkbdmap.c hilkbdmap.h hilms.c hilreg.h
hilvar.h
Removed Files:
src/sys/arch/hp300/dev: grf.c grf_dv.c grf_dvreg.h grf_gb.c grf_gbreg.h
grf_hy.c grf_hyreg.h grf_rb.c grf_rbreg.h grf_subr.c grf_tc.c
grf_tcreg.h grfioctl.h grfreg.h grfvar.h hil.c hil_keymaps.c
hilioctl.h hilreg.h hilvar.h ite.c ite_subr.c itereg.h itevar.h
kbdmap.h

Log Message:
Switch NetBSD/hp300 to wscons with rasops. Simply ported from OpenBSD/hp300.

- Only A1416 Kathmandu (topcat) framebuffer on 425t is tested, but
  all other variants (TigerShark, Hyperion, DaVinci, GatorBox, Renaissance)
  should also work if they are working on OpenBSD/hp300.
- sti(4) and SGC bus support are not pulled because I don't have 425e
  and I can't confirm that 362 and 382 actually have SGC bus.
  (I'll commit a DIO based dumb driver for 362 and 382 framebuffers later)
- Xorg server with wsfb driver will also be integrated soon
  once after keycode with NoSymbol problem is addressed.
  (We have to re-think what code should be used on WSDISPLAY_COMPAT_RAWKBD)
- MI HIL keyboard and mouse drivers are working fine though
  cngetc via hilkbd has some problem (still we can input commands).
- No old HP-UX like HIL ioctl compatibility (we removed COMPAT_HPUX anyway).
  grfinfo(8) and hilinfo(8) will be removed shortly.

Demonstrated on NetBSD booth at Open Source Conference 2011 Kagawa.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/distrib/hp300/miniroot/dot.profile
cvs rdiff -u -r1.14 -r1.15 src/distrib/hp300/miniroot/install.md
cvs rdiff -u -r1.5 -r1.6 src/distrib/hp300/ramdisk/dot.profile
cvs rdiff -u -r1.11 -r1.12 src/etc/etc.hp300/MAKEDEV.conf
cvs rdiff -u -r1.14 -r1.15 src/etc/etc.hp300/ttys
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/hp300/conf/INSTALL
cvs rdiff -u -r1.78 -r1.79 src/sys/arch/hp300/conf/files.hp300
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/hp300/conf/majors.hp300
cvs rdiff -u -r0 -r1.1 src/sys/arch/hp300/dev/diofb.c \
src/sys/arch/hp300/dev/diofb_mono.c src/sys/arch/hp300/dev/diofbreg.h \
src/sys/arch/hp300/dev/diofbvar.h src/sys/arch/hp300/dev/dvbox.c \
src/sys/arch/hp300/dev/dvboxreg.h src/sys/arch/hp300/dev/gbox.c \
src/sys/arch/hp300/dev/gboxreg.h src/sys/arch/hp300/dev/hil_intio.c \
src/sys/arch/hp300/dev/hyper.c src/sys/arch/hp300/dev/hyperreg.h \
src/sys/arch/hp300/dev/rbox.c src/sys/arch/hp300/dev/rboxreg.h \
src/sys/arch/hp300/dev/topcat.c src/sys/arch/hp300/dev/topcatreg.h \
src/sys/arch/hp300/dev/tvrx.c
cvs rdiff -u -r1.66 -r0 src/sys/arch/hp300/dev/grf.c
cvs rdiff -u -r1.40 -r0 src/sys/arch/hp300/dev/grf_dv.c
cvs rdiff -u -r1.7 -r0 src/sys/arch/hp300/dev/grf_dvreg.h \
src/sys/arch/hp300/dev/itereg.h
cvs rdiff -u -r1.39 -r0 src/sys/arch/hp300/dev/grf_gb.c
cvs rdiff -u -r1.6 -r0 src/sys/arch/hp300/dev/grf_gbreg.h
cvs rdiff -u -r1.37 -r0 src/sys/arch/hp300/dev/grf_hy.c
cvs rdiff -u -r1.4 -r0 src/sys/arch/hp300/dev/grf_hyreg.h
cvs rdiff -u -r1.41 -r0 src/sys/arch/hp300/dev/grf_rb.c
cvs rdiff -u -r1.8 -r0 src/sys/arch/hp300/dev/grf_rbreg.h \
src/sys/arch/hp300/dev/grf_tcreg.h
cvs rdiff -u -r1.17 -r0 src/sys/arch/hp300/dev/grf_subr.c
cvs rdiff -u -r1.42 -r0 src/sys/arch/hp300/dev/grf_tc.c
cvs rdiff -u -r1.9 -r0 src/sys/arch/hp300/dev/grfioctl.h \
src/sys/arch/hp300/dev/hilioctl.h src/sys/arch/hp300/dev/hilreg.h
cvs rdiff -u -r1.5 -r0 src/sys/arch/hp300/dev/grfreg.h
cvs rdiff -u -r1.24 -r0 src/sys/arch/hp300/dev/grfvar.h
cvs rdiff -u -r1.83 -r0 src/sys/arch/hp300/dev/hil.c \
src/sys/arch/hp300/dev/ite.c
cvs rdiff -u -r1.14 -r0 src/sys/arch/hp300/dev/hil_keymaps.c \
src/sys/arch/hp300/dev/ite_subr.c
cvs rdiff -u -r1.25 -r0 src/sys/arch/hp300/dev/hilvar.h
cvs rdiff -u -r1.29 -r0 src/sys/arch/hp300/dev/itevar.h
cvs rdiff -u -r1.12 -r0 src/sys/arch/hp300/dev/kbdmap.h
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/hp300/dev/maskbits.h
cvs rdiff -u -r1.92 -r1.93 src/sys/arch/hp300/hp300/autoconf.c
cvs rdiff -u -r1.215 -r1.216 src/sys/arch/hp300/hp300/machdep.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/hp300/include/autoconf.h
cvs rdiff -u -r0 -r1

CVS commit: src/lib/librumpuser

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 18:25:49 UTC 2011

Modified Files:
src/lib/librumpuser: rumpuser_sp.c

Log Message:
Fix a race condition in the worker thread caching logic: if we got
two or more syscall requests before any worker thread ran, we might
not have enough threads to handle the requests.  In some scenarios
this could lead to a deadlock.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/lib/librumpuser/rumpuser_sp.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

2011-02-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Feb  6 16:23:01 UTC 2011

Modified Files:
src/sys/dev/pci: if_wm.c

Log Message:
wm_gmii_reset(): restore generic reset delays to what they were before
rev 1.186. This makes the following hardware find its PHY again, and I can't
see how these larger delays could be a problem for other hardware:

wm0 at pci6 dev 7 function 0: Intel i82541GI 1000BASE-T Ethernet, rev. 5
wm0: interrupting at ioapic2 pin 0, event channel 5
wm0: 32-bit 66MHz PCI bus
wm0: 65536 word (16 address bits) SPI EEPROM
wm0: Ethernet address 00:13:72:54:ee:13
igphy0 at wm0 phy 1: Intel IGP01E1000 Gigabit PHY, rev. 0
igphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 
1000baseT-FDX, auto


To generate a diff of this commit:
cvs rdiff -u -r1.218 -r1.219 src/sys/dev/pci/if_wm.c

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



CVS commit: src/lib/librumphijack

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 15:48:20 UTC 2011

Modified Files:
src/lib/librumphijack: hijack.c

Log Message:
make it possible to specify client connection retry model in
RUMPHIJACK_RETRY


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/lib/librumphijack/hijack.c

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



CVS commit: src/lib/librumpclient

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 15:43:20 UTC 2011

Modified Files:
src/lib/librumpclient: rumpclient.c rumpclient.h

Log Message:
Add another connection retry model which simply does exit(1) if
the connection is severed.
(mostly for tests so that everything can be hooked to rump_server's exit)


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/lib/librumpclient/rumpclient.c
cvs rdiff -u -r1.3 -r1.4 src/lib/librumpclient/rumpclient.h

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



CVS commit: src/lib/librumpclient

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 15:41:38 UTC 2011

Modified Files:
src/lib/librumpclient: rumpclient.c

Log Message:
Make sure to close parent's server communication socket after fork.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/lib/librumpclient/rumpclient.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/putter

2011-02-06 Thread Adam Hamsik
Module Name:src
Committed By:   haad
Date:   Sun Feb  6 14:29:25 UTC 2011

Modified Files:
src/sys/dev/putter: putter.c

Log Message:
Revert my fix.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/putter/putter.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/hp300

2011-02-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Feb  6 14:26:10 UTC 2011

Modified Files:
src/sys/arch/hp300/hp300: trap.c

Log Message:
Remove trailing TABs.


To generate a diff of this commit:
cvs rdiff -u -r1.146 -r1.147 src/sys/arch/hp300/hp300/trap.c

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



CVS commit: src/lib/librumphijack

2011-02-06 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Feb  6 13:05:20 UTC 2011

Modified Files:
src/lib/librumphijack: hijack.c

Log Message:
be kinder about kqueue()
(but paradoxically omit the surprise)


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/lib/librumphijack/hijack.c

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



CVS commit: src/bin/cp

2011-02-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Feb  6 12:49:33 UTC 2011

Modified Files:
src/bin/cp: cp.1

Log Message:
Put -l compatibility note in STANDARDS section.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/bin/cp/cp.1

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



CVS commit: src/bin/cp

2011-02-06 Thread D'Arcy J.M. Cain
Module Name:src
Committed By:   darcy
Date:   Sun Feb  6 12:37:49 UTC 2011

Modified Files:
src/bin/cp: cp.1 cp.c extern.h utils.c

Log Message:
Add -l option to copy a tree as links.
Non-standard option similar to Gnutools cp(1)
Approved by core.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/bin/cp/cp.1
cvs rdiff -u -r1.54 -r1.55 src/bin/cp/cp.c
cvs rdiff -u -r1.15 -r1.16 src/bin/cp/extern.h
cvs rdiff -u -r1.38 -r1.39 src/bin/cp/utils.c

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



CVS commit: src/sbin/fsck_ffs

2011-02-06 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sun Feb  6 12:02:59 UTC 2011

Modified Files:
src/sbin/fsck_ffs: main.c

Log Message:
Do Skip device checks, which ends up parsing fstab, when working on a
filesystem image with -F option set.


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/sbin/fsck_ffs/main.c

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