From owner-p4-projects@FreeBSD.ORG Mon Aug 30 23:10:40 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 607E016A4D0; Mon, 30 Aug 2004 23:10:40 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 072A616A4CE for ; Mon, 30 Aug 2004 23:10:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D426843D2D for ; Mon, 30 Aug 2004 23:10:39 +0000 (GMT) (envelope-from peter@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNAdiV032578 for ; Mon, 30 Aug 2004 23:10:39 GMT (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNAdih032575 for perforce@freebsd.org; Mon, 30 Aug 2004 23:10:39 GMT (envelope-from peter@freebsd.org) Date: Mon, 30 Aug 2004 23:10:39 GMT Message-Id: <200408302310.i7UNAdih032575@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm To: Perforce Change Reviews Subject: PERFORCE change 60735 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:10:41 -0000 http://perforce.freebsd.org/chv.cgi?CH=60735 Change 60735 by peter@peter_daintree on 2004/08/30 23:09:52 IFC @60734 Affected files ... .. //depot/projects/hammer/sbin/geom/class/raid3/geom_raid3.c#5 integrate .. //depot/projects/hammer/sbin/sysctl/sysctl.c#13 integrate .. //depot/projects/hammer/sys/coda/coda_fbsd.c#12 integrate .. //depot/projects/hammer/sys/coda/coda_psdev.c#9 integrate .. //depot/projects/hammer/sys/coda/coda_vfsops.c#10 integrate .. //depot/projects/hammer/sys/conf/Makefile.alpha#7 integrate .. //depot/projects/hammer/sys/conf/Makefile.amd64#15 integrate .. //depot/projects/hammer/sys/conf/Makefile.arm#2 integrate .. //depot/projects/hammer/sys/conf/Makefile.i386#5 integrate .. //depot/projects/hammer/sys/conf/Makefile.ia64#7 integrate .. //depot/projects/hammer/sys/conf/Makefile.pc98#5 integrate .. //depot/projects/hammer/sys/conf/Makefile.powerpc#8 integrate .. //depot/projects/hammer/sys/conf/Makefile.sparc64#6 integrate .. //depot/projects/hammer/sys/conf/NOTES#63 integrate .. //depot/projects/hammer/sys/conf/files#80 integrate .. //depot/projects/hammer/sys/conf/files.pc98#35 integrate .. //depot/projects/hammer/sys/conf/options#56 integrate .. //depot/projects/hammer/sys/conf/options.pc98#26 integrate .. //depot/projects/hammer/sys/dev/acpica/acpi_thermal.c#18 integrate .. //depot/projects/hammer/sys/i386/conf/NOTES#54 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_ing.c#9 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_ipr.c#11 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_isppp.c#9 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_rbch.c#9 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_tel.c#9 integrate .. //depot/projects/hammer/sys/i4b/driver/i4b_trace.c#10 integrate .. //depot/projects/hammer/sys/i4b/layer4/i4b_i4bdrv.c#9 integrate .. //depot/projects/hammer/sys/i4b/layer4/i4b_l4.c#5 integrate .. //depot/projects/hammer/sys/pc98/conf/GENERIC#24 integrate .. //depot/projects/hammer/sys/pc98/pc98/atapi.c#4 integrate .. //depot/projects/hammer/sys/pc98/pc98/wd.c#13 integrate .. //depot/projects/hammer/usr.sbin/config/config.h#6 integrate .. //depot/projects/hammer/usr.sbin/config/config.y#7 integrate .. //depot/projects/hammer/usr.sbin/config/configvers.h#4 integrate .. //depot/projects/hammer/usr.sbin/config/lang.l#6 integrate .. //depot/projects/hammer/usr.sbin/config/mkheaders.c#6 integrate .. //depot/projects/hammer/usr.sbin/config/mkmakefile.c#9 integrate Differences ... ==== //depot/projects/hammer/sbin/geom/class/raid3/geom_raid3.c#5 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sbin/geom/class/raid3/geom_raid3.c,v 1.5 2004/08/28 02:34:10 pjd Exp $"); +__FBSDID("$FreeBSD: src/sbin/geom/class/raid3/geom_raid3.c,v 1.6 2004/08/30 22:08:00 pjd Exp $"); #include #include @@ -280,6 +280,13 @@ str += strlen(_PATH_DEV); strlcpy(md.md_provider, str, sizeof(md.md_provider)); } + if (*verify && md.md_no == md.md_all - 1) { + /* + * In "verify" mode, force synchronization of parity + * component on start. + */ + md.md_syncid = 0; + } raid3_metadata_encode(&md, sector); error = g_metadata_store(str, sector, sizeof(sector)); if (error != 0) { ==== //depot/projects/hammer/sbin/sysctl/sysctl.c#13 (text+ko) ==== @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)from: sysctl.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$FreeBSD: src/sbin/sysctl/sysctl.c,v 1.61 2004/04/09 19:58:39 markm Exp $"; + "$FreeBSD: src/sbin/sysctl/sysctl.c,v 1.62 2004/08/30 22:42:10 peter Exp $"; #endif /* not lint */ #ifdef __i386__ ==== //depot/projects/hammer/sys/coda/coda_fbsd.c#12 (text+ko) ==== @@ -29,7 +29,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/coda/coda_fbsd.c,v 1.36 2004/07/15 08:25:59 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/coda/coda_fbsd.c,v 1.37 2004/08/30 23:03:56 peter Exp $"); #include "opt_coda.h" ==== //depot/projects/hammer/sys/coda/coda_psdev.c#9 (text+ko) ==== @@ -49,7 +49,7 @@ /* These routines are the device entry points for Venus. */ #include -__FBSDID("$FreeBSD: src/sys/coda/coda_psdev.c,v 1.30 2004/06/16 09:46:32 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/coda/coda_psdev.c,v 1.31 2004/08/30 23:03:56 peter Exp $"); extern int coda_nc_initialized; /* Set if cache has been initialized */ ==== //depot/projects/hammer/sys/coda/coda_vfsops.c#10 (text+ko) ==== @@ -41,7 +41,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/coda/coda_vfsops.c,v 1.51 2004/07/30 22:08:49 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/coda/coda_vfsops.c,v 1.52 2004/08/30 23:03:56 peter Exp $"); #include "opt_coda.h" ==== //depot/projects/hammer/sys/conf/Makefile.alpha#7 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.alpha -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.alpha 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.alpha,v 1.130 2004/05/09 22:29:37 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.alpha,v 1.131 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 .if !defined(S) .if exists(./@/.) ==== //depot/projects/hammer/sys/conf/Makefile.amd64#15 (text+ko) ==== @@ -2,7 +2,7 @@ # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 # from FreeBSD: src/sys/conf/Makefile.i386,v 1.255 2002/02/20 23:35:49 -# $FreeBSD: src/sys/conf/Makefile.amd64,v 1.11 2004/05/09 22:29:37 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.amd64,v 1.12 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 STD8X16FONT?= iso ==== //depot/projects/hammer/sys/conf/Makefile.arm#2 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.arm -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.arm,v 1.1 2004/05/14 11:49:40 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.arm,v 1.2 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 # Temporary stuff while we're still embryonic NO_MODULES?= yes ==== //depot/projects/hammer/sys/conf/Makefile.i386#5 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.i386,v 1.260 2004/05/09 22:29:37 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.i386,v 1.261 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 STD8X16FONT?= iso ==== //depot/projects/hammer/sys/conf/Makefile.ia64#7 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.ia64 -- with config changes. # Copyright 1990 W. Jolitz # from: src/sys/conf/Makefile.alpha,v 1.76 -# $FreeBSD: src/sys/conf/Makefile.ia64,v 1.57 2004/05/09 22:29:37 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.ia64,v 1.58 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -19,7 +19,7 @@ GCC3= you bet # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 STD8X16FONT?= iso ==== //depot/projects/hammer/sys/conf/Makefile.pc98#5 (text+ko) ==== @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.pc98,v 1.161 2004/05/09 22:29:37 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.pc98,v 1.162 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -19,7 +19,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 .if !defined(S) .if exists(./@/.) ==== //depot/projects/hammer/sys/conf/Makefile.powerpc#8 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.powerpc -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.powerpc,v 1.270 2004/08/13 14:30:26 ru Exp $ +# $FreeBSD: src/sys/conf/Makefile.powerpc,v 1.271 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 # Temporary stuff while we're still embryonic NO_MODULES?= yes ==== //depot/projects/hammer/sys/conf/Makefile.sparc64#6 (text+ko) ==== @@ -1,7 +1,7 @@ # Makefile.sparc64 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $FreeBSD: src/sys/conf/Makefile.sparc64,v 1.28 2004/05/09 22:29:38 cognet Exp $ +# $FreeBSD: src/sys/conf/Makefile.sparc64,v 1.29 2004/08/30 23:03:56 peter Exp $ # # Makefile for FreeBSD # @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500013 +%VERSREQ= 600000 STD8X16FONT?= iso ==== //depot/projects/hammer/sys/conf/NOTES#63 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/NOTES,v 1.1269 2004/08/29 15:03:06 ru Exp $ +# $FreeBSD: src/sys/conf/NOTES,v 1.1270 2004/08/30 23:03:56 peter Exp $ # # NOTES -- Lines that can be cut/pasted into kernel and hints configs. # ==== //depot/projects/hammer/sys/conf/files#80 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/files,v 1.947 2004/08/29 11:26:36 des Exp $ +# $FreeBSD: src/sys/conf/files,v 1.948 2004/08/30 23:03:56 peter Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and ==== //depot/projects/hammer/sys/conf/files.pc98#35 (text+ko) ==== @@ -3,7 +3,7 @@ # # modified for PC-9801 # -# $FreeBSD: src/sys/conf/files.pc98,v 1.305 2004/08/16 13:59:01 rwatson Exp $ +# $FreeBSD: src/sys/conf/files.pc98,v 1.306 2004/08/30 23:03:56 peter Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and ==== //depot/projects/hammer/sys/conf/options#56 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/options,v 1.479 2004/08/29 11:10:09 des Exp $ +# $FreeBSD: src/sys/conf/options,v 1.480 2004/08/30 23:03:56 peter Exp $ # # On the handling of kernel options # ==== //depot/projects/hammer/sys/conf/options.pc98#26 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/options.pc98,v 1.179 2004/08/22 15:13:08 nyan Exp $ +# $FreeBSD: src/sys/conf/options.pc98,v 1.180 2004/08/30 23:03:57 peter Exp $ # Options specific to the pc98 platform kernels AUTO_EOI_1 opt_auto_eoi.h ==== //depot/projects/hammer/sys/dev/acpica/acpi_thermal.c#18 (text+ko) ==== @@ -26,7 +26,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/dev/acpica/acpi_thermal.c,v 1.48 2004/08/13 06:22:17 njl Exp $"); +__FBSDID("$FreeBSD: src/sys/dev/acpica/acpi_thermal.c,v 1.49 2004/08/30 22:42:10 peter Exp $"); #include "opt_acpi.h" #include ==== //depot/projects/hammer/sys/i386/conf/NOTES#54 (text+ko) ==== @@ -4,7 +4,7 @@ # This file contains machine dependent kernel configuration notes. For # machine independent notes, look in /sys/conf/NOTES. # -# $FreeBSD: src/sys/i386/conf/NOTES,v 1.1171 2004/08/29 11:11:31 des Exp $ +# $FreeBSD: src/sys/i386/conf/NOTES,v 1.1172 2004/08/30 23:03:57 peter Exp $ # # ==== //depot/projects/hammer/sys/i4b/driver/i4b_ing.c#9 (text+ko) ==== @@ -31,7 +31,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_ing.c,v 1.22 2004/07/06 06:43:45 ru Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_ing.c,v 1.23 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/driver/i4b_ipr.c#11 (text+ko) ==== @@ -54,7 +54,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_ipr.c,v 1.28 2004/08/27 18:33:06 andre Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_ipr.c,v 1.29 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/driver/i4b_isppp.c#9 (text+ko) ==== @@ -39,7 +39,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_isppp.c,v 1.25 2003/10/31 18:32:07 brooks Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_isppp.c,v 1.26 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/driver/i4b_rbch.c#9 (text+ko) ==== @@ -31,7 +31,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_rbch.c,v 1.33 2004/06/16 09:47:10 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_rbch.c,v 1.34 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/driver/i4b_tel.c#9 (text+ko) ==== @@ -31,7 +31,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_tel.c,v 1.34 2004/06/16 09:47:10 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_tel.c,v 1.35 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/driver/i4b_trace.c#10 (text+ko) ==== @@ -33,7 +33,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_trace.c,v 1.30 2004/06/16 09:47:10 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/driver/i4b_trace.c,v 1.31 2004/08/30 23:03:57 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/layer4/i4b_i4bdrv.c#9 (text+ko) ==== @@ -31,7 +31,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/layer4/i4b_i4bdrv.c,v 1.41 2004/06/16 09:47:10 phk Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/layer4/i4b_i4bdrv.c,v 1.42 2004/08/30 23:03:58 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/i4b/layer4/i4b_l4.c#5 (text+ko) ==== @@ -31,7 +31,7 @@ *---------------------------------------------------------------------------*/ #include -__FBSDID("$FreeBSD: src/sys/i4b/layer4/i4b_l4.c,v 1.17 2003/06/11 00:01:05 obrien Exp $"); +__FBSDID("$FreeBSD: src/sys/i4b/layer4/i4b_l4.c,v 1.18 2004/08/30 23:03:58 peter Exp $"); #include "opt_i4b.h" ==== //depot/projects/hammer/sys/pc98/conf/GENERIC#24 (text+ko) ==== @@ -16,7 +16,7 @@ # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # -# $FreeBSD: src/sys/pc98/conf/GENERIC,v 1.256 2004/08/27 15:16:23 andre Exp $ +# $FreeBSD: src/sys/pc98/conf/GENERIC,v 1.257 2004/08/30 23:03:58 peter Exp $ machine pc98 #cpu I386_CPU # Do not enable with other cpu types ==== //depot/projects/hammer/sys/pc98/pc98/atapi.c#4 (text+ko) ==== @@ -13,7 +13,7 @@ * * Version 1.9, Mon Oct 9 22:34:47 MSK 1995 * - * $FreeBSD: src/sys/pc98/pc98/atapi.c,v 1.10 2003/03/02 16:54:39 des Exp $ + * $FreeBSD: src/sys/pc98/pc98/atapi.c,v 1.11 2004/08/30 23:03:58 peter Exp $ */ /* ==== //depot/projects/hammer/sys/pc98/pc98/wd.c#13 (text+ko) ==== @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $FreeBSD: src/sys/pc98/pc98/wd.c,v 1.138 2004/08/29 11:10:09 des Exp $ + * $FreeBSD: src/sys/pc98/pc98/wd.c,v 1.139 2004/08/30 23:03:58 peter Exp $ */ /* TODO: ==== //depot/projects/hammer/usr.sbin/config/config.h#6 (text+ko) ==== @@ -27,7 +27,7 @@ * SUCH DAMAGE. * * @(#)config.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD: src/usr.sbin/config/config.h,v 1.54 2004/08/07 04:19:37 imp Exp $ + * $FreeBSD: src/usr.sbin/config/config.h,v 1.55 2004/08/30 23:03:56 peter Exp $ */ /* ==== //depot/projects/hammer/usr.sbin/config/config.y#7 (text+ko) ==== @@ -66,7 +66,7 @@ * SUCH DAMAGE. * * @(#)config.y 8.1 (Berkeley) 6/6/93 - * $FreeBSD: src/usr.sbin/config/config.y,v 1.63 2004/05/09 22:29:00 cognet Exp $ + * $FreeBSD: src/usr.sbin/config/config.y,v 1.64 2004/08/30 23:03:56 peter Exp $ */ #include ==== //depot/projects/hammer/usr.sbin/config/configvers.h#4 (text+ko) ==== @@ -6,6 +6,6 @@ * The numbering scheme is inspired by the sys/conf/newvers.sh RELDATE * and system. * - * $FreeBSD: src/usr.sbin/config/configvers.h,v 1.32 2004/05/09 22:29:00 cognet Exp $ + * $FreeBSD: src/usr.sbin/config/configvers.h,v 1.33 2004/08/30 23:03:56 peter Exp $ */ -#define CONFIGVERS 500013 +#define CONFIGVERS 600000 ==== //depot/projects/hammer/usr.sbin/config/lang.l#6 (text+ko) ==== @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * @(#)lang.l 8.1 (Berkeley) 6/6/93 - * $FreeBSD: src/usr.sbin/config/lang.l,v 1.37 2004/08/07 04:19:37 imp Exp $ + * $FreeBSD: src/usr.sbin/config/lang.l,v 1.38 2004/08/30 23:03:56 peter Exp $ */ #include ==== //depot/projects/hammer/usr.sbin/config/mkheaders.c#6 (text+ko) ==== @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)mkheaders.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$FreeBSD: src/usr.sbin/config/mkheaders.c,v 1.29 2004/08/07 04:19:37 imp Exp $"; + "$FreeBSD: src/usr.sbin/config/mkheaders.c,v 1.30 2004/08/30 23:03:56 peter Exp $"; #endif /* not lint */ /* ==== //depot/projects/hammer/usr.sbin/config/mkmakefile.c#9 (text+ko) ==== @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)mkmakefile.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$FreeBSD: src/usr.sbin/config/mkmakefile.c,v 1.80 2004/08/07 04:19:37 imp Exp $"; + "$FreeBSD: src/usr.sbin/config/mkmakefile.c,v 1.81 2004/08/30 23:03:56 peter Exp $"; #endif /* not lint */ /*