From owner-svn-src-user@FreeBSD.ORG Sun Dec 21 04:40:03 2008 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40B2E1065673; Sun, 21 Dec 2008 04:40:03 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2FDC18FC08; Sun, 21 Dec 2008 04:40:03 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBL4e3C1023692; Sun, 21 Dec 2008 04:40:03 GMT (envelope-from nyan@svn.freebsd.org) Received: (from nyan@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBL4e3ED023691; Sun, 21 Dec 2008 04:40:03 GMT (envelope-from nyan@svn.freebsd.org) Message-Id: <200812210440.mBL4e3ED023691@svn.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 21 Dec 2008 04:40:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186370 - user/nyan/pc98/sys/boot/pc98/btx/btxldr X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Dec 2008 04:40:03 -0000 Author: nyan Date: Sun Dec 21 04:40:02 2008 New Revision: 186370 URL: http://svn.freebsd.org/changeset/base/186370 Log: MFi386: 185779:185781 Respect RBX_MUTE flag from boot2. Modified: user/nyan/pc98/sys/boot/pc98/btx/btxldr/btxldr.S Modified: user/nyan/pc98/sys/boot/pc98/btx/btxldr/btxldr.S ============================================================================== --- user/nyan/pc98/sys/boot/pc98/btx/btxldr/btxldr.S Sun Dec 21 04:34:20 2008 (r186369) +++ user/nyan/pc98/sys/boot/pc98/btx/btxldr/btxldr.S Sun Dec 21 04:40:02 2008 (r186370) @@ -15,6 +15,9 @@ * $FreeBSD$ */ +#define RBX_MUTE 0x10 /* -m */ +#define OPT_SET(opt) (1 << (opt)) + /* * Prototype BTX loader program, written in a couple of hours. The * real thing should probably be more flexible, and in C. @@ -64,6 +67,8 @@ */ start: cld # String ops inc cli + testl $OPT_SET(RBX_MUTE), 4(%esp) # Check first argument + setnz muted # for RBX_MUTE, set flag gdcwait.1: inb $0x60,%al testb $0x04,%al jz gdcwait.1 @@ -309,7 +314,9 @@ putstr: lodsb # Load char /* * Output character AL to the console. */ -putchr: pusha # Save +putchr: testb $1,muted # Check muted + jnz putchr.5 # do a nop + pusha # Save xorl %ecx,%ecx # Zero for loops movb $SCR_MAT,%ah # Mode/attribute movl $BDA_POS,%ebx # BDA pointer @@ -353,7 +360,7 @@ gdcwait.3: inb $0x60,%al movb %dh,%al outb %al,$0x60 popa # Restore - ret # To caller +putchr.5: ret # To caller /* * Convert EAX, AX, or AL to hex, saving the result to [EDI]. */ @@ -418,6 +425,12 @@ m_segs: .asciz "text segment: offset=" .asciz " memsz=\0\n" m_done: .asciz "Loading complete\n" #endif + +/* + * Flags + */ +muted: .byte 0x0 + /* * Uninitialized data area. */ From owner-svn-src-user@FreeBSD.ORG Mon Dec 22 20:31:37 2008 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D48471065674; Mon, 22 Dec 2008 20:31:37 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BDA588FC21; Mon, 22 Dec 2008 20:31:37 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBMKVbid070222; Mon, 22 Dec 2008 20:31:37 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBMKVa98070192; Mon, 22 Dec 2008 20:31:36 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200812222031.mBMKVa98070192@svn.freebsd.org> From: Andrew Thompson Date: Mon, 22 Dec 2008 20:31:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186399 - in user/thompsa/vaptq: . contrib/bind9 contrib/binutils/bfd contrib/binutils/gas/config contrib/binutils/ld/emulparams contrib/bsnmp/snmp_mibII contrib/cpio contrib/gdtoa cont... X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Dec 2008 20:31:37 -0000 Author: thompsa Date: Mon Dec 22 20:31:35 2008 New Revision: 186399 URL: http://svn.freebsd.org/changeset/base/186399 Log: MFH r185731:186398 Added: user/thompsa/vaptq/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh - copied unchanged from r186398, head/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh user/thompsa/vaptq/etc/devd/ - copied from r186398, head/etc/devd/ user/thompsa/vaptq/gnu/usr.bin/binutils/as/mips-freebsd/ - copied from r186398, head/gnu/usr.bin/binutils/as/mips-freebsd/ user/thompsa/vaptq/gnu/usr.bin/binutils/ld/Makefile.mips - copied unchanged from r186398, head/gnu/usr.bin/binutils/ld/Makefile.mips user/thompsa/vaptq/gnu/usr.bin/binutils/ld/elf32btsmip_fbsd.sh - copied unchanged from r186398, head/gnu/usr.bin/binutils/ld/elf32btsmip_fbsd.sh user/thompsa/vaptq/gnu/usr.bin/binutils/ld/elf32ltsmip_fbsd.sh - copied unchanged from r186398, head/gnu/usr.bin/binutils/ld/elf32ltsmip_fbsd.sh user/thompsa/vaptq/gnu/usr.bin/binutils/ld/elf64btsmip_fbsd.sh - copied unchanged from r186398, head/gnu/usr.bin/binutils/ld/elf64btsmip_fbsd.sh user/thompsa/vaptq/gnu/usr.bin/binutils/ld/elf64ltsmip_fbsd.sh - copied unchanged from r186398, head/gnu/usr.bin/binutils/ld/elf64ltsmip_fbsd.sh user/thompsa/vaptq/gnu/usr.bin/binutils/libbfd/Makefile.mips - copied unchanged from r186398, head/gnu/usr.bin/binutils/libbfd/Makefile.mips user/thompsa/vaptq/gnu/usr.bin/binutils/libopcodes/Makefile.mips - copied unchanged from r186398, head/gnu/usr.bin/binutils/libopcodes/Makefile.mips user/thompsa/vaptq/lib/libc/include/isc/platform.h - copied unchanged from r186398, head/lib/libc/include/isc/platform.h user/thompsa/vaptq/share/man/man4/man4.powerpc/pmu.4 - copied unchanged from r186398, head/share/man/man4/man4.powerpc/pmu.4 user/thompsa/vaptq/share/man/man9/VOP_VPTOCNP.9 - copied unchanged from r186398, head/share/man/man9/VOP_VPTOCNP.9 user/thompsa/vaptq/sys/arm/conf/CAMBRIA - copied unchanged from r186398, head/sys/arm/conf/CAMBRIA user/thompsa/vaptq/sys/arm/conf/CAMBRIA.hints - copied unchanged from r186398, head/sys/arm/conf/CAMBRIA.hints user/thompsa/vaptq/sys/arm/xscale/ixp425/cambria_fled.c - copied unchanged from r186398, head/sys/arm/xscale/ixp425/cambria_fled.c user/thompsa/vaptq/sys/arm/xscale/ixp425/cambria_led.c - copied unchanged from r186398, head/sys/arm/xscale/ixp425/cambria_led.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp435_ehci.c - copied unchanged from r186398, head/sys/arm/xscale/ixp425/ixp435_ehci.c user/thompsa/vaptq/sys/arm/xscale/ixp425/std.ixp435 - copied unchanged from r186398, head/sys/arm/xscale/ixp425/std.ixp435 user/thompsa/vaptq/sys/dev/ofw/ofw_if.m - copied unchanged from r186398, head/sys/dev/ofw/ofw_if.m user/thompsa/vaptq/sys/dev/ofw/ofw_standard.c - copied unchanged from r186398, head/sys/dev/ofw/ofw_standard.c user/thompsa/vaptq/sys/dev/ofw/ofwvar.h - copied unchanged from r186398, head/sys/dev/ofw/ofwvar.h user/thompsa/vaptq/sys/dev/usb/ehci_ddb.c - copied unchanged from r186398, head/sys/dev/usb/ehci_ddb.c user/thompsa/vaptq/sys/kern/kern_vimage.c - copied unchanged from r186398, head/sys/kern/kern_vimage.c user/thompsa/vaptq/sys/net/if_llatbl.c - copied unchanged from r186398, head/sys/net/if_llatbl.c user/thompsa/vaptq/sys/net/if_llatbl.h - copied unchanged from r186398, head/sys/net/if_llatbl.h user/thompsa/vaptq/sys/powerpc/mpc85xx/mpc85xx.h - copied unchanged from r186398, head/sys/powerpc/mpc85xx/mpc85xx.h user/thompsa/vaptq/tools/tools/ath/Makefile.inc - copied unchanged from r186398, head/tools/tools/ath/Makefile.inc user/thompsa/vaptq/tools/tools/ath/athkey/ - copied from r186398, head/tools/tools/ath/athkey/ user/thompsa/vaptq/tools/tools/ath/athpow/ - copied from r186398, head/tools/tools/ath/athpow/ user/thompsa/vaptq/tools/tools/ath/athprom/ - copied from r186398, head/tools/tools/ath/athprom/ user/thompsa/vaptq/tools/tools/ath/athregs/ - copied from r186398, head/tools/tools/ath/athregs/ user/thompsa/vaptq/tools/tools/ath/common/ - copied from r186398, head/tools/tools/ath/common/ user/thompsa/vaptq/tools/tools/tionxcl/ - copied from r186398, head/tools/tools/tionxcl/ user/thompsa/vaptq/usr.sbin/makefs/ - copied from r186398, head/usr.sbin/makefs/ Deleted: user/thompsa/vaptq/sys/modules/ath_rate_amrr/ user/thompsa/vaptq/sys/modules/ath_rate_onoe/ user/thompsa/vaptq/sys/modules/ath_rate_sample/ user/thompsa/vaptq/sys/sparc64/include/ofw_bus.h user/thompsa/vaptq/sys/sparc64/sparc64/ofw_bus.c user/thompsa/vaptq/sys/sun4v/include/ofw_bus.h user/thompsa/vaptq/usr.sbin/sysinstall/tape.c Modified: user/thompsa/vaptq/ (props changed) user/thompsa/vaptq/UPDATING user/thompsa/vaptq/contrib/bind9/ (props changed) user/thompsa/vaptq/contrib/binutils/bfd/config.bfd user/thompsa/vaptq/contrib/binutils/gas/config/tc-mips.c user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII.c user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII_route.c user/thompsa/vaptq/contrib/cpio/ (props changed) user/thompsa/vaptq/contrib/gdtoa/ (props changed) user/thompsa/vaptq/contrib/ipfilter/ipsend/44arp.c user/thompsa/vaptq/contrib/ncurses/ (props changed) user/thompsa/vaptq/contrib/netcat/ (props changed) user/thompsa/vaptq/contrib/netcat/FREEBSD-vendor user/thompsa/vaptq/contrib/netcat/atomicio.c (props changed) user/thompsa/vaptq/contrib/netcat/atomicio.h (props changed) user/thompsa/vaptq/contrib/netcat/nc.1 user/thompsa/vaptq/contrib/netcat/netcat.c user/thompsa/vaptq/contrib/netcat/socks.c (props changed) user/thompsa/vaptq/contrib/ntp/ (props changed) user/thompsa/vaptq/contrib/openbsm/ (props changed) user/thompsa/vaptq/contrib/openpam/ (props changed) user/thompsa/vaptq/contrib/pf/ (props changed) user/thompsa/vaptq/contrib/sendmail/ (props changed) user/thompsa/vaptq/contrib/top/ (props changed) user/thompsa/vaptq/crypto/openssh/ (props changed) user/thompsa/vaptq/crypto/openssl/ (props changed) user/thompsa/vaptq/etc/Makefile user/thompsa/vaptq/etc/devd.conf user/thompsa/vaptq/etc/mtree/BSD.root.dist user/thompsa/vaptq/etc/rc.d/defaultroute user/thompsa/vaptq/etc/regdomain.xml user/thompsa/vaptq/gnu/usr.bin/binutils/as/Makefile user/thompsa/vaptq/gnu/usr.bin/binutils/libbfd/bfd.h user/thompsa/vaptq/gnu/usr.bin/cc/libiberty/config.h user/thompsa/vaptq/gnu/usr.bin/groff/tmac/mdoc.local user/thompsa/vaptq/gnu/usr.bin/sort/config.h user/thompsa/vaptq/include/arpa/nameser.h user/thompsa/vaptq/include/resolv.h user/thompsa/vaptq/include/string.h user/thompsa/vaptq/kerberos5/include/config.h user/thompsa/vaptq/lib/bind/bind/port_after.h user/thompsa/vaptq/lib/libarchive/archive_read_support_format_ar.c user/thompsa/vaptq/lib/libarchive/test/main.c user/thompsa/vaptq/lib/libarchive/test/test_compat_gtar.c user/thompsa/vaptq/lib/libarchive/test/test_write_compress.c user/thompsa/vaptq/lib/libarchive/test/test_write_format_ar.c user/thompsa/vaptq/lib/libc/ (props changed) user/thompsa/vaptq/lib/libc/include/isc/eventlib.h (contents, props changed) user/thompsa/vaptq/lib/libc/inet/inet_net_pton.c user/thompsa/vaptq/lib/libc/net/rcmd.3 user/thompsa/vaptq/lib/libc/resolv/res_debug.c user/thompsa/vaptq/lib/libc/resolv/res_mkquery.c user/thompsa/vaptq/lib/libc/resolv/res_query.c user/thompsa/vaptq/lib/libc/resolv/res_send.c user/thompsa/vaptq/lib/libc/stdio/vfprintf.c user/thompsa/vaptq/lib/libc/stdio/vfwprintf.c user/thompsa/vaptq/lib/libc/stdtime/ (props changed) user/thompsa/vaptq/lib/libc/string/ffsll.c (props changed) user/thompsa/vaptq/lib/libc/string/flsll.c (props changed) user/thompsa/vaptq/lib/libc/string/strdup.3 user/thompsa/vaptq/lib/libfetch/fetch.3 user/thompsa/vaptq/lib/libfetch/fetch.c user/thompsa/vaptq/lib/libfetch/fetch.h user/thompsa/vaptq/lib/libfetch/http.c user/thompsa/vaptq/lib/libmagic/config.h user/thompsa/vaptq/lib/libpmc/pmc.core.3 user/thompsa/vaptq/lib/libstand/if_ether.h user/thompsa/vaptq/lib/libutil/ (props changed) user/thompsa/vaptq/lib/libutil/kinfo_getfile.c user/thompsa/vaptq/lib/libutil/kinfo_getvmmap.c user/thompsa/vaptq/libexec/bootpd/rtmsg.c user/thompsa/vaptq/release/doc/en_US.ISO8859-1/hardware/article.sgml user/thompsa/vaptq/release/picobsd/tinyware/ns/ns.c user/thompsa/vaptq/sbin/atacontrol/atacontrol.8 user/thompsa/vaptq/sbin/devd/devd.cc user/thompsa/vaptq/sbin/devd/devd.conf.5 user/thompsa/vaptq/sbin/geom/misc/subr.c user/thompsa/vaptq/sbin/ifconfig/ifieee80211.c user/thompsa/vaptq/sbin/ifconfig/regdomain.c user/thompsa/vaptq/sbin/ifconfig/regdomain.h user/thompsa/vaptq/sbin/ipfw/ipfw.8 user/thompsa/vaptq/sbin/ipfw/ipfw2.c user/thompsa/vaptq/sbin/kldstat/kldstat.c user/thompsa/vaptq/sbin/mount/mount.c user/thompsa/vaptq/sbin/mount/mount_fs.c user/thompsa/vaptq/sbin/newfs/newfs.c user/thompsa/vaptq/sbin/route/route.c user/thompsa/vaptq/sbin/routed/table.c user/thompsa/vaptq/share/man/man4/Makefile user/thompsa/vaptq/share/man/man4/acpi_aiboost.4 user/thompsa/vaptq/share/man/man4/acpi_asus.4 user/thompsa/vaptq/share/man/man4/cxgb.4 user/thompsa/vaptq/share/man/man4/ddb.4 user/thompsa/vaptq/share/man/man4/fxp.4 user/thompsa/vaptq/share/man/man4/man4.powerpc/Makefile user/thompsa/vaptq/share/man/man4/route.4 user/thompsa/vaptq/share/man/man9/Makefile user/thompsa/vaptq/share/man/man9/VOP_STRATEGY.9 user/thompsa/vaptq/share/man/man9/ifnet.9 user/thompsa/vaptq/share/man/man9/rtalloc.9 user/thompsa/vaptq/share/man/man9/rtentry.9 user/thompsa/vaptq/share/man/man9/style.9 user/thompsa/vaptq/share/zoneinfo/ (props changed) user/thompsa/vaptq/sys/ (props changed) user/thompsa/vaptq/sys/amd64/amd64/exception.S user/thompsa/vaptq/sys/amd64/amd64/genassym.c user/thompsa/vaptq/sys/amd64/amd64/identcpu.c user/thompsa/vaptq/sys/amd64/amd64/local_apic.c user/thompsa/vaptq/sys/amd64/conf/DEFAULTS user/thompsa/vaptq/sys/amd64/include/apicreg.h user/thompsa/vaptq/sys/amd64/include/apicvar.h user/thompsa/vaptq/sys/amd64/include/elf.h user/thompsa/vaptq/sys/amd64/include/specialreg.h user/thompsa/vaptq/sys/amd64/linux32/linux32_sysvec.c user/thompsa/vaptq/sys/arm/arm/cpufunc.c user/thompsa/vaptq/sys/arm/arm/identcpu.c user/thompsa/vaptq/sys/arm/conf/AVILA user/thompsa/vaptq/sys/arm/conf/AVILA.hints user/thompsa/vaptq/sys/arm/conf/DEFAULTS user/thompsa/vaptq/sys/arm/conf/EP80219 user/thompsa/vaptq/sys/arm/include/armreg.h user/thompsa/vaptq/sys/arm/include/elf.h user/thompsa/vaptq/sys/arm/include/intr.h user/thompsa/vaptq/sys/arm/xscale/ixp425/avila_ata.c user/thompsa/vaptq/sys/arm/xscale/ixp425/avila_led.c user/thompsa/vaptq/sys/arm/xscale/ixp425/avila_machdep.c user/thompsa/vaptq/sys/arm/xscale/ixp425/files.avila user/thompsa/vaptq/sys/arm/xscale/ixp425/files.ixp425 user/thompsa/vaptq/sys/arm/xscale/ixp425/if_npe.c user/thompsa/vaptq/sys/arm/xscale/ixp425/if_npereg.h user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_iic.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_intr.h user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_mem.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_npe.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_npevar.h user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_pci.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_qmgr.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_timer.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425_wdog.c user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425reg.h user/thompsa/vaptq/sys/arm/xscale/ixp425/ixp425var.h user/thompsa/vaptq/sys/arm/xscale/ixp425/std.avila user/thompsa/vaptq/sys/boot/Makefile user/thompsa/vaptq/sys/boot/arm/ixp425/boot2/arm_init.S user/thompsa/vaptq/sys/boot/arm/ixp425/boot2/boot2.c user/thompsa/vaptq/sys/boot/arm/ixp425/boot2/ixp425_board.c user/thompsa/vaptq/sys/boot/arm/ixp425/boot2/lib.h user/thompsa/vaptq/sys/boot/forth/support.4th user/thompsa/vaptq/sys/boot/i386/boot0/boot0.S user/thompsa/vaptq/sys/boot/i386/btx/btxldr/btxldr.S user/thompsa/vaptq/sys/boot/i386/gptzfsboot/Makefile user/thompsa/vaptq/sys/boot/i386/zfsboot/Makefile user/thompsa/vaptq/sys/boot/powerpc/uboot/conf.c user/thompsa/vaptq/sys/boot/uboot/common/main.c user/thompsa/vaptq/sys/boot/uboot/lib/devicename.c user/thompsa/vaptq/sys/boot/zfs/zfs.c user/thompsa/vaptq/sys/boot/zfs/zfsimpl.c user/thompsa/vaptq/sys/cam/cam_periph.c user/thompsa/vaptq/sys/cam/cam_periph.h user/thompsa/vaptq/sys/cam/cam_sim.c user/thompsa/vaptq/sys/cam/cam_sim.h user/thompsa/vaptq/sys/cam/cam_xpt.c user/thompsa/vaptq/sys/cam/scsi/scsi_cd.c user/thompsa/vaptq/sys/cam/scsi/scsi_da.c user/thompsa/vaptq/sys/cam/scsi/scsi_pass.c user/thompsa/vaptq/sys/cam/scsi/scsi_sg.c user/thompsa/vaptq/sys/compat/freebsd32/freebsd32_proto.h user/thompsa/vaptq/sys/compat/freebsd32/freebsd32_signal.h user/thompsa/vaptq/sys/compat/freebsd32/freebsd32_syscall.h user/thompsa/vaptq/sys/compat/freebsd32/freebsd32_syscalls.c user/thompsa/vaptq/sys/compat/freebsd32/freebsd32_sysent.c user/thompsa/vaptq/sys/compat/freebsd32/syscalls.master user/thompsa/vaptq/sys/compat/linprocfs/linprocfs.c user/thompsa/vaptq/sys/compat/svr4/svr4_sysvec.c user/thompsa/vaptq/sys/conf/NOTES user/thompsa/vaptq/sys/conf/files user/thompsa/vaptq/sys/conf/files.powerpc user/thompsa/vaptq/sys/conf/files.sparc64 user/thompsa/vaptq/sys/conf/files.sun4v user/thompsa/vaptq/sys/conf/options user/thompsa/vaptq/sys/conf/options.arm user/thompsa/vaptq/sys/contrib/dev/npe/IxNpeMicrocode.dat.uu user/thompsa/vaptq/sys/contrib/pf/ (props changed) user/thompsa/vaptq/sys/contrib/pf/net/pf.c user/thompsa/vaptq/sys/contrib/pf/net/pf_if.c user/thompsa/vaptq/sys/contrib/pf/net/pf_subr.c user/thompsa/vaptq/sys/contrib/pf/net/pf_table.c user/thompsa/vaptq/sys/contrib/rdma/rdma_addr.c user/thompsa/vaptq/sys/crypto/rc4/rc4.c user/thompsa/vaptq/sys/dev/acpica/acpi_smbat.c user/thompsa/vaptq/sys/dev/agp/agppriv.h user/thompsa/vaptq/sys/dev/ata/ata-pci.c user/thompsa/vaptq/sys/dev/ata/ata-pci.h user/thompsa/vaptq/sys/dev/ata/chipsets/ata-ahci.c user/thompsa/vaptq/sys/dev/ata/chipsets/ata-sis.c user/thompsa/vaptq/sys/dev/ath/ath_hal/ah.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_debug.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_decode.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_desc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_devid.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v1.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v1.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v14.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v14.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v3.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_eeprom_v3.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_internal.h (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_regdomain.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ah_soc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_interrupts.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_keycache.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_phy.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_power.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210desc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210phy.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5210reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5210/ar5k_0007.ini (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_interrupts.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_keycache.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_phy.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_power.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_recv.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211desc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211phy.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/ar5211reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5211/boss.ini (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar2316.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar2317.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar2413.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar2425.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5111.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5112.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212.ini (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_eeprom.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_gpio.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_interrupts.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_keycache.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_phy.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_power.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_rfgain.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212desc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212phy.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5212reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5311reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5212/ar5413.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312.h (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c (contents, props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_eeprom.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_gpio.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_interrupts.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_misc.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_power.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312phy.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5312reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5312/ar5315_gpio.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar2133.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416.ini (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_cal.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcdc.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcgain.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_cal_iq.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_eeprom.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_keycache.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_phy.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_power.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416desc.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416phy.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar5416reg.h (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar9160.ini (props changed) user/thompsa/vaptq/sys/dev/ath/ath_hal/ar5416/ar9160_attach.c (props changed) user/thompsa/vaptq/sys/dev/ath/if_ath.c user/thompsa/vaptq/sys/dev/ath/if_athvar.h user/thompsa/vaptq/sys/dev/atkbdc/psm.c user/thompsa/vaptq/sys/dev/bce/if_bce.c user/thompsa/vaptq/sys/dev/bge/if_bge.c user/thompsa/vaptq/sys/dev/cxgb/common/cxgb_ael1002.c user/thompsa/vaptq/sys/dev/cxgb/cxgb_main.c user/thompsa/vaptq/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c user/thompsa/vaptq/sys/dev/cxgb/ulp/tom/cxgb_l2t.c user/thompsa/vaptq/sys/dev/cxgb/ulp/tom/cxgb_l2t.h user/thompsa/vaptq/sys/dev/dc/if_dc.c user/thompsa/vaptq/sys/dev/dc/if_dcreg.h user/thompsa/vaptq/sys/dev/drm/drmP.h user/thompsa/vaptq/sys/dev/drm/drm_drv.c user/thompsa/vaptq/sys/dev/drm/drm_scatter.c user/thompsa/vaptq/sys/dev/e1000/if_em.c user/thompsa/vaptq/sys/dev/fxp/if_fxp.c user/thompsa/vaptq/sys/dev/hwpmc/hwpmc_core.c user/thompsa/vaptq/sys/dev/hwpmc/hwpmc_logging.c user/thompsa/vaptq/sys/dev/hwpmc/hwpmc_mod.c user/thompsa/vaptq/sys/dev/isp/isp.c user/thompsa/vaptq/sys/dev/md/md.c user/thompsa/vaptq/sys/dev/mfi/mfi.c user/thompsa/vaptq/sys/dev/mfi/mfi_pci.c user/thompsa/vaptq/sys/dev/nfe/if_nfe.c user/thompsa/vaptq/sys/dev/ofw/ofw_bus_subr.c user/thompsa/vaptq/sys/dev/ofw/ofw_bus_subr.h user/thompsa/vaptq/sys/dev/ofw/openfirm.c user/thompsa/vaptq/sys/dev/ofw/openfirm.h user/thompsa/vaptq/sys/dev/ofw/openfirmio.c user/thompsa/vaptq/sys/dev/ofw/openpromio.c user/thompsa/vaptq/sys/dev/pccbb/pccbb.c user/thompsa/vaptq/sys/dev/pccbb/pccbb_pci.c user/thompsa/vaptq/sys/dev/re/if_re.c user/thompsa/vaptq/sys/dev/sis/if_sis.c user/thompsa/vaptq/sys/dev/sis/if_sisreg.h user/thompsa/vaptq/sys/dev/snp/snp.c user/thompsa/vaptq/sys/dev/sound/pci/hda/hdac.c user/thompsa/vaptq/sys/dev/usb/ehci.c user/thompsa/vaptq/sys/dev/usb/ehci_mbus.c user/thompsa/vaptq/sys/dev/usb/ehci_pci.c user/thompsa/vaptq/sys/dev/usb/ehcireg.h user/thompsa/vaptq/sys/dev/usb/ehcivar.h user/thompsa/vaptq/sys/dev/usb/ucom.c user/thompsa/vaptq/sys/dev/usb/ucomvar.h user/thompsa/vaptq/sys/dev/usb/uftdi.c user/thompsa/vaptq/sys/dev/usb/usbdevs user/thompsa/vaptq/sys/dev/usb/usbdi.h user/thompsa/vaptq/sys/dev/usb2/bluetooth/ng_ubt2.c user/thompsa/vaptq/sys/dev/usb2/bluetooth/ubtbcmfw2.c user/thompsa/vaptq/sys/dev/usb2/controller/at91dci.c user/thompsa/vaptq/sys/dev/usb2/controller/at91dci_atmelarm.c user/thompsa/vaptq/sys/dev/usb2/controller/ehci2.c user/thompsa/vaptq/sys/dev/usb2/controller/ehci2_pci.c user/thompsa/vaptq/sys/dev/usb2/controller/musb2_otg.c user/thompsa/vaptq/sys/dev/usb2/controller/musb2_otg_atmelarm.c user/thompsa/vaptq/sys/dev/usb2/controller/ohci2.c user/thompsa/vaptq/sys/dev/usb2/controller/uhci2.c user/thompsa/vaptq/sys/dev/usb2/controller/usb2_controller.c user/thompsa/vaptq/sys/dev/usb2/controller/uss820dci.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_busdma.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_busdma.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_compat_linux.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_compat_linux.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_config_td.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_config_td.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_core.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_debug.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_dev.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_dev.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_device.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_device.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_dynamic.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_dynamic.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_error.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_generic.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_handle_request.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_hid.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_hub.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_hub.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_lookup.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_mbuf.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_msctest.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_msctest.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_parse.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_process.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_process.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_request.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_request.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_sw_transfer.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_sw_transfer.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_transfer.c user/thompsa/vaptq/sys/dev/usb2/core/usb2_transfer.h user/thompsa/vaptq/sys/dev/usb2/core/usb2_util.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_aue2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_axe2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_cdce2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_cue2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_kue2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_rue2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/if_udav2.c user/thompsa/vaptq/sys/dev/usb2/ethernet/usb2_ethernet.c user/thompsa/vaptq/sys/dev/usb2/ethernet/usb2_ethernet.h user/thompsa/vaptq/sys/dev/usb2/image/uscanner2.c user/thompsa/vaptq/sys/dev/usb2/include/usb2_devid.h user/thompsa/vaptq/sys/dev/usb2/include/usb2_devtable.h user/thompsa/vaptq/sys/dev/usb2/input/uhid2.c user/thompsa/vaptq/sys/dev/usb2/input/ukbd2.c user/thompsa/vaptq/sys/dev/usb2/input/ums2.c user/thompsa/vaptq/sys/dev/usb2/misc/udbp2.c user/thompsa/vaptq/sys/dev/usb2/misc/ufm2.c user/thompsa/vaptq/sys/dev/usb2/quirk/usb2_quirk.c user/thompsa/vaptq/sys/dev/usb2/serial/uark2.c user/thompsa/vaptq/sys/dev/usb2/serial/ubsa2.c user/thompsa/vaptq/sys/dev/usb2/serial/ubser2.c user/thompsa/vaptq/sys/dev/usb2/serial/uchcom2.c user/thompsa/vaptq/sys/dev/usb2/serial/ucycom2.c user/thompsa/vaptq/sys/dev/usb2/serial/ufoma2.c user/thompsa/vaptq/sys/dev/usb2/serial/uftdi2.c user/thompsa/vaptq/sys/dev/usb2/serial/ugensa2.c user/thompsa/vaptq/sys/dev/usb2/serial/uipaq2.c user/thompsa/vaptq/sys/dev/usb2/serial/ulpt2.c user/thompsa/vaptq/sys/dev/usb2/serial/umct2.c user/thompsa/vaptq/sys/dev/usb2/serial/umodem2.c user/thompsa/vaptq/sys/dev/usb2/serial/umoscom2.c user/thompsa/vaptq/sys/dev/usb2/serial/uplcom2.c user/thompsa/vaptq/sys/dev/usb2/serial/usb2_serial.c user/thompsa/vaptq/sys/dev/usb2/serial/usb2_serial.h user/thompsa/vaptq/sys/dev/usb2/serial/uvisor2.c user/thompsa/vaptq/sys/dev/usb2/serial/uvscom2.c user/thompsa/vaptq/sys/dev/usb2/sound/uaudio2.c user/thompsa/vaptq/sys/dev/usb2/sound/uaudio2.h user/thompsa/vaptq/sys/dev/usb2/storage/ata-usb2.c user/thompsa/vaptq/sys/dev/usb2/storage/umass2.c user/thompsa/vaptq/sys/dev/usb2/storage/urio2.c user/thompsa/vaptq/sys/dev/usb2/storage/ustorage2_fs.c user/thompsa/vaptq/sys/dev/usb2/template/usb2_template.c user/thompsa/vaptq/sys/dev/usb2/wlan/if_rum2.c user/thompsa/vaptq/sys/dev/usb2/wlan/if_ural2.c user/thompsa/vaptq/sys/dev/usb2/wlan/if_zyd2.c user/thompsa/vaptq/sys/dev/vr/if_vr.c user/thompsa/vaptq/sys/fs/deadfs/dead_vnops.c user/thompsa/vaptq/sys/fs/devfs/devfs_vnops.c user/thompsa/vaptq/sys/fs/hpfs/hpfs_vnops.c user/thompsa/vaptq/sys/fs/msdosfs/msdosfs_vnops.c user/thompsa/vaptq/sys/fs/ntfs/ntfs_vnops.c user/thompsa/vaptq/sys/fs/nwfs/nwfs_vnops.c user/thompsa/vaptq/sys/fs/procfs/procfs_map.c user/thompsa/vaptq/sys/fs/smbfs/smbfs_vnops.c user/thompsa/vaptq/sys/geom/geom_subr.c user/thompsa/vaptq/sys/geom/geom_vfs.c user/thompsa/vaptq/sys/gnu/fs/ext2fs/ext2_vnops.c user/thompsa/vaptq/sys/gnu/fs/reiserfs/reiserfs_vnops.c user/thompsa/vaptq/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c user/thompsa/vaptq/sys/i386/conf/DEFAULTS user/thompsa/vaptq/sys/i386/i386/exception.s user/thompsa/vaptq/sys/i386/i386/genassym.c user/thompsa/vaptq/sys/i386/i386/identcpu.c user/thompsa/vaptq/sys/i386/i386/local_apic.c user/thompsa/vaptq/sys/i386/include/apicreg.h user/thompsa/vaptq/sys/i386/include/apicvar.h user/thompsa/vaptq/sys/i386/include/elf.h user/thompsa/vaptq/sys/i386/include/specialreg.h user/thompsa/vaptq/sys/i386/linux/linux_sysvec.c user/thompsa/vaptq/sys/ia64/include/elf.h user/thompsa/vaptq/sys/kern/imgact_elf.c user/thompsa/vaptq/sys/kern/kern_cpu.c user/thompsa/vaptq/sys/kern/kern_jail.c user/thompsa/vaptq/sys/kern/kern_linker.c user/thompsa/vaptq/sys/kern/kern_mbuf.c user/thompsa/vaptq/sys/kern/kern_poll.c user/thompsa/vaptq/sys/kern/kern_proc.c user/thompsa/vaptq/sys/kern/kern_prot.c user/thompsa/vaptq/sys/kern/kern_rwlock.c user/thompsa/vaptq/sys/kern/kern_sysctl.c user/thompsa/vaptq/sys/kern/subr_kobj.c user/thompsa/vaptq/sys/kern/subr_param.c user/thompsa/vaptq/sys/kern/subr_trap.c user/thompsa/vaptq/sys/kern/subr_witness.c user/thompsa/vaptq/sys/kern/tty.c user/thompsa/vaptq/sys/kern/tty_pts.c user/thompsa/vaptq/sys/kern/uipc_socket.c user/thompsa/vaptq/sys/kern/vfs_aio.c user/thompsa/vaptq/sys/kern/vfs_cache.c user/thompsa/vaptq/sys/kern/vfs_default.c user/thompsa/vaptq/sys/kern/vfs_export.c user/thompsa/vaptq/sys/kern/vfs_lookup.c user/thompsa/vaptq/sys/kern/vfs_mount.c user/thompsa/vaptq/sys/kern/vfs_subr.c user/thompsa/vaptq/sys/kern/vfs_syscalls.c user/thompsa/vaptq/sys/kern/vnode_if.src user/thompsa/vaptq/sys/mips/adm5120/adm5120_machdep.c user/thompsa/vaptq/sys/mips/conf/DEFAULTS user/thompsa/vaptq/sys/mips/include/elf.h user/thompsa/vaptq/sys/mips/mips/elf_machdep.c user/thompsa/vaptq/sys/modules/Makefile user/thompsa/vaptq/sys/modules/aio/Makefile user/thompsa/vaptq/sys/modules/ath/Makefile user/thompsa/vaptq/sys/modules/cxgb/Makefile user/thompsa/vaptq/sys/net/ieee8023ad_lacp.c user/thompsa/vaptq/sys/net/if.c user/thompsa/vaptq/sys/net/if_arcsubr.c user/thompsa/vaptq/sys/net/if_atmsubr.c user/thompsa/vaptq/sys/net/if_bridge.c user/thompsa/vaptq/sys/net/if_ethersubr.c user/thompsa/vaptq/sys/net/if_fddisubr.c user/thompsa/vaptq/sys/net/if_fwsubr.c user/thompsa/vaptq/sys/net/if_gif.c user/thompsa/vaptq/sys/net/if_gif.h user/thompsa/vaptq/sys/net/if_iso88025subr.c user/thompsa/vaptq/sys/net/if_lagg.c user/thompsa/vaptq/sys/net/if_media.h user/thompsa/vaptq/sys/net/if_tun.c user/thompsa/vaptq/sys/net/if_var.h user/thompsa/vaptq/sys/net/pfil.c user/thompsa/vaptq/sys/net/pfil.h user/thompsa/vaptq/sys/net/radix.c user/thompsa/vaptq/sys/net/radix.h user/thompsa/vaptq/sys/net/radix_mpath.c user/thompsa/vaptq/sys/net/raw_cb.h user/thompsa/vaptq/sys/net/route.c user/thompsa/vaptq/sys/net/route.h user/thompsa/vaptq/sys/net/rtsock.c user/thompsa/vaptq/sys/net/vnet.h user/thompsa/vaptq/sys/net80211/_ieee80211.h user/thompsa/vaptq/sys/net80211/ieee80211.c user/thompsa/vaptq/sys/net80211/ieee80211_acl.c user/thompsa/vaptq/sys/net80211/ieee80211_crypto.h user/thompsa/vaptq/sys/net80211/ieee80211_crypto_ccmp.c user/thompsa/vaptq/sys/net80211/ieee80211_crypto_tkip.c user/thompsa/vaptq/sys/net80211/ieee80211_crypto_wep.c user/thompsa/vaptq/sys/net80211/ieee80211_ddb.c user/thompsa/vaptq/sys/net80211/ieee80211_dfs.h user/thompsa/vaptq/sys/net80211/ieee80211_freebsd.c user/thompsa/vaptq/sys/net80211/ieee80211_hostap.c user/thompsa/vaptq/sys/net80211/ieee80211_input.c user/thompsa/vaptq/sys/net80211/ieee80211_ioctl.c user/thompsa/vaptq/sys/net80211/ieee80211_node.c user/thompsa/vaptq/sys/net80211/ieee80211_node.h user/thompsa/vaptq/sys/net80211/ieee80211_output.c user/thompsa/vaptq/sys/net80211/ieee80211_power.c user/thompsa/vaptq/sys/net80211/ieee80211_proto.c user/thompsa/vaptq/sys/net80211/ieee80211_regdomain.c user/thompsa/vaptq/sys/net80211/ieee80211_scan.c user/thompsa/vaptq/sys/net80211/ieee80211_scan_sta.c user/thompsa/vaptq/sys/net80211/ieee80211_sta.c user/thompsa/vaptq/sys/net80211/ieee80211_var.h user/thompsa/vaptq/sys/netgraph/netflow/netflow.c user/thompsa/vaptq/sys/netgraph/netgraph.h user/thompsa/vaptq/sys/netgraph/ng_base.c user/thompsa/vaptq/sys/netgraph/ng_bridge.c user/thompsa/vaptq/sys/netgraph/ng_eiface.c user/thompsa/vaptq/sys/netgraph/ng_iface.c user/thompsa/vaptq/sys/netgraph/ng_ipfw.c user/thompsa/vaptq/sys/netgraph/ng_mppc.c user/thompsa/vaptq/sys/netgraph/ng_tty.c user/thompsa/vaptq/sys/netinet/icmp6.h user/thompsa/vaptq/sys/netinet/icmp_var.h user/thompsa/vaptq/sys/netinet/if_atm.c user/thompsa/vaptq/sys/netinet/if_ether.c user/thompsa/vaptq/sys/netinet/if_ether.h user/thompsa/vaptq/sys/netinet/in.c user/thompsa/vaptq/sys/netinet/in_mcast.c user/thompsa/vaptq/sys/netinet/in_pcb.c user/thompsa/vaptq/sys/netinet/in_pcb.h user/thompsa/vaptq/sys/netinet/in_proto.c user/thompsa/vaptq/sys/netinet/in_rmx.c user/thompsa/vaptq/sys/netinet/in_var.h user/thompsa/vaptq/sys/netinet/ip_carp.c user/thompsa/vaptq/sys/netinet/ip_divert.c user/thompsa/vaptq/sys/netinet/ip_dummynet.c user/thompsa/vaptq/sys/netinet/ip_fastfwd.c user/thompsa/vaptq/sys/netinet/ip_fw.h user/thompsa/vaptq/sys/netinet/ip_fw2.c user/thompsa/vaptq/sys/netinet/ip_fw_nat.c user/thompsa/vaptq/sys/netinet/ip_fw_pfil.c user/thompsa/vaptq/sys/netinet/ip_input.c user/thompsa/vaptq/sys/netinet/ip_output.c user/thompsa/vaptq/sys/netinet/ip_var.h user/thompsa/vaptq/sys/netinet/libalias/alias_db.c user/thompsa/vaptq/sys/netinet/raw_ip.c user/thompsa/vaptq/sys/netinet/sctp_os_bsd.h user/thompsa/vaptq/sys/netinet/sctp_pcb.c user/thompsa/vaptq/sys/netinet/tcp_hostcache.c user/thompsa/vaptq/sys/netinet/tcp_input.c user/thompsa/vaptq/sys/netinet/tcp_sack.c user/thompsa/vaptq/sys/netinet/tcp_subr.c user/thompsa/vaptq/sys/netinet/tcp_syncache.c user/thompsa/vaptq/sys/netinet/tcp_syncache.h user/thompsa/vaptq/sys/netinet/tcp_timewait.c user/thompsa/vaptq/sys/netinet/tcp_usrreq.c user/thompsa/vaptq/sys/netinet/tcp_var.h user/thompsa/vaptq/sys/netinet/udp_usrreq.c user/thompsa/vaptq/sys/netinet/udp_var.h user/thompsa/vaptq/sys/netinet/vinet.h user/thompsa/vaptq/sys/netinet6/icmp6.c user/thompsa/vaptq/sys/netinet6/in6.c user/thompsa/vaptq/sys/netinet6/in6_ifattach.c user/thompsa/vaptq/sys/netinet6/in6_pcb.c user/thompsa/vaptq/sys/netinet6/in6_proto.c user/thompsa/vaptq/sys/netinet6/in6_rmx.c user/thompsa/vaptq/sys/netinet6/in6_src.c user/thompsa/vaptq/sys/netinet6/in6_var.h user/thompsa/vaptq/sys/netinet6/ip6_input.c user/thompsa/vaptq/sys/netinet6/ip6_output.c user/thompsa/vaptq/sys/netinet6/ip6_var.h user/thompsa/vaptq/sys/netinet6/nd6.c user/thompsa/vaptq/sys/netinet6/nd6.h user/thompsa/vaptq/sys/netinet6/nd6_nbr.c user/thompsa/vaptq/sys/netinet6/nd6_rtr.c user/thompsa/vaptq/sys/netinet6/raw_ip6.c user/thompsa/vaptq/sys/netinet6/raw_ip6.h user/thompsa/vaptq/sys/netinet6/tcp6_var.h user/thompsa/vaptq/sys/netinet6/udp6_usrreq.c user/thompsa/vaptq/sys/netinet6/vinet6.h user/thompsa/vaptq/sys/netipsec/ipip_var.h user/thompsa/vaptq/sys/netipsec/ipsec.c user/thompsa/vaptq/sys/netipsec/key.c user/thompsa/vaptq/sys/netipsec/vipsec.h user/thompsa/vaptq/sys/netipx/ipx_usrreq.c user/thompsa/vaptq/sys/nfsserver/nfs_fha.c user/thompsa/vaptq/sys/nfsserver/nfs_serv.c user/thompsa/vaptq/sys/pc98/conf/DEFAULTS user/thompsa/vaptq/sys/pc98/conf/GENERIC user/thompsa/vaptq/sys/pci/if_rl.c user/thompsa/vaptq/sys/pci/if_rlreg.h user/thompsa/vaptq/sys/powerpc/aim/locore.S user/thompsa/vaptq/sys/powerpc/aim/machdep.c user/thompsa/vaptq/sys/powerpc/aim/ofw_machdep.c user/thompsa/vaptq/sys/powerpc/booke/interrupt.c user/thompsa/vaptq/sys/powerpc/booke/locore.S user/thompsa/vaptq/sys/powerpc/booke/machdep.c user/thompsa/vaptq/sys/powerpc/conf/NOTES user/thompsa/vaptq/sys/powerpc/include/elf.h user/thompsa/vaptq/sys/powerpc/include/ofw_machdep.h user/thompsa/vaptq/sys/powerpc/include/param.h user/thompsa/vaptq/sys/powerpc/include/spr.h user/thompsa/vaptq/sys/powerpc/mpc85xx/lbc.c user/thompsa/vaptq/sys/powerpc/mpc85xx/lbc.h user/thompsa/vaptq/sys/powerpc/mpc85xx/mpc85xx.c user/thompsa/vaptq/sys/powerpc/mpc85xx/nexus.c user/thompsa/vaptq/sys/powerpc/mpc85xx/ocpbus.c user/thompsa/vaptq/sys/powerpc/ofw/ofw_pcib_pci.c user/thompsa/vaptq/sys/powerpc/ofw/ofw_pcibus.c user/thompsa/vaptq/sys/powerpc/ofw/ofw_syscons.c user/thompsa/vaptq/sys/powerpc/ofw/ofw_syscons.h user/thompsa/vaptq/sys/powerpc/powermac/cuda.c user/thompsa/vaptq/sys/powerpc/powermac/cudavar.h user/thompsa/vaptq/sys/powerpc/powermac/grackle.c user/thompsa/vaptq/sys/powerpc/powermac/gracklevar.h user/thompsa/vaptq/sys/powerpc/powermac/macgpio.c user/thompsa/vaptq/sys/powerpc/powermac/macgpiovar.h user/thompsa/vaptq/sys/powerpc/powermac/macio.c user/thompsa/vaptq/sys/powerpc/powermac/pmu.c user/thompsa/vaptq/sys/powerpc/powermac/pmuvar.h user/thompsa/vaptq/sys/powerpc/powermac/uninorth.c user/thompsa/vaptq/sys/powerpc/powermac/uninorthvar.h user/thompsa/vaptq/sys/powerpc/powerpc/pmap_dispatch.c user/thompsa/vaptq/sys/security/mac/mac_process.c user/thompsa/vaptq/sys/sparc64/conf/DEFAULTS user/thompsa/vaptq/sys/sparc64/ebus/ebus.c user/thompsa/vaptq/sys/sparc64/include/elf.h user/thompsa/vaptq/sys/sparc64/include/ofw_machdep.h user/thompsa/vaptq/sys/sparc64/isa/ofw_isa.c user/thompsa/vaptq/sys/sparc64/pci/apb.c user/thompsa/vaptq/sys/sparc64/pci/ofw_pci.h user/thompsa/vaptq/sys/sparc64/pci/ofw_pcib.c user/thompsa/vaptq/sys/sparc64/pci/ofw_pcib_subr.c user/thompsa/vaptq/sys/sparc64/pci/ofw_pcibus.c user/thompsa/vaptq/sys/sparc64/pci/psycho.c user/thompsa/vaptq/sys/sparc64/pci/schizo.c user/thompsa/vaptq/sys/sparc64/sbus/sbus.c user/thompsa/vaptq/sys/sparc64/sparc64/machdep.c user/thompsa/vaptq/sys/sparc64/sparc64/mp_machdep.c user/thompsa/vaptq/sys/sparc64/sparc64/ofw_machdep.c user/thompsa/vaptq/sys/sparc64/sparc64/support.S user/thompsa/vaptq/sys/sparc64/sparc64/trap.c user/thompsa/vaptq/sys/sparc64/sparc64/vm_machdep.c user/thompsa/vaptq/sys/sun4v/conf/DEFAULTS user/thompsa/vaptq/sys/sun4v/include/elf.h user/thompsa/vaptq/sys/sun4v/include/ofw_machdep.h user/thompsa/vaptq/sys/sun4v/sun4v/machdep.c user/thompsa/vaptq/sys/sun4v/sun4v/mp_machdep.c user/thompsa/vaptq/sys/sun4v/sun4v/support.S user/thompsa/vaptq/sys/sun4v/sun4v/trap.c user/thompsa/vaptq/sys/sys/aio.h user/thompsa/vaptq/sys/sys/buf_ring.h user/thompsa/vaptq/sys/sys/elf_common.h user/thompsa/vaptq/sys/sys/imgact_elf.h user/thompsa/vaptq/sys/sys/kernel.h user/thompsa/vaptq/sys/sys/kobj.h user/thompsa/vaptq/sys/sys/mount.h user/thompsa/vaptq/sys/sys/param.h user/thompsa/vaptq/sys/sys/pmc.h user/thompsa/vaptq/sys/sys/resource.h user/thompsa/vaptq/sys/sys/rwlock.h user/thompsa/vaptq/sys/sys/sysctl.h user/thompsa/vaptq/sys/sys/ttyhook.h user/thompsa/vaptq/sys/sys/vimage.h user/thompsa/vaptq/sys/sys/vnode.h user/thompsa/vaptq/sys/sys/vtoc.h user/thompsa/vaptq/sys/ufs/ufs/ufs_quota.c user/thompsa/vaptq/sys/ufs/ufs/ufs_vfsops.c user/thompsa/vaptq/sys/ufs/ufs/ufs_vnops.c user/thompsa/vaptq/sys/vm/vm_object.c user/thompsa/vaptq/tools/regression/bin/sh/builtins/type1.0.stderr (props changed) user/thompsa/vaptq/tools/tools/ath/Makefile user/thompsa/vaptq/tools/tools/ath/athdebug/Makefile user/thompsa/vaptq/tools/tools/ath/athstats/Makefile user/thompsa/vaptq/tools/tools/nanobsd/nanobsd.sh user/thompsa/vaptq/usr.bin/cpuset/cpuset.1 user/thompsa/vaptq/usr.bin/fetch/fetch.1 user/thompsa/vaptq/usr.bin/fetch/fetch.c user/thompsa/vaptq/usr.bin/file/config.h user/thompsa/vaptq/usr.bin/ipcs/ipcs.c user/thompsa/vaptq/usr.bin/make/globals.h user/thompsa/vaptq/usr.bin/make/job.c user/thompsa/vaptq/usr.bin/make/job.h user/thompsa/vaptq/usr.bin/make/main.c user/thompsa/vaptq/usr.bin/make/make.c user/thompsa/vaptq/usr.bin/netstat/route.c user/thompsa/vaptq/usr.bin/procstat/ (props changed) user/thompsa/vaptq/usr.bin/procstat/procstat.1 user/thompsa/vaptq/usr.bin/procstat/procstat_files.c user/thompsa/vaptq/usr.bin/procstat/procstat_vm.c user/thompsa/vaptq/usr.bin/tar/util.c user/thompsa/vaptq/usr.sbin/Makefile user/thompsa/vaptq/usr.sbin/arp/arp.c user/thompsa/vaptq/usr.sbin/burncd/Makefile user/thompsa/vaptq/usr.sbin/burncd/burncd.c user/thompsa/vaptq/usr.sbin/fifolog/lib/fifolog_int.c user/thompsa/vaptq/usr.sbin/fifolog/lib/fifolog_reader.c user/thompsa/vaptq/usr.sbin/fwcontrol/fwcontrol.c user/thompsa/vaptq/usr.sbin/fwcontrol/fwmpegts.c user/thompsa/vaptq/usr.sbin/jexec/jexec.c user/thompsa/vaptq/usr.sbin/jls/jls.c user/thompsa/vaptq/usr.sbin/ndp/ndp.c user/thompsa/vaptq/usr.sbin/nscd/nscd.conf.5 user/thompsa/vaptq/usr.sbin/ppp/route.c user/thompsa/vaptq/usr.sbin/route6d/route6d.c user/thompsa/vaptq/usr.sbin/sysinstall/Makefile user/thompsa/vaptq/usr.sbin/sysinstall/cdrom.c user/thompsa/vaptq/usr.sbin/sysinstall/config.c user/thompsa/vaptq/usr.sbin/sysinstall/devices.c user/thompsa/vaptq/usr.sbin/sysinstall/dispatch.c user/thompsa/vaptq/usr.sbin/sysinstall/dist.c user/thompsa/vaptq/usr.sbin/sysinstall/dist.h user/thompsa/vaptq/usr.sbin/sysinstall/install.c user/thompsa/vaptq/usr.sbin/sysinstall/label.c user/thompsa/vaptq/usr.sbin/sysinstall/main.c user/thompsa/vaptq/usr.sbin/sysinstall/media.c user/thompsa/vaptq/usr.sbin/sysinstall/menus.c user/thompsa/vaptq/usr.sbin/sysinstall/options.c user/thompsa/vaptq/usr.sbin/sysinstall/sysinstall.8 user/thompsa/vaptq/usr.sbin/sysinstall/sysinstall.h user/thompsa/vaptq/usr.sbin/sysinstall/system.c user/thompsa/vaptq/usr.sbin/sysinstall/user.c user/thompsa/vaptq/usr.sbin/syslogd/Makefile user/thompsa/vaptq/usr.sbin/syslogd/syslogd.8 user/thompsa/vaptq/usr.sbin/syslogd/syslogd.c user/thompsa/vaptq/usr.sbin/zic/ (props changed) Modified: user/thompsa/vaptq/UPDATING ============================================================================== --- user/thompsa/vaptq/UPDATING Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/UPDATING Mon Dec 22 20:31:35 2008 (r186399) @@ -22,6 +22,23 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20081219: + With __FreeBSD_version 800060 the makefs tool is part of + the base system (it was a port). + +20081216: + The afdata and ifnet locks have been changed from mutexes to + rwlocks, network modules will need to be re-compiled. + +20081214: + __FreeBSD_version 800059 incorporates the new arp-v2 rewrite. + RTF_CLONING, RTF_LLINFO and RTF_WASCLONED flags are eliminated. + The new code reduced struct rtentry{} by 16 bytes on 32-bit + architecture and 40 bytes on 64-bit architecture. The userland + applications "arp" and "ndp" have been updated accordingly. + The output from "netstat -r" shows only routing entries and + none of the L2 information. + 20081130: __FreeBSD_version 800057 marks the switchover from the binary ath hal to source code. Users must add the line: @@ -38,11 +55,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. and thereby the code size); consult ath_hal(4) for details. 20081121: - __FreeBSD_version 800054 adds memory barriers to - , new interfaces to ifnet to facilitate + __FreeBSD_version 800054 adds memory barriers to + , new interfaces to ifnet to facilitate multiple hardware transmit queues for cards that support them, and a lock-less ring-buffer implementation to - enable drivers to more efficiently manage queueing of + enable drivers to more efficiently manage queueing of packets. 20081117: @@ -287,11 +304,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. be recompiled; this includes the hal and xorg-server ports. 20070928: - The caching daemon (cached) was renamed to nscd. nscd.conf - configuration file should be used instead of cached.conf and - nscd_enable, nscd_pidfile and nscd_flags options should be used - instead of cached_enable, cached_pidfile and cached_flags in - rc.conf. + The caching daemon (cached) was renamed to nscd. nscd.conf + configuration file should be used instead of cached.conf and + nscd_enable, nscd_pidfile and nscd_flags options should be used + instead of cached_enable, cached_pidfile and cached_flags in + rc.conf. 20070921: The getfacl(1) utility now prints owning user and group name @@ -299,7 +316,7 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. This is the same behavior as getfacl(1) on Solaris and Linux. 20070704: - The new IPsec code is now compiled in using the IPSEC option. The + The new IPsec code is now compiled in using the IPSEC option. The IPSEC option now requires "device crypto" be defined in your kernel configuration. The FAST_IPSEC kernel option is now deprecated. @@ -602,10 +619,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. If you have such a file, you need old utility to decrypt it. 20060709: - The interface version of the i4b kernel part has changed. So - after updating the kernel sources and compiling a new kernel, - the i4b user space tools in "/usr/src/usr.sbin/i4b" must also - be rebuilt, and vice versa. + The interface version of the i4b kernel part has changed. So + after updating the kernel sources and compiling a new kernel, + the i4b user space tools in "/usr/src/usr.sbin/i4b" must also + be rebuilt, and vice versa. 20060627: The XBOX kernel now defaults to the nfe(4) driver instead of @@ -1071,7 +1088,7 @@ COMMON ITEMS: - + To upgrade in-place from 5.x-stable to current Modified: user/thompsa/vaptq/contrib/binutils/bfd/config.bfd ============================================================================== --- user/thompsa/vaptq/contrib/binutils/bfd/config.bfd Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/binutils/bfd/config.bfd Mon Dec 22 20:31:35 2008 (r186399) @@ -768,6 +768,10 @@ case "${targ}" in targ_defvec=bfd_elf32_littlemips_vec targ_selvecs="bfd_elf32_bigmips_vec bfd_elf64_bigmips_vec bfd_elf64_littlemips_vec ecoff_little_vec ecoff_big_vec" ;; + mips*-*-freebsd*) + targ_defvec=bfd_elf32_tradbigmips_vec + targ_selvecs="bfd_elf32_tradlittlemips_vec bfd_elf32_ntradbigmisp_vec bfd_elf32_ntradlittlemips_vec bfd_elf64_tradbigmips_vec bfd_elf64_tradlittlemips_vec ecoff_big_vec ecoff_little_vec" + ;; mips*-*-netbsd*) targ_defvec=bfd_elf32_bigmips_vec targ_selvecs="bfd_elf32_littlemips_vec bfd_elf64_bigmips_vec bfd_elf64_littlemips_vec ecoff_big_vec ecoff_little_vec" Modified: user/thompsa/vaptq/contrib/binutils/gas/config/tc-mips.c ============================================================================== --- user/thompsa/vaptq/contrib/binutils/gas/config/tc-mips.c Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/binutils/gas/config/tc-mips.c Mon Dec 22 20:31:35 2008 (r186399) @@ -281,6 +281,9 @@ static int mips_32bitmode = 0; #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI) +/* True if relocations are stored in-place. */ +#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI) + /* We can only have 64bit addresses if the object file format supports it. */ #define HAVE_32BIT_ADDRESSES \ @@ -13020,6 +13023,26 @@ mips_fix_adjustable (fixS *fixp) if (fixp->fx_addsy == NULL) return 1; + /* If symbol SYM is in a mergeable section, relocations of the form + SYM + 0 can usually be made section-relative. The mergeable data + is then identified by the section offset rather than by the symbol. + + However, if we're generating REL LO16 relocations, the offset is split + between the LO16 and parterning high part relocation. The linker will + need to recalculate the complete offset in order to correctly identify + the merge data. + + The linker has traditionally not looked for the parterning high part + relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be + placed anywhere. Rather than break backwards compatibility by changing + this, it seems better not to force the issue, and instead keep the + original symbol. This will work with either linker behavior. */ + if ((fixp->fx_r_type == BFD_RELOC_LO16 + || reloc_needs_lo_p (fixp->fx_r_type)) + && HAVE_IN_PLACE_ADDENDS + && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0) + return 0; + #ifdef OBJ_ELF if (OUTPUT_FLAVOR == bfd_target_elf_flavour && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16 Copied: user/thompsa/vaptq/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh (from r186398, head/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/thompsa/vaptq/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh Mon Dec 22 20:31:35 2008 (r186399, copy of r186398, head/contrib/binutils/ld/emulparams/elf32bmip_fbsd.sh) @@ -0,0 +1,3 @@ +. ${srcdir}/emulparams/elf32bmip.sh +. ${srcdir}/emulparams/elf_fbsd.sh +GENERATE_PIE_SCRIPT=yes Modified: user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII.c ============================================================================== --- user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII.c Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII.c Mon Dec 22 20:31:35 2008 (r186399) @@ -48,8 +48,7 @@ static void *route_fd; /* if-index allocator */ static uint32_t next_if_index = 1; -/* re-fetch arp table */ -static int update_arp; +/* currently fetching the arp table */ static int in_update_arp; /* OR registrations */ @@ -911,36 +910,6 @@ mib_find_ifa(struct in_addr addr) } /* - * Process a new ARP entry - */ -static void -process_arp(const struct rt_msghdr *rtm, const struct sockaddr_dl *sdl, - const struct sockaddr_in *sa) -{ - struct mibif *ifp; - struct mibarp *at; - - /* IP arp table entry */ - if (sdl->sdl_alen == 0) { - update_arp = 1; - return; - } - if ((ifp = mib_find_if_sys(sdl->sdl_index)) == NULL) - return; - /* have a valid entry */ - if ((at = mib_find_arp(ifp, sa->sin_addr)) == NULL && - (at = mib_arp_create(ifp, sa->sin_addr, - sdl->sdl_data + sdl->sdl_nlen, sdl->sdl_alen)) == NULL) - return; - - if (rtm->rtm_rmx.rmx_expire == 0) - at->flags |= MIBARP_PERM; - else - at->flags &= ~MIBARP_PERM; - at->flags |= MIBARP_FOUND; -} - -/* * Handle a routing socket message. */ static void @@ -1080,46 +1049,12 @@ handle_rtmsg(struct rt_msghdr *rtm) } break; #endif - case RTM_GET: - mib_extract_addrs(rtm->rtm_addrs, (u_char *)(rtm + 1), addrs); - if (rtm->rtm_flags & RTF_LLINFO) { - if (addrs[RTAX_DST] == NULL || - addrs[RTAX_GATEWAY] == NULL || - addrs[RTAX_DST]->sa_family != AF_INET || - addrs[RTAX_GATEWAY]->sa_family != AF_LINK) - break; - process_arp(rtm, - (struct sockaddr_dl *)(void *)addrs[RTAX_GATEWAY], - (struct sockaddr_in *)(void *)addrs[RTAX_DST]); - } else { - if (rtm->rtm_errno == 0 && (rtm->rtm_flags & RTF_UP)) - mib_sroute_process(rtm, addrs[RTAX_GATEWAY], - addrs[RTAX_DST], addrs[RTAX_NETMASK]); - } - break; - case RTM_ADD: - mib_extract_addrs(rtm->rtm_addrs, (u_char *)(rtm + 1), addrs); - if (rtm->rtm_flags & RTF_LLINFO) { - if (addrs[RTAX_DST] == NULL || - addrs[RTAX_GATEWAY] == NULL || - addrs[RTAX_DST]->sa_family != AF_INET || - addrs[RTAX_GATEWAY]->sa_family != AF_LINK) - break; - process_arp(rtm, - (struct sockaddr_dl *)(void *)addrs[RTAX_GATEWAY], - (struct sockaddr_in *)(void *)addrs[RTAX_DST]); - } else { - if (rtm->rtm_errno == 0 && (rtm->rtm_flags & RTF_UP)) - mib_sroute_process(rtm, addrs[RTAX_GATEWAY], - addrs[RTAX_DST], addrs[RTAX_NETMASK]); - } - break; - case RTM_DELETE: mib_extract_addrs(rtm->rtm_addrs, (u_char *)(rtm + 1), addrs); - if (rtm->rtm_errno == 0 && !(rtm->rtm_flags & RTF_LLINFO)) + + if (rtm->rtm_errno == 0 && (rtm->rtm_flags & RTF_UP)) mib_sroute_process(rtm, addrs[RTAX_GATEWAY], addrs[RTAX_DST], addrs[RTAX_NETMASK]); break; @@ -1289,7 +1224,8 @@ update_ifa_info(void) /* * Update arp table - */ + * +*/ void mib_arp_update(void) { @@ -1305,11 +1241,11 @@ mib_arp_update(void) TAILQ_FOREACH(at, &mibarp_list, link) at->flags &= ~MIBARP_FOUND; - if ((buf = mib_fetch_rtab(AF_INET, NET_RT_FLAGS, RTF_LLINFO, &needed)) == NULL) { + if ((buf = mib_fetch_rtab(AF_INET, NET_RT_FLAGS, 0, &needed)) == NULL) { in_update_arp = 0; return; } - + next = buf; while (next < buf + needed) { rtm = (struct rt_msghdr *)(void *)next; @@ -1326,7 +1262,6 @@ mib_arp_update(void) at = at1; } mibarpticks = get_ticks(); - update_arp = 0; in_update_arp = 0; } @@ -1634,8 +1569,8 @@ mibII_idle(void) mib_arp_update(); mib_iflist_bad = 0; } - if (update_arp) - mib_arp_update(); + + mib_arp_update(); } Modified: user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII_route.c ============================================================================== --- user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII_route.c Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/bsnmp/snmp_mibII/mibII_route.c Mon Dec 22 20:31:35 2008 (r186399) @@ -186,8 +186,7 @@ mib_sroute_process(struct rt_msghdr *rtm memcpy(r->index, key.index, sizeof(r->index)); r->ifindex = (ifp == NULL) ? 0 : ifp->index; - r->type = (rtm->rtm_flags & RTF_LLINFO) ? 3 : - (rtm->rtm_flags & RTF_REJECT) ? 2 : 4; + r->type = (rtm->rtm_flags & RTF_REJECT) ? 2 : 4; /* cannot really know, what protocol it runs */ r->proto = (rtm->rtm_flags & RTF_LOCAL) ? 2 : Modified: user/thompsa/vaptq/contrib/ipfilter/ipsend/44arp.c ============================================================================== --- user/thompsa/vaptq/contrib/ipfilter/ipsend/44arp.c Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/ipfilter/ipsend/44arp.c Mon Dec 22 20:31:35 2008 (r186399) @@ -88,7 +88,12 @@ char *addr, *eaddr; mib[2] = 0; mib[3] = AF_INET; mib[4] = NET_RT_FLAGS; +#ifdef RTF_LLINFO mib[5] = RTF_LLINFO; +#else + mib[5] = 0; +#endif + if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1) { perror("route-sysctl-estimate"); Modified: user/thompsa/vaptq/contrib/netcat/FREEBSD-vendor ============================================================================== --- user/thompsa/vaptq/contrib/netcat/FREEBSD-vendor Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/netcat/FREEBSD-vendor Mon Dec 22 20:31:35 2008 (r186399) @@ -1,7 +1,7 @@ # $FreeBSD$ Project: netcat (aka src/usr.bin/nc in OpenBSD) ProjectURL: http://www.openbsd.org/ -Version: 4.3 +Version: 4.4 VendorTag: OPENBSD -VersionTag: OPENBSD_4_3 +VersionTag: OPENBSD_4_4 License: BSD Modified: user/thompsa/vaptq/contrib/netcat/nc.1 ============================================================================== --- user/thompsa/vaptq/contrib/netcat/nc.1 Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/netcat/nc.1 Mon Dec 22 20:31:35 2008 (r186399) @@ -1,4 +1,4 @@ -.\" $OpenBSD: nc.1,v 1.45 2007/05/31 19:20:13 jmc Exp $ +.\" $OpenBSD: nc.1,v 1.47 2008/05/06 16:21:03 jmc Exp $ .\" .\" Copyright (c) 1996 David Sacerdote .\" All rights reserved. @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd $Mdocdate$ +.Dd $Mdocdate: May 6 2008 $ .Dt NC 1 .Os .Sh NAME @@ -36,9 +36,12 @@ .Sh SYNOPSIS .Nm nc .Bk -words -.Op Fl 46DdEhklnOorStUuvz +.Op Fl 46DdEhklnorStUuvz .Op Fl e Ar IPsec_policy +.Op Fl I Ar length .Op Fl i Ar interval +.Op Fl -no-tcpopt +.Op Fl O Ar length .Op Fl P Ar proxy_username .Op Fl p Ar source_port .Op Fl s Ar source_ip_address @@ -118,6 +121,8 @@ each direction is needed. Prints out .Nm help. +.It Fl I Ar length +Specifies the size of the TCP receive buffer. .It Fl i Ar interval Specifies a delay time interval between lines of text sent and received. Also causes a delay time between connections to multiple ports. @@ -146,10 +151,13 @@ option are ignored. .It Fl n Do not do any DNS or service lookups on any specified addresses, hostnames or ports. -.It Fl O +.It Fl -no-tcpopt Disables the use of TCP options on the socket, by setting the boolean TCP_NOOPT socket option. +.It Fl O Ar length +Specifies the size of the TCP send buffer. +When .It Fl o .Dq Once-only mode . By default, Modified: user/thompsa/vaptq/contrib/netcat/netcat.c ============================================================================== --- user/thompsa/vaptq/contrib/netcat/netcat.c Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/contrib/netcat/netcat.c Mon Dec 22 20:31:35 2008 (r186399) @@ -1,4 +1,4 @@ -/* $OpenBSD: netcat.c,v 1.89 2007/02/20 14:11:17 jmc Exp $ */ +/* $OpenBSD: netcat.c,v 1.91 2008/05/09 09:00:11 markus Exp $ */ /* * Copyright (c) 2001 Eric Jackson * @@ -50,6 +50,7 @@ #include #include +#include #include #include #include @@ -78,7 +79,7 @@ int kflag; /* More than one connect int lflag; /* Bind to local port */ int nflag; /* Don't do name look up */ int oflag; /* Once only: stop on EOF */ -int Oflag; /* Do not use TCP options */ +int FreeBSD_Oflag; /* Do not use TCP options */ char *Pflag; /* Proxy username */ char *pflag; /* Localport flag */ int rflag; /* Random ports flag */ @@ -89,6 +90,8 @@ int vflag; /* Verbosity */ int xflag; /* Socks proxy */ int zflag; /* Port Scan Flag */ int Dflag; /* sodebug */ +int Iflag; /* TCP receive buffer size */ +int Oflag; /* TCP send buffer size */ int Sflag; /* TCP MD5 signature option */ int Tflag = -1; /* IP Type of Service */ @@ -129,6 +132,10 @@ main(int argc, char *argv[]) char *proxy; const char *errstr, *proxyhost = "", *proxyport = NULL; struct addrinfo proxyhints; + struct option longopts[] = { + { "no-tcpopt", no_argument, &FreeBSD_Oflag, 1 }, + { NULL, 0, NULL, 0 } + }; ret = 1; ipsec_count = 0; @@ -138,8 +145,9 @@ main(int argc, char *argv[]) uport = NULL; sv = NULL; - while ((ch = getopt(argc, argv, - "46e:DEdhi:jklnoOP:p:rSs:tT:Uuvw:X:x:z")) != -1) { + while ((ch = getopt_long(argc, argv, + "46e:DEdhi:jklnoI:O:P:p:rSs:tT:Uuvw:X:x:z", + longopts, NULL)) != -1) { switch (ch) { case '4': family = AF_INET; @@ -203,9 +211,6 @@ main(int argc, char *argv[]) case 'o': oflag = 1; break; - case 'O': - Oflag = 1; - break; case 'P': Pflag = optarg; break; @@ -244,12 +249,28 @@ main(int argc, char *argv[]) case 'D': Dflag = 1; break; + case 'I': + Iflag = strtonum(optarg, 1, 65536 << 14, &errstr); + if (errstr != NULL) + errx(1, "TCP receive window %s: %s", + errstr, optarg); + break; + case 'O': + Oflag = strtonum(optarg, 1, 65536 << 14, &errstr); + if (errstr != NULL) { + if (strcmp(errstr, "invalid") != 0) + errx(1, "TCP send window %s: %s", + errstr, optarg); + } + break; case 'S': Sflag = 1; break; case 'T': Tflag = parse_iptos(optarg); break; + case 0: + break; default: usage(1); } @@ -512,7 +533,7 @@ int remote_connect(const char *host, const char *port, struct addrinfo hints) { struct addrinfo *res, *res0; - int s, error; + int s, error, on = 1; if ((error = getaddrinfo(host, port, &hints, &res))) errx(1, "getaddrinfo: %s", gai_strerror(error)); @@ -533,6 +554,10 @@ remote_connect(const char *host, const c if (sflag || pflag) { struct addrinfo ahints, *ares; +#ifdef SO_BINDANY + /* try SO_BINDANY, but don't insist */ + setsockopt(s, SOL_SOCKET, SO_BINDANY, &on, sizeof(on)); +#endif memset(&ahints, 0, sizeof(struct addrinfo)); ahints.ai_family = res0->ai_family; ahints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM; @@ -604,9 +629,9 @@ local_listen(char *host, char *port, str if (ipsec_policy[1] != NULL) add_ipsec_policy(s, ipsec_policy[1]); #endif - if (Oflag) { + if (FreeBSD_Oflag) { if (setsockopt(s, IPPROTO_TCP, TCP_NOOPT, - &Oflag, sizeof(Oflag)) == -1) + &FreeBSD_Oflag, sizeof(FreeBSD_Oflag)) == -1) err(1, "disable TCP options"); } @@ -838,9 +863,19 @@ set_common_sockopts(int s) &Tflag, sizeof(Tflag)) == -1) err(1, "set IP ToS"); } + if (Iflag) { + if (setsockopt(s, SOL_SOCKET, SO_RCVBUF, + &Iflag, sizeof(Iflag)) == -1) + err(1, "set TCP receive buffer size"); + } if (Oflag) { - if (setsockopt(s, IPPROTO_TCP, TCP_NOOPT, + if (setsockopt(s, SOL_SOCKET, SO_SNDBUF, &Oflag, sizeof(Oflag)) == -1) + err(1, "set TCP send buffer size"); + } + if (FreeBSD_Oflag) { + if (setsockopt(s, IPPROTO_TCP, TCP_NOOPT, + &FreeBSD_Oflag, sizeof(FreeBSD_Oflag)) == -1) err(1, "disable TCP options"); } } @@ -878,11 +913,13 @@ help(void) #endif fprintf(stderr, "\ \t-h This help text\n\ + \t-I length TCP receive buffer length\n\ \t-i secs\t Delay interval for lines sent, ports scanned\n\ \t-k Keep inbound sockets open for multiple connects\n\ \t-l Listen mode, for inbound connects\n\ \t-n Suppress name/port resolutions\n\ - \t-O Disable TCP options\n\ + \t--no-tcpopt Disable TCP options\n\ + \t-O length TCP send buffer length\n\ \t-o Terminate on EOF on input\n\ \t-P proxyuser\tUsername for proxy authentication\n\ \t-p port\t Specify local port for remote connects\n\ @@ -931,10 +968,11 @@ void usage(int ret) { #ifdef IPSEC - fprintf(stderr, "usage: nc [-46DdEhklnOorStUuvz] [-e policy] [-i interval] [-P proxy_username] [-p source_port]\n"); + fprintf(stderr, "usage: nc [-46DdEhklnorStUuvz] [-e policy] [-I receive_buffer_len] [-i interval]\n"); #else - fprintf(stderr, "usage: nc [-46DdhklnOorStUuvz] [-i interval] [-P proxy_username] [-p source_port]\n"); + fprintf(stderr, "usage: nc [-46DdhklnorStUuvz] [-I receive_buffer_len] [-i interval]\n"); #endif + fprintf(stderr, "\t [-O send_buffer_len] [-P proxy_username] [-p source_port]\n"); fprintf(stderr, "\t [-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_protocol]\n"); fprintf(stderr, "\t [-x proxy_address[:port]] [hostname] [port[s]]\n"); if (ret) Modified: user/thompsa/vaptq/etc/Makefile ============================================================================== --- user/thompsa/vaptq/etc/Makefile Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/etc/Makefile Mon Dec 22 20:31:35 2008 (r186399) @@ -162,6 +162,7 @@ distribution: ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install .endif ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install + ${_+_}cd ${.CURDIR}/devd; ${MAKE} install ${_+_}cd ${.CURDIR}/gss; ${MAKE} install ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install ${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install Modified: user/thompsa/vaptq/etc/devd.conf ============================================================================== --- user/thompsa/vaptq/etc/devd.conf Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/etc/devd.conf Mon Dec 22 20:31:35 2008 (r186399) @@ -277,29 +277,6 @@ notify 0 { action "mixer vol +10"; }; -# The next blocks enable volume hotkeys that can be found on the Asus EeePC -# The four keys above the keyboard notify 0x1a through to 0x1d respectively -notify 0 { - match "system" "ACPI"; - match "subsystem" "ASUS-Eee"; - match "notify" "0x13"; - action "mixer 0"; -}; - -notify 0 { - match "system" "ACPI"; - match "subsystem" "ASUS-Eee"; - match "notify" "0x14"; - action "mixer vol -10"; -}; - -notify 0 { - match "system" "ACPI"; - match "subsystem" "ASUS-Eee"; - match "notify" "0x15"; - action "mixer vol +10"; -}; - /* EXAMPLES TO END OF FILE # The following might be an example of something that a vendor might Modified: user/thompsa/vaptq/etc/mtree/BSD.root.dist ============================================================================== --- user/thompsa/vaptq/etc/mtree/BSD.root.dist Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/etc/mtree/BSD.root.dist Mon Dec 22 20:31:35 2008 (r186399) @@ -28,6 +28,8 @@ .. defaults .. + devd + .. gnats .. gss Modified: user/thompsa/vaptq/etc/rc.d/defaultroute ============================================================================== --- user/thompsa/vaptq/etc/rc.d/defaultroute Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/etc/rc.d/defaultroute Mon Dec 22 20:31:35 2008 (r186399) @@ -30,7 +30,7 @@ defaultroute_start() defif=`get_default_if -inet` if [ -n "${defif}" ]; then if [ ${delay} -ne ${if_up_delay} ]; then - echo "($defif)" + echo -n "($defif)" fi break fi @@ -42,6 +42,8 @@ defaultroute_start() sleep 1 delay=`expr $delay - 1` done + + echo } load_rc_config $name Modified: user/thompsa/vaptq/etc/regdomain.xml ============================================================================== --- user/thompsa/vaptq/etc/regdomain.xml Mon Dec 22 19:52:21 2008 (r186398) +++ user/thompsa/vaptq/etc/regdomain.xml Mon Dec 22 20:31:35 2008 (r186399) @@ -39,7 +39,7 @@ --> DEBUG - 0 + 0x1ff @@ -1080,6 +1080,75 @@ + + + SR9 + 0x0298 + + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + + + + XR9 + 0x299 + + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + + + + GZ901 + 0x29a + + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + + 30 + IEEE80211_CHAN_G + + + @@ -1201,6 +1270,9 @@ 320 Guatemala + + 5002 ZComax GZ-901 + 340 Honduras @@ -1396,6 +1468,12 @@ 792 Turkey + + 5000 Ubiquiti SR9 + + + 5001 Ubiquiti XR9 + 804 Ukraine @@ -1426,6 +1504,10 @@ 716 Zimbabwe + + + 0 Debug +