Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386 add __KERNEL_RCSID()
details: https://anonhg.NetBSD.org/src/rev/7dfcd1d2f5ba
branches: trunk
changeset: 549483:7dfcd1d2f5ba
user: lukem <lukem%NetBSD.org@localhost>
date: Mon Jul 14 22:13:09 2003 +0000
description:
add __KERNEL_RCSID()
diffstat:
sys/arch/i386/bios/vesa_raster8.c | 5 ++++-
sys/arch/i386/bios/vesa_text.c | 5 ++++-
sys/arch/i386/bios/vesabios.c | 5 ++++-
sys/arch/i386/i386/cpu.c | 5 ++++-
sys/arch/i386/i386/identcpu.c | 5 ++++-
sys/arch/i386/i386/ipifuncs.c | 7 ++++---
sys/arch/i386/pci/p64h2apic.c | 5 ++++-
7 files changed, 28 insertions(+), 9 deletions(-)
diffs (118 lines):
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/bios/vesa_raster8.c
--- a/sys/arch/i386/bios/vesa_raster8.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/bios/vesa_raster8.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,7 @@
-/* $NetBSD: vesa_raster8.c,v 1.7 2003/04/01 20:52:35 thorpej Exp $ */
+/* $NetBSD: vesa_raster8.c,v 1.8 2003/07/14 22:13:09 lukem Exp $ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: vesa_raster8.c,v 1.8 2003/07/14 22:13:09 lukem Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/bios/vesa_text.c
--- a/sys/arch/i386/bios/vesa_text.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/bios/vesa_text.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,7 @@
-/* $NetBSD: vesa_text.c,v 1.4 2002/10/02 05:47:11 thorpej Exp $ */
+/* $NetBSD: vesa_text.c,v 1.5 2003/07/14 22:13:09 lukem Exp $ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: vesa_text.c,v 1.5 2003/07/14 22:13:09 lukem Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/bios/vesabios.c
--- a/sys/arch/i386/bios/vesabios.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/bios/vesabios.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,7 @@
-/* $NetBSD: vesabios.c,v 1.9 2003/01/01 01:24:19 thorpej Exp $ */
+/* $NetBSD: vesabios.c,v 1.10 2003/07/14 22:13:09 lukem Exp $ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: vesabios.c,v 1.10 2003/07/14 22:13:09 lukem Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/i386/cpu.c
--- a/sys/arch/i386/i386/cpu.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/i386/cpu.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.14 2003/04/25 21:54:29 fvdl Exp $ */
+/* $NetBSD: cpu.c,v 1.15 2003/07/14 22:13:10 lukem Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -70,6 +70,9 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.15 2003/07/14 22:13:10 lukem Exp $");
+
#include "opt_ddb.h"
#include "opt_multiprocessor.h"
#include "opt_mpbios.h" /* for MPDEBUG */
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/i386/identcpu.c
--- a/sys/arch/i386/i386/identcpu.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/i386/identcpu.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: identcpu.c,v 1.4 2003/05/12 11:01:17 joda Exp $ */
+/* $NetBSD: identcpu.c,v 1.5 2003/07/14 22:13:10 lukem Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.5 2003/07/14 22:13:10 lukem Exp $");
+
#include "opt_cputype.h"
#include <sys/param.h>
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/i386/ipifuncs.c
--- a/sys/arch/i386/i386/ipifuncs.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/i386/ipifuncs.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ipifuncs.c,v 1.9 2003/06/28 11:33:19 fvdl Exp $ */
+/* $NetBSD: ipifuncs.c,v 1.10 2003/07/14 22:13:10 lukem Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -39,12 +39,13 @@
*/
-#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-
/*
* Interprocessor interrupt handlers.
*/
+#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
+__KERNEL_RCSID(0, "$NetBSD: ipifuncs.c,v 1.10 2003/07/14 22:13:10 lukem Exp $");
+
#include "opt_ddb.h"
#include "opt_mtrr.h"
#include "npx.h"
diff -r 33df600e0054 -r 7dfcd1d2f5ba sys/arch/i386/pci/p64h2apic.c
--- a/sys/arch/i386/pci/p64h2apic.c Mon Jul 14 21:13:48 2003 +0000
+++ b/sys/arch/i386/pci/p64h2apic.c Mon Jul 14 22:13:09 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: p64h2apic.c,v 1.4 2002/10/17 22:03:40 thorpej Exp $ */
+/* $NetBSD: p64h2apic.c,v 1.5 2003/07/14 22:13:10 lukem Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -44,6 +44,9 @@
* thwak the ioapic into working correctly.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: p64h2apic.c,v 1.5 2003/07/14 22:13:10 lukem Exp $");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
Home |
Main Index |
Thread Index |
Old Index