From 85186e4602a8f84f1c5b5d414af18f624ab04720 Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Wed, 7 Oct 1998 03:20:52 +0000 Subject: Add support for the ASC3550 AdvanSys SCSI Host Controller (aka 940UW). --- sys/dev/advansys/adwmcode.h | 126 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 sys/dev/advansys/adwmcode.h (limited to 'sys/dev/advansys/adwmcode.h') diff --git a/sys/dev/advansys/adwmcode.h b/sys/dev/advansys/adwmcode.h new file mode 100644 index 000000000000..41abbf8a9caf --- /dev/null +++ b/sys/dev/advansys/adwmcode.h @@ -0,0 +1,126 @@ +/* + * Exported interface to downloadable microcode for AdvanSys SCSI Adapters + * + * $Id: advmcode.h,v 1.4 1998/09/15 07:03:34 gibbs Exp $ + * + * Obtained from: + * + * Copyright (c) 1995-1998 Advanced System Products, Inc. + * All Rights Reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that redistributions of source + * code retain the above copyright notice and this comment without + * modification. + */ + +#ifndef _ADMCODE_H_ +#define _ADMCODE_H_ + +extern u_int16_t adw_mcode[]; +extern u_int16_t adw_mcode_size; +extern u_int32_t adw_mcode_chksum; + +/* + * Fixed LRAM locations of microcode operating variables. + */ +#define ADW_MC_CODE_BEGIN_ADDR 0x0028 /* microcode start address */ +#define ADW_MC_CODE_END_ADDR 0x002A /* microcode end address */ +#define ADW_MC_CODE_CHK_SUM 0x002C /* microcode code checksum */ +#define ADW_MC_STACK_BEGIN 0x002E /* microcode stack begin */ +#define ADW_MC_STACK_END 0x0030 /* microcode stack end */ +#define ADW_MC_VERSION_DATE 0x0038 /* microcode version */ +#define ADW_MC_VERSION_NUM 0x003A /* microcode number */ +#define ADW_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */ +#define ADW_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */ +#define ADW_MC_HALTCODE 0x0094 /* microcode halt code */ +#define ADW_MC_CALLERPC 0x0096 /* microcode halt caller PC */ +#define ADW_MC_ADAPTER_SCSI_ID 0x0098 /* one ID byte + reserved */ +#define ADW_MC_ULTRA_ABLE 0x009C +#define ADW_MC_SDTR_ABLE 0x009E +#define ADW_MC_TAGQNG_ABLE 0x00A0 +#define ADW_MC_DISC_ENABLE 0x00A2 +#define ADW_MC_IDLE_CMD 0x00A6 +#define ADW_MC_IDLE_PARA_STAT 0x00A8 +#define ADW_MC_DEFAULT_SCSI_CFG0 0x00AC +#define ADW_MC_DEFAULT_SCSI_CFG1 0x00AE +#define ADW_MC_DEFAULT_MEM_CFG 0x00B0 +#define ADW_MC_DEFAULT_SEL_MASK 0x00B2 +#define ADW_MC_RISC_NEXT_READY 0x00B4 +#define ADW_MC_RISC_NEXT_DONE 0x00B5 +#define ADW_MC_SDTR_DONE 0x00B6 +#define ADW_MC_NUMBER_OF_QUEUED_CMD 0x00C0 +#define ADW_MC_NUMBER_OF_MAX_CMD 0x00D0 +#define ADW_MC_DEVICE_HSHK_CFG_TABLE 0x0100 +#define ADW_HSHK_CFG_WIDE_XFR 0x8000 +#define ADW_HSHK_CFG_RATE_MASK 0x0F00 +#define ADW_HSHK_CFG_RATE_SHIFT 8 +#define ADW_HSHK_CFG_PERIOD_FACTOR(cfg_val) \ +((((((cfg_val) & ADW_HSHK_CFG_RATE_MASK) >> ADW_HSHK_CFG_RATE_SHIFT) \ + * 25) + 50)/4) +#define ADW_HSHK_CFG_OFFSET 0x001F +#define ADW_MC_WDTR_ABLE 0x0120 /* Wide Transfer TID bitmask. */ +#define ADW_MC_CONTROL_FLAG 0x0122 /* Microcode control flag. */ +#define ADW_MC_CONTROL_IGN_PERR 0x0001 /* Ignore DMA Parity Errors */ +#define ADW_MC_WDTR_DONE 0x0124 +#define ADW_MC_HOST_NEXT_READY 0x0128 /* Host Next Ready RQL Entry. */ +#define ADW_MC_HOST_NEXT_DONE 0x0129 /* Host Next Done RQL Entry. */ + +/* + * LRAM RISC Queue Lists (LRAM addresses 0x1200 - 0x19FF) + * + * Each of the 255 Adv Library/Microcode RISC queue lists or mailboxes + * starting at LRAM address 0x1200 is 8 bytes and has the following + * structure. Only 253 of these are actually used for command queues. + */ +#define ADW_MC_RISC_Q_LIST_BASE 0x1200 +#define ADW_MC_RISC_Q_LIST_SIZE 0x0008 +#define ADW_MC_RISC_Q_TOTAL_CNT 0x00FF /* Num. queue slots in LRAM. */ +#define ADW_MC_RISC_Q_FIRST 0x0001 +#define ADW_MC_RISC_Q_LAST 0x00FF + +/* RISC Queue List structure - 8 bytes */ +#define RQL_FWD 0 /* forward pointer (1 byte) */ +#define RQL_BWD 1 /* backward pointer (1 byte) */ +#define RQL_STATE 2 /* state byte - free, ready, done, aborted (1 byte) */ +#define RQL_TID 3 /* request target id (1 byte) */ +#define RQL_PHYADDR 4 /* request physical pointer (4 bytes) */ + +/* RISC Queue List state values */ +#define ADW_MC_QS_FREE 0x00 +#define ADW_MC_QS_READY 0x01 +#define ADW_MC_QS_DONE 0x40 +#define ADW_MC_QS_ABORTED 0x80 + +/* RISC Queue List pointer values */ +#define ADW_MC_NULL_Q 0x00 +#define ADW_MC_BIOS_Q 0xFF + +/* ADW_SCSI_REQ_Q 'cntl' field values */ +#define ADW_MC_QC_START_MOTOR 0x02 /* Issue start motor. */ +#define ADW_MC_QC_NO_OVERRUN 0x04 /* Don't report overrun. */ +#define ADW_MC_QC_FIRST_DMA 0x08 /* Internal microcode flag. */ +#define ADW_MC_QC_ABORTED 0x10 /* Request aborted by host. */ +#define ADW_MC_QC_REQ_SENSE 0x20 /* Auto-Request Sense. */ +#define ADW_MC_QC_DOS_REQ 0x80 /* Request issued by DOS. */ + +/* + * Microcode idle loop commands + */ +typedef enum { + ADW_IDLE_CMD_COMPLETED = 0x0000, + ADW_IDLE_CMD_STOP_CHIP = 0x0001, + ADW_IDLE_CMD_STOP_CHIP_SEND_INT = 0x0002, + ADW_IDLE_CMD_SEND_INT = 0x0004, + ADW_IDLE_CMD_ABORT = 0x0008, + ADW_IDLE_CMD_DEVICE_RESET = 0x0010, + ADW_IDLE_CMD_SCSI_RESET = 0x0020 +} adw_idle_cmd_t; + +typedef enum { + ADW_IDLE_CMD_FAILURE = 0x0000, + ADW_IDLE_CMD_SUCCESS = 0x0001 +} adw_idle_cmd_status_t; + + +#endif /* _ADMCODE_H_ */ -- cgit v1.3 From c3aac50f284c6cca5b4f2eb46aaa13812cb8b630 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 28 Aug 1999 01:08:13 +0000 Subject: $Id$ -> $FreeBSD$ --- bin/chflags/chflags.1 | 2 +- lib/libpam/modules/pam_login_access/login.access.5 | 2 +- share/colldef/Makefile | 2 +- share/colldef/de_DE.DIS_8859-15.src | 2 +- share/colldef/de_DE.ISO8859-1.src | 2 +- share/colldef/de_DE.ISO8859-15.src | 2 +- share/colldef/de_DE.ISO_8859-1.src | 2 +- share/colldef/de_DE.ISO_8859-15.src | 2 +- share/colldef/es_ES.DIS_8859-15.src | 2 +- share/colldef/es_ES.ISO8859-1.src | 2 +- share/colldef/es_ES.ISO8859-15.src | 2 +- share/colldef/es_ES.ISO_8859-1.src | 2 +- share/colldef/es_ES.ISO_8859-15.src | 2 +- share/colldef/is_IS.DIS_8859-15.src | 2 +- share/colldef/is_IS.ISO8859-1.src | 2 +- share/colldef/is_IS.ISO8859-15.src | 2 +- share/colldef/is_IS.ISO_8859-1.src | 2 +- share/colldef/is_IS.ISO_8859-15.src | 2 +- share/colldef/la_LN.ASCII.src | 2 +- share/colldef/la_LN.DIS_8859-15.src | 2 +- share/colldef/la_LN.ISO8859-1.src | 2 +- share/colldef/la_LN.ISO8859-15.src | 2 +- share/colldef/la_LN.ISO8859-2.src | 2 +- share/colldef/la_LN.ISO_8859-1.src | 2 +- share/colldef/la_LN.ISO_8859-15.src | 2 +- share/colldef/la_LN.ISO_8859-2.src | 2 +- share/colldef/la_LN.US-ASCII.src | 2 +- share/colldef/lt_LN.ASCII.src | 2 +- share/colldef/lt_LN.DIS_8859-15.src | 2 +- share/colldef/lt_LN.ISO_8859-1.src | 2 +- share/colldef/lt_LN.ISO_8859-2.src | 2 +- share/colldef/ru_RU.CP866.src | 2 +- share/colldef/ru_RU.KOI8-R.src | 2 +- share/colldef/ru_SU.CP866.src | 2 +- share/colldef/ru_SU.KOI8-R.src | 2 +- share/mklocale/Makefile | 2 +- share/mklocale/la_LN.ISO8859-2.src | 2 +- share/mklocale/la_LN.ISO_8859-2.src | 2 +- share/mklocale/lt_LN.ISO_8859-2.src | 2 +- share/mklocale/zh_CN.EUC.src | 2 +- share/mklocale/zh_CN.eucCN.src | 2 +- sys/Makefile | 2 +- sys/alpha/alpha/atomic.s | 2 +- sys/alpha/alpha/autoconf.c | 2 +- sys/alpha/alpha/busdma_machdep.c | 2 +- sys/alpha/alpha/clock.c | 2 +- sys/alpha/alpha/clock_if.m | 2 +- sys/alpha/alpha/cpuconf.c | 2 +- sys/alpha/alpha/dec_axppci_33.c | 2 +- sys/alpha/alpha/dec_eb164.c | 2 +- sys/alpha/alpha/dec_eb64plus.c | 2 +- sys/alpha/alpha/dec_kn8ae.c | 2 +- sys/alpha/alpha/diskslice_machdep.c | 2 +- sys/alpha/alpha/elf_machdep.c | 2 +- sys/alpha/alpha/exception.s | 2 +- sys/alpha/alpha/fp_emulate.c | 2 +- sys/alpha/alpha/genassym.c | 2 +- sys/alpha/alpha/gensetdefs.c | 2 +- sys/alpha/alpha/ieee_float.c | 2 +- sys/alpha/alpha/ieee_float.h | 2 +- sys/alpha/alpha/in_cksum.c | 2 +- sys/alpha/alpha/interrupt.c | 2 +- sys/alpha/alpha/ipl_funcs.c | 2 +- sys/alpha/alpha/locore.s | 2 +- sys/alpha/alpha/machdep.c | 2 +- sys/alpha/alpha/mem.c | 2 +- sys/alpha/alpha/pmap.c | 2 +- sys/alpha/alpha/procfs_machdep.c | 2 +- sys/alpha/alpha/promcons.c | 2 +- sys/alpha/alpha/setdef0.c | 2 +- sys/alpha/alpha/setdef1.c | 2 +- sys/alpha/alpha/sgmap.c | 2 +- sys/alpha/alpha/support.s | 2 +- sys/alpha/alpha/swtch.s | 2 +- sys/alpha/alpha/sys_machdep.c | 2 +- sys/alpha/alpha/timerreg.h | 2 +- sys/alpha/alpha/trap.c | 2 +- sys/alpha/alpha/vm_machdep.c | 2 +- sys/alpha/conf/GENERIC | 2 +- sys/alpha/conf/Makefile.alpha | 2 +- sys/alpha/conf/NOTES | 2 +- sys/alpha/conf/SIMOS | 2 +- sys/alpha/conf/devices.alpha | 2 +- sys/alpha/conf/files.alpha | 2 +- sys/alpha/conf/majors.alpha | 2 +- sys/alpha/conf/options.alpha | 2 +- sys/alpha/include/_limits.h | 2 +- sys/alpha/include/alpha_cpu.h | 2 +- sys/alpha/include/ansi.h | 2 +- sys/alpha/include/asm.h | 2 +- sys/alpha/include/atomic.h | 2 +- sys/alpha/include/bootinfo.h | 2 +- sys/alpha/include/bus.h | 2 +- sys/alpha/include/bus_memio.h | 2 +- sys/alpha/include/bus_pio.h | 2 +- sys/alpha/include/bwx.h | 2 +- sys/alpha/include/chipset.h | 2 +- sys/alpha/include/clock.h | 2 +- sys/alpha/include/cpu.h | 2 +- sys/alpha/include/cpufunc.h | 2 +- sys/alpha/include/elf.h | 2 +- sys/alpha/include/elf_machdep.h | 2 +- sys/alpha/include/endian.h | 2 +- sys/alpha/include/float.h | 2 +- sys/alpha/include/fpu.h | 2 +- sys/alpha/include/frame.h | 2 +- sys/alpha/include/ieee.h | 2 +- sys/alpha/include/ieeefp.h | 2 +- sys/alpha/include/in_cksum.h | 2 +- sys/alpha/include/inst.h | 2 +- sys/alpha/include/intr.h | 2 +- sys/alpha/include/intrcnt.h | 2 +- sys/alpha/include/ioctl_fd.h | 2 +- sys/alpha/include/ipl.h | 2 +- sys/alpha/include/limits.h | 2 +- sys/alpha/include/lock.h | 2 +- sys/alpha/include/md_var.h | 2 +- sys/alpha/include/mouse.h | 2 +- sys/alpha/include/pal.h | 2 +- sys/alpha/include/param.h | 2 +- sys/alpha/include/pc/bios.h | 2 +- sys/alpha/include/pc/display.h | 2 +- sys/alpha/include/pc/msdos.h | 2 +- sys/alpha/include/pc/vesa.h | 2 +- sys/alpha/include/pcb.h | 2 +- sys/alpha/include/pmap.h | 2 +- sys/alpha/include/proc.h | 2 +- sys/alpha/include/profile.h | 2 +- sys/alpha/include/psl.h | 2 +- sys/alpha/include/pte.h | 2 +- sys/alpha/include/ptrace.h | 2 +- sys/alpha/include/reg.h | 2 +- sys/alpha/include/resource.h | 2 +- sys/alpha/include/setjmp.h | 2 +- sys/alpha/include/sgmap.h | 2 +- sys/alpha/include/signal.h | 2 +- sys/alpha/include/stdarg.h | 2 +- sys/alpha/include/swiz.h | 2 +- sys/alpha/include/sysarch.h | 2 +- sys/alpha/include/types.h | 2 +- sys/alpha/include/varargs.h | 2 +- sys/alpha/include/vmparam.h | 2 +- sys/alpha/isa/isa.c | 2 +- sys/alpha/isa/isa_dma.c | 2 +- sys/alpha/isa/isavar.h | 2 +- sys/alpha/isa/mcclock_isa.c | 2 +- sys/alpha/linux/Makefile | 2 +- sys/alpha/linux/linux.h | 2 +- sys/alpha/linux/linux_dummy.c | 2 +- sys/alpha/linux/linux_genassym.c | 2 +- sys/alpha/linux/linux_sysvec.c | 2 +- sys/alpha/linux/syscalls.conf | 2 +- sys/alpha/linux/syscalls.master | 2 +- sys/alpha/pci/apecs.c | 2 +- sys/alpha/pci/apecs_pci.c | 2 +- sys/alpha/pci/apecsvar.h | 2 +- sys/alpha/pci/cia.c | 2 +- sys/alpha/pci/cia_pci.c | 2 +- sys/alpha/pci/ciareg.h | 2 +- sys/alpha/pci/ciavar.h | 2 +- sys/alpha/pci/lca.c | 2 +- sys/alpha/pci/lca_pci.c | 2 +- sys/alpha/pci/lcavar.h | 2 +- sys/alpha/pci/pcibus.c | 2 +- sys/alpha/pci/pcibus.h | 2 +- sys/alpha/pci/tsunami_pci.c | 2 +- sys/alpha/pci/tsunamireg.h | 2 +- sys/alpha/pci/tsunamivar.h | 2 +- sys/alpha/tc/am7990.c | 2 +- sys/alpha/tc/am7990reg.h | 2 +- sys/alpha/tc/am7990var.h | 2 +- sys/alpha/tc/ascvar.h | 2 +- sys/alpha/tc/esp.c | 2 +- sys/alpha/tc/espreg.h | 2 +- sys/alpha/tc/espvar.h | 2 +- sys/alpha/tc/if_le_dec.c | 2 +- sys/alpha/tc/if_le_ioasic.c | 2 +- sys/alpha/tc/if_levar.h | 2 +- sys/alpha/tc/ioasic.c | 2 +- sys/alpha/tc/ioasicreg.h | 2 +- sys/alpha/tc/ioasicvar.h | 2 +- sys/alpha/tc/mcclock_ioasic.c | 2 +- sys/alpha/tc/sticreg.h | 2 +- sys/alpha/tc/sticvar.h | 2 +- sys/alpha/tc/tc.c | 2 +- sys/alpha/tc/tcasic.c | 2 +- sys/alpha/tc/tcdevs.h | 2 +- sys/alpha/tc/tcdevs_data.h | 2 +- sys/alpha/tc/tcds.c | 2 +- sys/alpha/tc/tcds_dma.c | 2 +- sys/alpha/tc/tcdsreg.h | 2 +- sys/alpha/tc/tcdsvar.h | 2 +- sys/alpha/tc/tcreg.h | 2 +- sys/alpha/tc/tcvar.h | 2 +- sys/alpha/tlsb/dwlpx.c | 2 +- sys/alpha/tlsb/dwlpxreg.h | 2 +- sys/alpha/tlsb/gbusvar.h | 2 +- sys/alpha/tlsb/kftxx.c | 2 +- sys/alpha/tlsb/kftxxreg.h | 2 +- sys/alpha/tlsb/kftxxvar.h | 2 +- sys/alpha/tlsb/mcclock_tlsb.c | 2 +- sys/alpha/tlsb/tlsbvar.h | 2 +- sys/alpha/tlsb/zs_tlsb.c | 2 +- sys/alpha/tlsb/zsreg.h | 2 +- sys/alpha/tlsb/zsvar.h | 2 +- sys/amd64/Makefile | 2 +- sys/amd64/amd64/amd64_mem.c | 2 +- sys/amd64/amd64/apic_vector.S | 2 +- sys/amd64/amd64/atomic.c | 2 +- sys/amd64/amd64/autoconf.c | 2 +- sys/amd64/amd64/bios.c | 2 +- sys/amd64/amd64/busdma_machdep.c | 2 +- sys/amd64/amd64/cpu_switch.S | 2 +- sys/amd64/amd64/db_disasm.c | 2 +- sys/amd64/amd64/db_interface.c | 2 +- sys/amd64/amd64/db_trace.c | 2 +- sys/amd64/amd64/elf_machdep.c | 2 +- sys/amd64/amd64/exception.S | 2 +- sys/amd64/amd64/exception.s | 2 +- sys/amd64/amd64/fpu.c | 2 +- sys/amd64/amd64/genassym.c | 2 +- sys/amd64/amd64/identcpu.c | 2 +- sys/amd64/amd64/initcpu.c | 2 +- sys/amd64/amd64/legacy.c | 2 +- sys/amd64/amd64/locore.S | 2 +- sys/amd64/amd64/locore.s | 2 +- sys/amd64/amd64/machdep.c | 2 +- sys/amd64/amd64/mem.c | 2 +- sys/amd64/amd64/mp_machdep.c | 2 +- sys/amd64/amd64/mpboot.S | 2 +- sys/amd64/amd64/mptable.c | 2 +- sys/amd64/amd64/nexus.c | 2 +- sys/amd64/amd64/pmap.c | 2 +- sys/amd64/amd64/prof_machdep.c | 2 +- sys/amd64/amd64/support.S | 2 +- sys/amd64/amd64/support.s | 2 +- sys/amd64/amd64/swtch.s | 2 +- sys/amd64/amd64/sys_machdep.c | 2 +- sys/amd64/amd64/trap.c | 2 +- sys/amd64/amd64/tsc.c | 2 +- sys/amd64/amd64/vm_machdep.c | 2 +- sys/amd64/conf/GENERIC | 2 +- sys/amd64/include/apicreg.h | 2 +- sys/amd64/include/asm.h | 2 +- sys/amd64/include/asmacros.h | 2 +- sys/amd64/include/atomic.h | 2 +- sys/amd64/include/bus.h | 2 +- sys/amd64/include/bus_amd64.h | 2 +- sys/amd64/include/bus_at386.h | 2 +- sys/amd64/include/bus_dma.h | 2 +- sys/amd64/include/bus_memio.h | 2 +- sys/amd64/include/bus_pio.h | 2 +- sys/amd64/include/clock.h | 2 +- sys/amd64/include/cpu.h | 2 +- sys/amd64/include/cpufunc.h | 2 +- sys/amd64/include/cputypes.h | 2 +- sys/amd64/include/db_machdep.h | 2 +- sys/amd64/include/elf.h | 2 +- sys/amd64/include/exec.h | 2 +- sys/amd64/include/float.h | 2 +- sys/amd64/include/floatingpoint.h | 2 +- sys/amd64/include/fpu.h | 2 +- sys/amd64/include/frame.h | 2 +- sys/amd64/include/ieeefp.h | 2 +- sys/amd64/include/md_var.h | 2 +- sys/amd64/include/mptable.h | 2 +- sys/amd64/include/npx.h | 2 +- sys/amd64/include/pc/bios.h | 2 +- sys/amd64/include/pc/display.h | 2 +- sys/amd64/include/pcb.h | 2 +- sys/amd64/include/pcb_ext.h | 2 +- sys/amd64/include/pci_cfgreg.h | 2 +- sys/amd64/include/pcpu.h | 2 +- sys/amd64/include/pmap.h | 2 +- sys/amd64/include/proc.h | 2 +- sys/amd64/include/profile.h | 2 +- sys/amd64/include/psl.h | 2 +- sys/amd64/include/ptrace.h | 2 +- sys/amd64/include/reg.h | 2 +- sys/amd64/include/reloc.h | 2 +- sys/amd64/include/segments.h | 2 +- sys/amd64/include/setjmp.h | 2 +- sys/amd64/include/signal.h | 2 +- sys/amd64/include/smp.h | 2 +- sys/amd64/include/specialreg.h | 2 +- sys/amd64/include/sysarch.h | 2 +- sys/amd64/include/trap.h | 2 +- sys/amd64/include/tss.h | 2 +- sys/amd64/include/varargs.h | 2 +- sys/amd64/include/vmparam.h | 2 +- sys/amd64/isa/atpic_vector.S | 2 +- sys/amd64/isa/clock.c | 2 +- sys/amd64/isa/icu.h | 2 +- sys/amd64/isa/icu_ipl.S | 2 +- sys/amd64/isa/icu_ipl.s | 2 +- sys/amd64/isa/icu_vector.S | 2 +- sys/amd64/isa/icu_vector.s | 2 +- sys/amd64/isa/intr_machdep.c | 4 ++-- sys/amd64/isa/intr_machdep.h | 2 +- sys/amd64/isa/isa.c | 2 +- sys/amd64/isa/isa.h | 2 +- sys/amd64/isa/isa_dma.c | 2 +- sys/amd64/isa/isa_dma.h | 2 +- sys/amd64/isa/nmi.c | 4 ++-- sys/amd64/isa/npx.c | 2 +- sys/amd64/isa/timerreg.h | 2 +- sys/amd64/isa/vector.S | 2 +- sys/amd64/isa/vector.s | 2 +- sys/amd64/pci/pci_bus.c | 2 +- sys/amd64/pci/pci_cfgreg.c | 2 +- sys/boot/alpha/Makefile | 2 +- sys/boot/alpha/boot1/boot1.c | 2 +- sys/boot/alpha/boot1/sys.c | 2 +- sys/boot/alpha/boot2/conf.c | 2 +- sys/boot/alpha/boot2/version | 2 +- sys/boot/alpha/common/main.c | 2 +- sys/boot/alpha/common/setdef0.c | 2 +- sys/boot/alpha/common/setdef1.c | 2 +- sys/boot/alpha/libalpha/Makefile | 2 +- sys/boot/alpha/libalpha/OSFpal.c | 2 +- sys/boot/alpha/libalpha/alpha_copy.c | 2 +- sys/boot/alpha/libalpha/alpha_module.c | 2 +- sys/boot/alpha/libalpha/bbinfo.h | 2 +- sys/boot/alpha/libalpha/bootinfo.c | 2 +- sys/boot/alpha/libalpha/common.h | 2 +- sys/boot/alpha/libalpha/delay.c | 2 +- sys/boot/alpha/libalpha/devicename.c | 2 +- sys/boot/alpha/libalpha/elf_freebsd.c | 2 +- sys/boot/alpha/libalpha/getsecs.c | 2 +- sys/boot/alpha/libalpha/libalpha.h | 2 +- sys/boot/alpha/libalpha/pal.S | 2 +- sys/boot/alpha/libalpha/prom.c | 2 +- sys/boot/alpha/libalpha/prom_disp.S | 2 +- sys/boot/alpha/libalpha/prom_swpal.S | 2 +- sys/boot/alpha/libalpha/reboot.c | 2 +- sys/boot/alpha/libalpha/srmdisk.c | 2 +- sys/boot/alpha/libalpha/srmnet.c | 2 +- sys/boot/alpha/libalpha/start.S | 2 +- sys/boot/alpha/libalpha/time.c | 2 +- sys/boot/alpha/netboot/conf.c | 2 +- sys/boot/alpha/netboot/version | 2 +- sys/boot/arc/Makefile | 2 +- sys/boot/arc/include/arcfuncs.h | 2 +- sys/boot/arc/include/arctypes.h | 2 +- sys/boot/arc/include/libarc.h | 2 +- sys/boot/arc/lib/Makefile | 2 +- sys/boot/arc/lib/abort.c | 2 +- sys/boot/arc/lib/arcconsole.c | 2 +- sys/boot/arc/lib/arcdisk.c | 2 +- sys/boot/arc/lib/arch/alpha/copy.c | 2 +- sys/boot/arc/lib/arch/alpha/rpb.c | 2 +- sys/boot/arc/lib/arch/alpha/setjmp.S | 2 +- sys/boot/arc/lib/arch/alpha/start.S | 2 +- sys/boot/arc/lib/bootinfo.c | 2 +- sys/boot/arc/lib/delay.c | 2 +- sys/boot/arc/lib/devicename.c | 2 +- sys/boot/arc/lib/elf_freebsd.c | 2 +- sys/boot/arc/lib/module.c | 2 +- sys/boot/arc/lib/prom.c | 2 +- sys/boot/arc/lib/setjmperr.c | 2 +- sys/boot/arc/lib/time.c | 2 +- sys/boot/arc/loader/conf.c | 2 +- sys/boot/arc/loader/main.c | 2 +- sys/boot/arc/loader/setdef0.c | 2 +- sys/boot/arc/loader/setdef1.c | 2 +- sys/boot/arc/loader/version | 2 +- sys/boot/common/Makefile.inc | 2 +- sys/boot/common/bcache.c | 2 +- sys/boot/common/boot.c | 2 +- sys/boot/common/bootstrap.h | 2 +- sys/boot/common/commands.c | 2 +- sys/boot/common/console.c | 2 +- sys/boot/common/dev_net.c | 2 +- sys/boot/common/dev_net.h | 2 +- sys/boot/common/devopen.c | 2 +- sys/boot/common/gensetdefs.c | 2 +- sys/boot/common/interp.c | 2 +- sys/boot/common/interp_backslash.c | 2 +- sys/boot/common/interp_forth.c | 2 +- sys/boot/common/interp_parse.c | 2 +- sys/boot/common/isapnp.c | 2 +- sys/boot/common/isapnp.h | 2 +- sys/boot/common/load.c | 2 +- sys/boot/common/load_aout.c | 2 +- sys/boot/common/load_elf.c | 2 +- sys/boot/common/loader.8 | 2 +- sys/boot/common/ls.c | 2 +- sys/boot/common/merge_help.awk | 2 +- sys/boot/common/misc.c | 2 +- sys/boot/common/module.c | 2 +- sys/boot/common/panic.c | 2 +- sys/boot/common/pnpdata | 2 +- sys/boot/ficl/Makefile | 2 +- sys/boot/ficl/softwords/freebsd.fr | 2 +- sys/boot/forth/loader.4th | 2 +- sys/boot/forth/loader.4th.8 | 2 +- sys/boot/forth/loader.conf | 2 +- sys/boot/forth/loader.conf.5 | 2 +- sys/boot/forth/support.4th | 2 +- sys/boot/i386/Makefile | 2 +- sys/boot/i386/boot0/Makefile | 2 +- sys/boot/i386/boot0/boot0.m4 | 2 +- sys/boot/i386/boot0/boot0.s | 2 +- sys/boot/i386/boot2/Makefile | 2 +- sys/boot/i386/boot2/boot1.S | 2 +- sys/boot/i386/boot2/boot1.m4 | 2 +- sys/boot/i386/boot2/boot1.s | 2 +- sys/boot/i386/boot2/boot2.c | 2 +- sys/boot/i386/boot2/lib.h | 2 +- sys/boot/i386/boot2/sio.S | 2 +- sys/boot/i386/boot2/sio.s | 2 +- sys/boot/i386/btx/Makefile | 2 +- sys/boot/i386/btx/btx/Makefile | 2 +- sys/boot/i386/btx/btx/btx.S | 2 +- sys/boot/i386/btx/btx/btx.m4 | 2 +- sys/boot/i386/btx/btx/btx.s | 2 +- sys/boot/i386/btx/btxldr/Makefile | 2 +- sys/boot/i386/btx/btxldr/btxldr.S | 2 +- sys/boot/i386/btx/btxldr/btxldr.s | 2 +- sys/boot/i386/btx/lib/Makefile | 2 +- sys/boot/i386/btx/lib/btxcsu.s | 2 +- sys/boot/i386/btx/lib/btxsys.s | 2 +- sys/boot/i386/btx/lib/btxv86.h | 2 +- sys/boot/i386/btx/lib/btxv86.s | 2 +- sys/boot/i386/gptboot/Makefile | 2 +- sys/boot/i386/gptboot/gptboot.c | 2 +- sys/boot/i386/kgzldr/Makefile | 2 +- sys/boot/i386/kgzldr/boot.c | 2 +- sys/boot/i386/kgzldr/crt.s | 2 +- sys/boot/i386/kgzldr/kgzldr.h | 2 +- sys/boot/i386/kgzldr/lib.c | 2 +- sys/boot/i386/kgzldr/sio.s | 2 +- sys/boot/i386/kgzldr/start.s | 2 +- sys/boot/i386/libi386/Makefile | 2 +- sys/boot/i386/libi386/aout_freebsd.c | 2 +- sys/boot/i386/libi386/biosdisk.c | 2 +- sys/boot/i386/libi386/biospci.c | 2 +- sys/boot/i386/libi386/biospnp.c | 2 +- sys/boot/i386/libi386/bootinfo.c | 2 +- sys/boot/i386/libi386/bootinfo32.c | 2 +- sys/boot/i386/libi386/bootinfo64.c | 2 +- sys/boot/i386/libi386/comconsole.c | 2 +- sys/boot/i386/libi386/devicename.c | 2 +- sys/boot/i386/libi386/elf32_freebsd.c | 2 +- sys/boot/i386/libi386/elf64_freebsd.c | 2 +- sys/boot/i386/libi386/elf_freebsd.c | 2 +- sys/boot/i386/libi386/gatea20.c | 2 +- sys/boot/i386/libi386/i386_module.c | 2 +- sys/boot/i386/libi386/libi386.h | 2 +- sys/boot/i386/libi386/pread.c | 2 +- sys/boot/i386/libi386/vidconsole.c | 2 +- sys/boot/i386/loader/Makefile | 2 +- sys/boot/i386/loader/conf.c | 2 +- sys/boot/i386/loader/loader.8 | 2 +- sys/boot/i386/loader/main.c | 2 +- sys/boot/i386/loader/version | 2 +- sys/boot/i386/mbr/Makefile | 2 +- sys/boot/i386/mbr/mbr.m4 | 2 +- sys/boot/i386/mbr/mbr.s | 2 +- sys/boot/ofw/libofw/devicename.c | 2 +- sys/boot/ofw/libofw/ofw_console.c | 2 +- sys/boot/ofw/libofw/ofw_copy.c | 2 +- sys/boot/ofw/libofw/ofw_module.c | 2 +- sys/boot/pc98/Makefile | 2 +- sys/boot/pc98/boot2/Makefile | 2 +- sys/boot/pc98/boot2/asm.S | 2 +- sys/boot/pc98/boot2/asm.h | 2 +- sys/boot/pc98/boot2/bios.S | 2 +- sys/boot/pc98/boot2/boot.c | 2 +- sys/boot/pc98/boot2/boot.h | 2 +- sys/boot/pc98/boot2/disk.c | 2 +- sys/boot/pc98/boot2/io.c | 2 +- sys/boot/pc98/boot2/serial.S | 2 +- sys/boot/pc98/boot2/start.S | 2 +- sys/boot/pc98/boot2/sys.c | 2 +- sys/boot/pc98/boot2/table.c | 2 +- sys/boot/pc98/btx/Makefile | 2 +- sys/boot/pc98/btx/btx/Makefile | 2 +- sys/boot/pc98/btx/btx/btx.S | 2 +- sys/boot/pc98/btx/btx/btx.m4 | 2 +- sys/boot/pc98/btx/btx/btx.s | 2 +- sys/boot/pc98/btx/btxldr/Makefile | 2 +- sys/boot/pc98/btx/btxldr/btxldr.S | 2 +- sys/boot/pc98/btx/btxldr/btxldr.s | 2 +- sys/boot/pc98/btx/lib/Makefile | 2 +- sys/boot/pc98/btx/lib/btxcsu.s | 2 +- sys/boot/pc98/btx/lib/btxsys.s | 2 +- sys/boot/pc98/btx/lib/btxv86.h | 2 +- sys/boot/pc98/btx/lib/btxv86.s | 2 +- sys/boot/pc98/libpc98/Makefile | 2 +- sys/boot/pc98/libpc98/biosdisk.c | 2 +- sys/boot/pc98/libpc98/bootinfo.c | 2 +- sys/boot/pc98/libpc98/comconsole.c | 2 +- sys/boot/pc98/libpc98/gatea20.c | 2 +- sys/boot/pc98/libpc98/vidconsole.c | 2 +- sys/boot/pc98/loader/Makefile | 2 +- sys/boot/pc98/loader/main.c | 2 +- sys/cam/cam.c | 2 +- sys/cam/cam.h | 2 +- sys/cam/cam_ccb.h | 2 +- sys/cam/cam_conf.h | 2 +- sys/cam/cam_debug.h | 2 +- sys/cam/cam_extend.c | 2 +- sys/cam/cam_extend.h | 2 +- sys/cam/cam_periph.c | 2 +- sys/cam/cam_periph.h | 2 +- sys/cam/cam_queue.c | 2 +- sys/cam/cam_queue.h | 2 +- sys/cam/cam_sim.c | 2 +- sys/cam/cam_sim.h | 2 +- sys/cam/cam_xpt.c | 2 +- sys/cam/cam_xpt.h | 2 +- sys/cam/cam_xpt_periph.h | 2 +- sys/cam/cam_xpt_sim.h | 2 +- sys/cam/scsi/scsi_all.c | 2 +- sys/cam/scsi/scsi_all.h | 2 +- sys/cam/scsi/scsi_cd.c | 2 +- sys/cam/scsi/scsi_ch.c | 2 +- sys/cam/scsi/scsi_da.c | 2 +- sys/cam/scsi/scsi_da.h | 2 +- sys/cam/scsi/scsi_pass.c | 2 +- sys/cam/scsi/scsi_pass.h | 2 +- sys/cam/scsi/scsi_pt.c | 2 +- sys/cam/scsi/scsi_pt.h | 2 +- sys/cam/scsi/scsi_sa.c | 2 +- sys/cam/scsi/scsi_sa.h | 2 +- sys/cam/scsi/scsi_targ_bh.c | 2 +- sys/cam/scsi/scsi_target.c | 2 +- sys/cam/scsi/scsi_targetio.h | 2 +- sys/coda/cnode.h | 2 +- sys/coda/coda.h | 2 +- sys/coda/coda_fbsd.c | 2 +- sys/coda/coda_io.h | 2 +- sys/coda/coda_kernel.h | 2 +- sys/coda/coda_namecache.c | 2 +- sys/coda/coda_namecache.h | 2 +- sys/coda/coda_opstats.h | 2 +- sys/coda/coda_pioctl.h | 2 +- sys/coda/coda_psdev.c | 2 +- sys/coda/coda_psdev.h | 2 +- sys/coda/coda_subr.c | 2 +- sys/coda/coda_subr.h | 2 +- sys/coda/coda_venus.c | 2 +- sys/coda/coda_venus.h | 2 +- sys/coda/coda_vfsops.c | 2 +- sys/coda/coda_vfsops.h | 2 +- sys/coda/coda_vnops.c | 2 +- sys/coda/coda_vnops.h | 2 +- sys/compat/linux/linux_file.c | 2 +- sys/compat/linux/linux_ioctl.c | 2 +- sys/compat/linux/linux_ipc.c | 2 +- sys/compat/linux/linux_misc.c | 2 +- sys/compat/linux/linux_signal.c | 2 +- sys/compat/linux/linux_socket.c | 2 +- sys/compat/linux/linux_stats.c | 2 +- sys/compat/linux/linux_util.c | 2 +- sys/compat/linux/linux_util.h | 2 +- sys/compat/svr4/Makefile | 2 +- sys/compat/svr4/imgact_svr4.c | 2 +- sys/compat/svr4/svr4.h | 2 +- sys/compat/svr4/svr4_acl.h | 2 +- sys/compat/svr4/svr4_dirent.h | 2 +- sys/compat/svr4/svr4_errno.h | 2 +- sys/compat/svr4/svr4_exec.h | 2 +- sys/compat/svr4/svr4_fcntl.c | 2 +- sys/compat/svr4/svr4_fcntl.h | 2 +- sys/compat/svr4/svr4_filio.c | 2 +- sys/compat/svr4/svr4_filio.h | 2 +- sys/compat/svr4/svr4_fuser.h | 2 +- sys/compat/svr4/svr4_hrt.h | 2 +- sys/compat/svr4/svr4_ioctl.c | 2 +- sys/compat/svr4/svr4_ioctl.h | 2 +- sys/compat/svr4/svr4_ipc.c | 2 +- sys/compat/svr4/svr4_ipc.h | 2 +- sys/compat/svr4/svr4_misc.c | 2 +- sys/compat/svr4/svr4_mman.h | 2 +- sys/compat/svr4/svr4_resource.c | 2 +- sys/compat/svr4/svr4_resource.h | 2 +- sys/compat/svr4/svr4_siginfo.h | 2 +- sys/compat/svr4/svr4_signal.c | 2 +- sys/compat/svr4/svr4_signal.h | 2 +- sys/compat/svr4/svr4_socket.c | 2 +- sys/compat/svr4/svr4_socket.h | 2 +- sys/compat/svr4/svr4_sockio.c | 2 +- sys/compat/svr4/svr4_sockio.h | 2 +- sys/compat/svr4/svr4_sockmod.h | 2 +- sys/compat/svr4/svr4_stat.c | 2 +- sys/compat/svr4/svr4_stat.h | 2 +- sys/compat/svr4/svr4_statvfs.h | 2 +- sys/compat/svr4/svr4_stream.c | 2 +- sys/compat/svr4/svr4_stropts.h | 2 +- sys/compat/svr4/svr4_sysconfig.h | 2 +- sys/compat/svr4/svr4_systeminfo.h | 2 +- sys/compat/svr4/svr4_sysvec.c | 2 +- sys/compat/svr4/svr4_termios.c | 2 +- sys/compat/svr4/svr4_termios.h | 2 +- sys/compat/svr4/svr4_time.h | 2 +- sys/compat/svr4/svr4_timod.h | 2 +- sys/compat/svr4/svr4_ttold.c | 2 +- sys/compat/svr4/svr4_ttold.h | 2 +- sys/compat/svr4/svr4_types.h | 2 +- sys/compat/svr4/svr4_ucontext.h | 2 +- sys/compat/svr4/svr4_ulimit.h | 2 +- sys/compat/svr4/svr4_ustat.h | 2 +- sys/compat/svr4/svr4_util.h | 2 +- sys/compat/svr4/svr4_utsname.h | 2 +- sys/compat/svr4/svr4_wait.h | 2 +- sys/compat/svr4/syscalls.conf | 2 +- sys/compat/svr4/syscalls.master | 2 +- sys/conf/Makefile.alpha | 2 +- sys/conf/Makefile.i386 | 2 +- sys/conf/Makefile.pc98 | 2 +- sys/conf/Makefile.powerpc | 2 +- sys/conf/NOTES | 2 +- sys/conf/files.alpha | 2 +- sys/conf/files.i386 | 2 +- sys/conf/files.pc98 | 2 +- sys/conf/majors | 2 +- sys/conf/newvers.sh | 2 +- sys/conf/nfsswapkernel.c | 2 +- sys/conf/options | 2 +- sys/conf/options.alpha | 2 +- sys/conf/options.i386 | 2 +- sys/conf/options.pc98 | 2 +- sys/conf/param.c | 2 +- sys/conf/systags.sh | 2 +- sys/ddb/db_access.c | 2 +- sys/ddb/db_access.h | 2 +- sys/ddb/db_aout.c | 2 +- sys/ddb/db_break.c | 2 +- sys/ddb/db_break.h | 2 +- sys/ddb/db_command.c | 2 +- sys/ddb/db_command.h | 2 +- sys/ddb/db_elf.c | 2 +- sys/ddb/db_examine.c | 2 +- sys/ddb/db_expr.c | 2 +- sys/ddb/db_input.c | 2 +- sys/ddb/db_kld.c | 2 +- sys/ddb/db_lex.c | 2 +- sys/ddb/db_lex.h | 2 +- sys/ddb/db_output.c | 2 +- sys/ddb/db_output.h | 2 +- sys/ddb/db_print.c | 2 +- sys/ddb/db_ps.c | 2 +- sys/ddb/db_run.c | 2 +- sys/ddb/db_sym.c | 2 +- sys/ddb/db_sym.h | 2 +- sys/ddb/db_trap.c | 2 +- sys/ddb/db_variables.c | 2 +- sys/ddb/db_variables.h | 2 +- sys/ddb/db_watch.c | 2 +- sys/ddb/db_watch.h | 2 +- sys/ddb/db_write_cmd.c | 2 +- sys/ddb/ddb.h | 2 +- sys/dev/advansys/adv_eisa.c | 2 +- sys/dev/advansys/adv_isa.c | 2 +- sys/dev/advansys/adv_pci.c | 2 +- sys/dev/advansys/advansys.c | 2 +- sys/dev/advansys/advansys.h | 2 +- sys/dev/advansys/advlib.c | 2 +- sys/dev/advansys/advlib.h | 2 +- sys/dev/advansys/advmcode.c | 2 +- sys/dev/advansys/advmcode.h | 2 +- sys/dev/advansys/adw_pci.c | 2 +- sys/dev/advansys/adwcam.c | 2 +- sys/dev/advansys/adwlib.c | 2 +- sys/dev/advansys/adwlib.h | 2 +- sys/dev/advansys/adwmcode.c | 2 +- sys/dev/advansys/adwmcode.h | 2 +- sys/dev/advansys/adwvar.h | 2 +- sys/dev/aha/aha.c | 2 +- sys/dev/aha/aha_isa.c | 2 +- sys/dev/aha/ahareg.h | 2 +- sys/dev/ahb/ahb.c | 2 +- sys/dev/ahb/ahbreg.h | 2 +- sys/dev/aic7xxx/93cx6.c | 2 +- sys/dev/aic7xxx/93cx6.h | 2 +- sys/dev/aic7xxx/Makefile | 2 +- sys/dev/aic7xxx/ahc_eisa.c | 2 +- sys/dev/aic7xxx/ahc_pci.c | 2 +- sys/dev/aic7xxx/aic7xxx.c | 2 +- sys/dev/aic7xxx/aic7xxx.h | 2 +- sys/dev/aic7xxx/aic7xxx.reg | 2 +- sys/dev/aic7xxx/aic7xxx.seq | 2 +- sys/dev/aic7xxx/aic7xxx_93cx6.c | 2 +- sys/dev/aic7xxx/aic7xxx_93cx6.h | 2 +- sys/dev/aic7xxx/aicasm.c | 2 +- sys/dev/aic7xxx/aicasm.h | 2 +- sys/dev/aic7xxx/aicasm/Makefile | 2 +- sys/dev/aic7xxx/aicasm/aicasm.c | 2 +- sys/dev/aic7xxx/aicasm/aicasm.h | 2 +- sys/dev/aic7xxx/aicasm/aicasm_gram.y | 2 +- sys/dev/aic7xxx/aicasm/aicasm_scan.l | 2 +- sys/dev/aic7xxx/aicasm/aicasm_symbol.c | 2 +- sys/dev/aic7xxx/aicasm/aicasm_symbol.h | 2 +- sys/dev/aic7xxx/aicasm_gram.y | 2 +- sys/dev/aic7xxx/aicasm_scan.l | 2 +- sys/dev/aic7xxx/aicasm_symbol.c | 2 +- sys/dev/aic7xxx/aicasm_symbol.h | 2 +- sys/dev/aic7xxx/sequencer.h | 2 +- sys/dev/ar/if_ar.c | 2 +- sys/dev/ar/if_ar_isa.c | 2 +- sys/dev/ar/if_arregs.h | 2 +- sys/dev/ata/ata-all.c | 2 +- sys/dev/ata/ata-all.h | 2 +- sys/dev/ata/ata-disk.c | 2 +- sys/dev/ata/ata-disk.h | 2 +- sys/dev/ata/ata-dma.c | 2 +- sys/dev/ata/atapi-all.c | 2 +- sys/dev/ata/atapi-all.h | 2 +- sys/dev/ata/atapi-cd.c | 2 +- sys/dev/ata/atapi-cd.h | 2 +- sys/dev/ata/atapi-fd.c | 2 +- sys/dev/ata/atapi-fd.h | 2 +- sys/dev/ata/atapi-tape.c | 2 +- sys/dev/ata/atapi-tape.h | 2 +- sys/dev/atkbdc/atkbd.c | 2 +- sys/dev/atkbdc/atkbd_atkbdc.c | 2 +- sys/dev/atkbdc/atkbd_isa.c | 2 +- sys/dev/atkbdc/atkbdc.c | 2 +- sys/dev/atkbdc/atkbdc_isa.c | 2 +- sys/dev/atkbdc/atkbdc_subr.c | 2 +- sys/dev/atkbdc/atkbdcreg.h | 2 +- sys/dev/atkbdc/atkbdreg.h | 2 +- sys/dev/atkbdc/psm.c | 2 +- sys/dev/bktr/bktr_core.c | 2 +- sys/dev/bktr/bktr_i2c.c | 2 +- sys/dev/bktr/bktr_i2c.h | 2 +- sys/dev/bktr/bktr_reg.h | 2 +- sys/dev/bktr/ioctl_bt848.h | 2 +- sys/dev/buslogic/bt.c | 2 +- sys/dev/buslogic/bt_eisa.c | 2 +- sys/dev/buslogic/bt_isa.c | 2 +- sys/dev/buslogic/bt_pci.c | 2 +- sys/dev/buslogic/btreg.h | 2 +- sys/dev/ccd/ccd.c | 2 +- sys/dev/cs/if_cs.c | 2 +- sys/dev/cs/if_csreg.h | 2 +- sys/dev/cy/cy.c | 2 +- sys/dev/cy/cy_isa.c | 2 +- sys/dev/cy/cy_pci.c | 2 +- sys/dev/cy/cyreg.h | 2 +- sys/dev/dec/mcclock.c | 2 +- sys/dev/dec/mcclock_if.m | 2 +- sys/dev/dgb/dgb.c | 2 +- sys/dev/dgb/dgm.c | 2 +- sys/dev/dgb/dgmbios.h | 2 +- sys/dev/dgb/dgmfep.h | 2 +- sys/dev/dgb/dgmreg.h | 2 +- sys/dev/dgb/dgreg.h | 2 +- sys/dev/dpt/dpt.h | 2 +- sys/dev/dpt/dpt_control.c | 2 +- sys/dev/dpt/dpt_eisa.c | 2 +- sys/dev/dpt/dpt_eisa.h | 2 +- sys/dev/dpt/dpt_pci.c | 2 +- sys/dev/dpt/dpt_pci.h | 2 +- sys/dev/dpt/dpt_scsi.c | 2 +- sys/dev/ed/if_ed.c | 2 +- sys/dev/ed/if_ed_pci.c | 2 +- sys/dev/ed/if_edreg.h | 2 +- sys/dev/eisa/eisaconf.c | 2 +- sys/dev/eisa/eisaconf.h | 2 +- sys/dev/ep/if_ep.c | 2 +- sys/dev/ep/if_ep_eisa.c | 2 +- sys/dev/ep/if_epreg.h | 2 +- sys/dev/ex/if_ex.c | 2 +- sys/dev/fb/fb.c | 2 +- sys/dev/fb/fbreg.h | 2 +- sys/dev/fb/splash.c | 2 +- sys/dev/fb/splash_bmp.c | 2 +- sys/dev/fb/splash_pcx.c | 2 +- sys/dev/fb/splashreg.h | 2 +- sys/dev/fb/vga.c | 2 +- sys/dev/fb/vgareg.h | 2 +- sys/dev/fdc/fdc.c | 2 +- sys/dev/fdc/fdcreg.h | 2 +- sys/dev/fe/if_fe.c | 2 +- sys/dev/fe/if_fereg.h | 2 +- sys/dev/fxp/if_fxp.c | 2 +- sys/dev/fxp/if_fxpreg.h | 2 +- sys/dev/fxp/if_fxpvar.h | 2 +- sys/dev/hea/eni.c | 4 ++-- sys/dev/hea/eni.h | 2 +- sys/dev/hea/eni_buffer.c | 4 ++-- sys/dev/hea/eni_globals.c | 4 ++-- sys/dev/hea/eni_if.c | 4 ++-- sys/dev/hea/eni_init.c | 4 ++-- sys/dev/hea/eni_intr.c | 4 ++-- sys/dev/hea/eni_receive.c | 4 ++-- sys/dev/hea/eni_stats.h | 2 +- sys/dev/hea/eni_suni.h | 2 +- sys/dev/hea/eni_transmit.c | 4 ++-- sys/dev/hea/eni_var.h | 2 +- sys/dev/hea/eni_vcm.c | 4 ++-- sys/dev/hfa/fore.h | 2 +- sys/dev/hfa/fore_aali.h | 2 +- sys/dev/hfa/fore_buffer.c | 4 ++-- sys/dev/hfa/fore_command.c | 4 ++-- sys/dev/hfa/fore_globals.c | 4 ++-- sys/dev/hfa/fore_if.c | 4 ++-- sys/dev/hfa/fore_include.h | 2 +- sys/dev/hfa/fore_init.c | 4 ++-- sys/dev/hfa/fore_intr.c | 4 ++-- sys/dev/hfa/fore_load.c | 4 ++-- sys/dev/hfa/fore_output.c | 4 ++-- sys/dev/hfa/fore_receive.c | 4 ++-- sys/dev/hfa/fore_slave.h | 2 +- sys/dev/hfa/fore_stats.c | 4 ++-- sys/dev/hfa/fore_stats.h | 2 +- sys/dev/hfa/fore_timer.c | 4 ++-- sys/dev/hfa/fore_transmit.c | 4 ++-- sys/dev/hfa/fore_var.h | 2 +- sys/dev/hfa/fore_vcm.c | 4 ++-- sys/dev/ic/cd1400.h | 2 +- sys/dev/ic/esp.h | 2 +- sys/dev/ic/hd64570.h | 2 +- sys/dev/ic/i8237.h | 2 +- sys/dev/ic/i82586.h | 2 +- sys/dev/ic/nec765.h | 2 +- sys/dev/ic/ns16550.h | 2 +- sys/dev/ida/ida.c | 2 +- sys/dev/ida/ida_disk.c | 2 +- sys/dev/ida/ida_pci.c | 2 +- sys/dev/ida/idareg.h | 2 +- sys/dev/ida/idavar.h | 2 +- sys/dev/ie/if_ie.c | 2 +- sys/dev/ie/if_ie507.h | 2 +- sys/dev/ie/if_iereg.h | 2 +- sys/dev/iicbus/if_ic.c | 2 +- sys/dev/iicbus/iic.c | 2 +- sys/dev/iicbus/iic.h | 2 +- sys/dev/iicbus/iicbb.c | 2 +- sys/dev/iicbus/iicbb_if.m | 2 +- sys/dev/iicbus/iicbus.c | 2 +- sys/dev/iicbus/iicbus.h | 2 +- sys/dev/iicbus/iicbus_if.m | 2 +- sys/dev/iicbus/iiconf.c | 2 +- sys/dev/iicbus/iiconf.h | 2 +- sys/dev/iicbus/iicsmb.c | 2 +- sys/dev/isp/asm_pci.h | 2 +- sys/dev/isp/asm_sbus.h | 2 +- sys/dev/isp/isp.c | 2 +- sys/dev/isp/isp_freebsd.c | 2 +- sys/dev/isp/isp_freebsd.h | 2 +- sys/dev/isp/isp_pci.c | 2 +- sys/dev/isp/ispmbox.h | 2 +- sys/dev/isp/ispreg.h | 2 +- sys/dev/isp/ispvar.h | 2 +- sys/dev/kbd/atkbd.c | 2 +- sys/dev/kbd/atkbdc.c | 2 +- sys/dev/kbd/atkbdcreg.h | 2 +- sys/dev/kbd/atkbdreg.h | 2 +- sys/dev/kbd/kbd.c | 2 +- sys/dev/kbd/kbdreg.h | 2 +- sys/dev/kbd/kbdtables.h | 2 +- sys/dev/lnc/if_lnc.c | 2 +- sys/dev/lnc/if_lnc_pci.c | 2 +- sys/dev/lnc/if_lncvar.h | 2 +- sys/dev/mcd/mcd.c | 2 +- sys/dev/mcd/mcdreg.h | 2 +- sys/dev/mii/Makefile.miidevs | 2 +- sys/dev/mii/devlist2h.awk | 2 +- sys/dev/mii/exphy.c | 2 +- sys/dev/mii/mii.c | 2 +- sys/dev/mii/mii.h | 2 +- sys/dev/mii/mii_physubr.c | 2 +- sys/dev/mii/miibus_if.m | 2 +- sys/dev/mii/miidevs | 2 +- sys/dev/mii/miidevs.h | 2 +- sys/dev/mii/miivar.h | 2 +- sys/dev/mii/nsphy.c | 2 +- sys/dev/mii/nsphyreg.h | 2 +- sys/dev/mii/ukphy.c | 2 +- sys/dev/mii/ukphy_subr.c | 2 +- sys/dev/mse/mse.c | 2 +- sys/dev/pccard/if_xe.c | 4 ++-- sys/dev/pccard/if_xereg.h | 4 ++-- sys/dev/pcf/pcf.c | 2 +- sys/dev/pci/pci.c | 2 +- sys/dev/pci/pci_if.m | 2 +- sys/dev/pci/pcireg.h | 2 +- sys/dev/pci/pcivar.h | 2 +- sys/dev/pdq/if_fea.c | 2 +- sys/dev/pdq/if_fpa.c | 2 +- sys/dev/pdq/pdq.c | 2 +- sys/dev/pdq/pdq_ifsubr.c | 2 +- sys/dev/pdq/pdqreg.h | 2 +- sys/dev/pdq/pdqvar.h | 2 +- sys/dev/ppbus/if_plip.c | 2 +- sys/dev/ppbus/immio.c | 2 +- sys/dev/ppbus/lpbb.c | 2 +- sys/dev/ppbus/lpt.c | 2 +- sys/dev/ppbus/lpt.h | 2 +- sys/dev/ppbus/lptio.h | 2 +- sys/dev/ppbus/ppb_1284.c | 2 +- sys/dev/ppbus/ppb_1284.h | 2 +- sys/dev/ppbus/ppb_base.c | 2 +- sys/dev/ppbus/ppb_msq.c | 2 +- sys/dev/ppbus/ppb_msq.h | 2 +- sys/dev/ppbus/ppbconf.c | 2 +- sys/dev/ppbus/ppbconf.h | 2 +- sys/dev/ppbus/ppi.c | 2 +- sys/dev/ppbus/ppi.h | 2 +- sys/dev/ppbus/pps.c | 2 +- sys/dev/ppbus/vpo.c | 2 +- sys/dev/ppbus/vpoio.c | 2 +- sys/dev/ppbus/vpoio.h | 2 +- sys/dev/ppc/ppc.c | 2 +- sys/dev/ppc/ppcreg.h | 2 +- sys/dev/rp/rp.c | 2 +- sys/dev/scd/scd.c | 2 +- sys/dev/scd/scdreg.h | 2 +- sys/dev/sf/if_sf.c | 4 ++-- sys/dev/sf/if_sfreg.h | 2 +- sys/dev/si/si.c | 2 +- sys/dev/si/si.h | 2 +- sys/dev/si/sireg.h | 2 +- sys/dev/sio/sio.c | 2 +- sys/dev/sio/sioreg.h | 2 +- sys/dev/sk/if_sk.c | 4 ++-- sys/dev/sk/if_skreg.h | 2 +- sys/dev/sk/xmaciireg.h | 2 +- sys/dev/smbus/smb.c | 2 +- sys/dev/smbus/smb.h | 2 +- sys/dev/smbus/smbconf.c | 2 +- sys/dev/smbus/smbconf.h | 2 +- sys/dev/smbus/smbus.c | 2 +- sys/dev/smbus/smbus.h | 2 +- sys/dev/smbus/smbus_if.m | 2 +- sys/dev/snp/snp.c | 2 +- sys/dev/speaker/speaker.h | 2 +- sys/dev/speaker/spkr.c | 2 +- sys/dev/sr/if_sr.c | 2 +- sys/dev/sr/if_sr_isa.c | 2 +- sys/dev/sr/if_sr_pci.c | 2 +- sys/dev/sr/if_srregs.h | 2 +- sys/dev/streams/streams.c | 2 +- sys/dev/syscons/blank/blank_saver.c | 2 +- sys/dev/syscons/daemon/daemon_saver.c | 2 +- sys/dev/syscons/fade/fade_saver.c | 2 +- sys/dev/syscons/fire/fire_saver.c | 2 +- sys/dev/syscons/green/green_saver.c | 2 +- sys/dev/syscons/logo/logo_saver.c | 2 +- sys/dev/syscons/rain/rain_saver.c | 2 +- sys/dev/syscons/scgfbrndr.c | 2 +- sys/dev/syscons/schistory.c | 2 +- sys/dev/syscons/scmouse.c | 2 +- sys/dev/syscons/scvesactl.c | 2 +- sys/dev/syscons/scvgarndr.c | 2 +- sys/dev/syscons/scvidctl.c | 2 +- sys/dev/syscons/scvtb.c | 2 +- sys/dev/syscons/snake/snake_saver.c | 2 +- sys/dev/syscons/star/star_saver.c | 2 +- sys/dev/syscons/syscons.c | 2 +- sys/dev/syscons/syscons.h | 2 +- sys/dev/syscons/warp/warp_saver.c | 2 +- sys/dev/ti/if_ti.c | 4 ++-- sys/dev/ti/if_tireg.h | 2 +- sys/dev/ti/ti_fw.h | 2 +- sys/dev/ti/ti_fw2.h | 2 +- sys/dev/tx/if_tx.c | 2 +- sys/dev/tx/if_txreg.h | 2 +- sys/dev/tx/if_txvar.h | 2 +- sys/dev/vinum/COPYRIGHT | 2 +- sys/dev/vinum/makestatetext | 2 +- sys/dev/vinum/request.h | 2 +- sys/dev/vinum/vinum.c | 2 +- sys/dev/vinum/vinumconfig.c | 2 +- sys/dev/vinum/vinumdaemon.c | 2 +- sys/dev/vinum/vinumext.h | 2 +- sys/dev/vinum/vinumhdr.h | 2 +- sys/dev/vinum/vinuminterrupt.c | 2 +- sys/dev/vinum/vinumio.c | 2 +- sys/dev/vinum/vinumio.h | 2 +- sys/dev/vinum/vinumioctl.c | 2 +- sys/dev/vinum/vinumkw.h | 2 +- sys/dev/vinum/vinumlock.c | 2 +- sys/dev/vinum/vinummemory.c | 2 +- sys/dev/vinum/vinumparser.c | 2 +- sys/dev/vinum/vinumraid5.c | 2 +- sys/dev/vinum/vinumrequest.c | 2 +- sys/dev/vinum/vinumrevive.c | 2 +- sys/dev/vinum/vinumstate.c | 2 +- sys/dev/vinum/vinumstate.h | 2 +- sys/dev/vinum/vinumutil.c | 2 +- sys/dev/vinum/vinumvar.h | 2 +- sys/dev/vn/vn.c | 2 +- sys/dev/vr/if_vr.c | 4 ++-- sys/dev/vr/if_vrreg.h | 2 +- sys/dev/vx/if_vx.c | 2 +- sys/dev/wi/if_wavelan_ieee.h | 2 +- sys/dev/wi/if_wi.c | 4 ++-- sys/dev/wi/if_wireg.h | 2 +- sys/dev/wl/if_wl.c | 2 +- sys/dev/xe/if_xe.c | 4 ++-- sys/dev/xe/if_xereg.h | 4 ++-- sys/fs/cd9660/TODO | 2 +- sys/fs/cd9660/cd9660_bmap.c | 2 +- sys/fs/cd9660/cd9660_lookup.c | 2 +- sys/fs/cd9660/cd9660_node.c | 2 +- sys/fs/cd9660/cd9660_node.h | 2 +- sys/fs/cd9660/cd9660_rrip.c | 2 +- sys/fs/cd9660/cd9660_rrip.h | 2 +- sys/fs/cd9660/cd9660_util.c | 2 +- sys/fs/cd9660/cd9660_vfsops.c | 2 +- sys/fs/cd9660/cd9660_vnops.c | 2 +- sys/fs/cd9660/iso.h | 2 +- sys/fs/cd9660/iso_rrip.h | 2 +- sys/fs/coda/cnode.h | 2 +- sys/fs/coda/coda.h | 2 +- sys/fs/coda/coda_fbsd.c | 2 +- sys/fs/coda/coda_io.h | 2 +- sys/fs/coda/coda_kernel.h | 2 +- sys/fs/coda/coda_namecache.c | 2 +- sys/fs/coda/coda_namecache.h | 2 +- sys/fs/coda/coda_opstats.h | 2 +- sys/fs/coda/coda_pioctl.h | 2 +- sys/fs/coda/coda_psdev.c | 2 +- sys/fs/coda/coda_psdev.h | 2 +- sys/fs/coda/coda_subr.c | 2 +- sys/fs/coda/coda_subr.h | 2 +- sys/fs/coda/coda_venus.c | 2 +- sys/fs/coda/coda_venus.h | 2 +- sys/fs/coda/coda_vfsops.c | 2 +- sys/fs/coda/coda_vfsops.h | 2 +- sys/fs/coda/coda_vnops.c | 2 +- sys/fs/coda/coda_vnops.h | 2 +- sys/fs/deadfs/dead_vnops.c | 2 +- sys/fs/fdescfs/fdesc.h | 2 +- sys/fs/fdescfs/fdesc_vfsops.c | 2 +- sys/fs/fdescfs/fdesc_vnops.c | 2 +- sys/fs/fifofs/fifo.h | 2 +- sys/fs/fifofs/fifo_vnops.c | 2 +- sys/fs/msdosfs/bootsect.h | 2 +- sys/fs/msdosfs/bpb.h | 2 +- sys/fs/msdosfs/denode.h | 2 +- sys/fs/msdosfs/direntry.h | 2 +- sys/fs/msdosfs/fat.h | 2 +- sys/fs/msdosfs/msdosfs_conv.c | 2 +- sys/fs/msdosfs/msdosfs_denode.c | 2 +- sys/fs/msdosfs/msdosfs_fat.c | 2 +- sys/fs/msdosfs/msdosfs_lookup.c | 2 +- sys/fs/msdosfs/msdosfs_vfsops.c | 2 +- sys/fs/msdosfs/msdosfs_vnops.c | 2 +- sys/fs/msdosfs/msdosfsmount.h | 2 +- sys/fs/ntfs/ntfs.h | 2 +- sys/fs/ntfs/ntfs_compr.c | 2 +- sys/fs/ntfs/ntfs_compr.h | 2 +- sys/fs/ntfs/ntfs_ihash.c | 2 +- sys/fs/ntfs/ntfs_ihash.h | 2 +- sys/fs/ntfs/ntfs_inode.h | 2 +- sys/fs/ntfs/ntfs_subr.c | 2 +- sys/fs/ntfs/ntfs_subr.h | 2 +- sys/fs/ntfs/ntfs_vfsops.c | 2 +- sys/fs/ntfs/ntfs_vfsops.h | 2 +- sys/fs/ntfs/ntfs_vnops.c | 2 +- sys/fs/ntfs/ntfsmount.h | 2 +- sys/fs/nullfs/null.h | 2 +- sys/fs/nullfs/null_subr.c | 2 +- sys/fs/nullfs/null_vfsops.c | 2 +- sys/fs/nullfs/null_vnops.c | 4 ++-- sys/fs/portalfs/portal.h | 2 +- sys/fs/portalfs/portal_vfsops.c | 2 +- sys/fs/portalfs/portal_vnops.c | 2 +- sys/fs/procfs/README | 2 +- sys/fs/procfs/procfs.h | 2 +- sys/fs/procfs/procfs_ctl.c | 2 +- sys/fs/procfs/procfs_dbregs.c | 2 +- sys/fs/procfs/procfs_fpregs.c | 2 +- sys/fs/procfs/procfs_map.c | 2 +- sys/fs/procfs/procfs_mem.c | 2 +- sys/fs/procfs/procfs_note.c | 2 +- sys/fs/procfs/procfs_regs.c | 2 +- sys/fs/procfs/procfs_rlimit.c | 2 +- sys/fs/procfs/procfs_status.c | 2 +- sys/fs/procfs/procfs_subr.c | 2 +- sys/fs/procfs/procfs_type.c | 2 +- sys/fs/procfs/procfs_vfsops.c | 2 +- sys/fs/procfs/procfs_vnops.c | 2 +- sys/fs/specfs/spec_vnops.c | 2 +- sys/fs/umapfs/umap.h | 2 +- sys/fs/umapfs/umap_subr.c | 2 +- sys/fs/umapfs/umap_vfsops.c | 2 +- sys/fs/umapfs/umap_vnops.c | 2 +- sys/fs/unionfs/union.h | 2 +- sys/fs/unionfs/union_subr.c | 2 +- sys/fs/unionfs/union_vfsops.c | 2 +- sys/fs/unionfs/union_vnops.c | 2 +- sys/geom/geom_ccd.c | 2 +- sys/gnu/ext2fs/ext2_bmap.c | 2 +- sys/gnu/ext2fs/ext2_ihash.c | 2 +- sys/gnu/ext2fs/ext2_mount.h | 2 +- sys/gnu/ext2fs/inode.h | 2 +- sys/gnu/fs/ext2fs/ext2_bmap.c | 2 +- sys/gnu/fs/ext2fs/ext2_mount.h | 2 +- sys/gnu/fs/ext2fs/inode.h | 2 +- sys/gnu/i386/fpemul/control_w.h | 2 +- sys/gnu/i386/fpemul/div_small.s | 2 +- sys/gnu/i386/fpemul/errors.c | 2 +- sys/gnu/i386/fpemul/exception.h | 2 +- sys/gnu/i386/fpemul/fpu_arith.c | 2 +- sys/gnu/i386/fpemul/fpu_asm.h | 2 +- sys/gnu/i386/fpemul/fpu_aux.c | 2 +- sys/gnu/i386/fpemul/fpu_emu.h | 2 +- sys/gnu/i386/fpemul/fpu_entry.c | 2 +- sys/gnu/i386/fpemul/fpu_etc.c | 2 +- sys/gnu/i386/fpemul/fpu_proto.h | 2 +- sys/gnu/i386/fpemul/fpu_system.h | 2 +- sys/gnu/i386/fpemul/fpu_trig.c | 2 +- sys/gnu/i386/fpemul/get_address.c | 2 +- sys/gnu/i386/fpemul/load_store.c | 2 +- sys/gnu/i386/fpemul/math_emu.h | 2 +- sys/gnu/i386/fpemul/poly_2xm1.c | 2 +- sys/gnu/i386/fpemul/poly_atan.c | 2 +- sys/gnu/i386/fpemul/poly_div.s | 2 +- sys/gnu/i386/fpemul/poly_l2.c | 2 +- sys/gnu/i386/fpemul/poly_mul64.s | 2 +- sys/gnu/i386/fpemul/poly_sin.c | 2 +- sys/gnu/i386/fpemul/poly_tan.c | 2 +- sys/gnu/i386/fpemul/polynomial.s | 2 +- sys/gnu/i386/fpemul/reg_add_sub.c | 2 +- sys/gnu/i386/fpemul/reg_compare.c | 2 +- sys/gnu/i386/fpemul/reg_constant.h | 2 +- sys/gnu/i386/fpemul/reg_div.s | 2 +- sys/gnu/i386/fpemul/reg_ld_str.c | 2 +- sys/gnu/i386/fpemul/reg_mul.c | 2 +- sys/gnu/i386/fpemul/reg_norm.s | 2 +- sys/gnu/i386/fpemul/reg_round.s | 2 +- sys/gnu/i386/fpemul/reg_u_add.s | 2 +- sys/gnu/i386/fpemul/reg_u_div.s | 2 +- sys/gnu/i386/fpemul/reg_u_mul.s | 2 +- sys/gnu/i386/fpemul/reg_u_sub.s | 2 +- sys/gnu/i386/fpemul/status_w.h | 2 +- sys/gnu/i386/fpemul/version.h | 2 +- sys/gnu/i386/fpemul/wm_shrx.s | 2 +- sys/gnu/i386/fpemul/wm_sqrt.s | 2 +- sys/gnu/i386/isa/dgb.c | 2 +- sys/gnu/i386/isa/dgm.c | 2 +- sys/gnu/i386/isa/dgmbios.h | 2 +- sys/gnu/i386/isa/dgmfep.h | 2 +- sys/gnu/i386/isa/dgmreg.h | 2 +- sys/gnu/i386/isa/dgreg.h | 2 +- sys/i386/Makefile | 2 +- sys/i386/apm/apm.c | 2 +- sys/i386/bios/apm.c | 2 +- sys/i386/boot/Makefile | 2 +- sys/i386/boot/Makefile.inc | 2 +- sys/i386/boot/biosboot/Makefile | 2 +- sys/i386/boot/biosboot/README.386BSD | 2 +- sys/i386/boot/biosboot/README.MACH | 2 +- sys/i386/boot/biosboot/README.serial | 2 +- sys/i386/boot/biosboot/asm.S | 2 +- sys/i386/boot/biosboot/asm.h | 2 +- sys/i386/boot/biosboot/bios.S | 2 +- sys/i386/boot/biosboot/boot.c | 2 +- sys/i386/boot/biosboot/boot.h | 2 +- sys/i386/boot/biosboot/boot2.S | 2 +- sys/i386/boot/biosboot/disk.c | 2 +- sys/i386/boot/biosboot/io.c | 2 +- sys/i386/boot/biosboot/probe_keyboard.c | 2 +- sys/i386/boot/biosboot/serial.S | 2 +- sys/i386/boot/biosboot/start.S | 2 +- sys/i386/boot/biosboot/sys.c | 2 +- sys/i386/boot/biosboot/table.c | 2 +- sys/i386/boot/cdboot/Makefile | 2 +- sys/i386/boot/cdboot/asm.S | 2 +- sys/i386/boot/cdboot/boot.c | 2 +- sys/i386/boot/cdboot/boot.h | 2 +- sys/i386/boot/cdboot/cdrom.c | 2 +- sys/i386/boot/cdboot/malloc.c | 2 +- sys/i386/boot/dosboot/Makefile | 2 +- sys/i386/boot/dosboot/ansi.h | 2 +- sys/i386/boot/dosboot/boot.c | 2 +- sys/i386/boot/dosboot/boot.h | 2 +- sys/i386/boot/dosboot/bootinfo.h | 2 +- sys/i386/boot/dosboot/cdefs.h | 2 +- sys/i386/boot/dosboot/dinode.h | 2 +- sys/i386/boot/dosboot/dir.h | 2 +- sys/i386/boot/dosboot/disk.c | 2 +- sys/i386/boot/dosboot/disklabe.h | 2 +- sys/i386/boot/dosboot/dkbad.h | 2 +- sys/i386/boot/dosboot/endian.h | 2 +- sys/i386/boot/dosboot/exec.h | 2 +- sys/i386/boot/dosboot/fs.h | 2 +- sys/i386/boot/dosboot/imgact.h | 2 +- sys/i386/boot/dosboot/inode.h | 2 +- sys/i386/boot/dosboot/mexec.h | 2 +- sys/i386/boot/dosboot/param.h | 2 +- sys/i386/boot/dosboot/quota.h | 2 +- sys/i386/boot/dosboot/reboot.h | 2 +- sys/i386/boot/dosboot/sys.c | 2 +- sys/i386/boot/dosboot/syslimit.h | 2 +- sys/i386/boot/dosboot/sysparam.h | 2 +- sys/i386/boot/dosboot/types.h | 2 +- sys/i386/boot/kzipboot/Makefile | 2 +- sys/i386/boot/netboot/3c509.c | 2 +- sys/i386/boot/netboot/Makefile | 2 +- sys/i386/boot/netboot/netboot.8 | 2 +- sys/i386/boot/rawboot/Makefile | 2 +- sys/i386/conf/GENERIC | 2 +- sys/i386/conf/LINT | 2 +- sys/i386/conf/Makefile.i386 | 2 +- sys/i386/conf/NOTES | 2 +- sys/i386/conf/PCCARD | 2 +- sys/i386/conf/devices.i386 | 2 +- sys/i386/conf/files.i386 | 2 +- sys/i386/conf/majors.i386 | 2 +- sys/i386/conf/options.i386 | 2 +- sys/i386/eisa/3c5x9.c | 2 +- sys/i386/eisa/adv_eisa.c | 2 +- sys/i386/eisa/ahb.c | 2 +- sys/i386/eisa/ahbreg.h | 2 +- sys/i386/eisa/ahc_eisa.c | 2 +- sys/i386/eisa/bt_eisa.c | 2 +- sys/i386/eisa/dpt_eisa.c | 2 +- sys/i386/eisa/dpt_eisa.h | 2 +- sys/i386/eisa/eisaconf.c | 2 +- sys/i386/eisa/eisaconf.h | 2 +- sys/i386/eisa/if_fea.c | 2 +- sys/i386/i386/apic_vector.s | 2 +- sys/i386/i386/atomic.c | 2 +- sys/i386/i386/autoconf.c | 2 +- sys/i386/i386/bios.c | 2 +- sys/i386/i386/bioscall.s | 2 +- sys/i386/i386/busdma_machdep.c | 2 +- sys/i386/i386/db_disasm.c | 2 +- sys/i386/i386/db_interface.c | 2 +- sys/i386/i386/db_trace.c | 2 +- sys/i386/i386/elf_machdep.c | 2 +- sys/i386/i386/exception.s | 2 +- sys/i386/i386/genassym.c | 2 +- sys/i386/i386/globals.s | 2 +- sys/i386/i386/i686_mem.c | 2 +- sys/i386/i386/identcpu.c | 2 +- sys/i386/i386/in_cksum.c | 2 +- sys/i386/i386/initcpu.c | 2 +- sys/i386/i386/k6_mem.c | 2 +- sys/i386/i386/legacy.c | 2 +- sys/i386/i386/locore.s | 2 +- sys/i386/i386/machdep.c | 2 +- sys/i386/i386/math_emu.h | 2 +- sys/i386/i386/math_emulate.c | 2 +- sys/i386/i386/mem.c | 2 +- sys/i386/i386/mp_machdep.c | 2 +- sys/i386/i386/mpapic.c | 2 +- sys/i386/i386/mpboot.s | 2 +- sys/i386/i386/mplock.s | 2 +- sys/i386/i386/mptable.c | 2 +- sys/i386/i386/nexus.c | 2 +- sys/i386/i386/perfmon.c | 2 +- sys/i386/i386/pmap.c | 2 +- sys/i386/i386/procfs_machdep.c | 2 +- sys/i386/i386/simplelock.s | 2 +- sys/i386/i386/support.s | 2 +- sys/i386/i386/swtch.s | 2 +- sys/i386/i386/symbols.raw | 2 +- sys/i386/i386/sys_machdep.c | 2 +- sys/i386/i386/trap.c | 2 +- sys/i386/i386/tsc.c | 2 +- sys/i386/i386/userconfig.c | 4 ++-- sys/i386/i386/vm86.c | 2 +- sys/i386/i386/vm86bios.s | 2 +- sys/i386/i386/vm_machdep.c | 2 +- sys/i386/ibcs2/Makefile | 2 +- sys/i386/ibcs2/coff.h | 2 +- sys/i386/ibcs2/ibcs2_fcntl.c | 2 +- sys/i386/ibcs2/ibcs2_ipc.c | 2 +- sys/i386/ibcs2/ibcs2_ipc.h | 2 +- sys/i386/ibcs2/ibcs2_isc.c | 2 +- sys/i386/ibcs2/ibcs2_misc.c | 2 +- sys/i386/ibcs2/ibcs2_msg.c | 2 +- sys/i386/ibcs2/ibcs2_other.c | 2 +- sys/i386/ibcs2/ibcs2_poll.h | 2 +- sys/i386/ibcs2/ibcs2_signal.c | 2 +- sys/i386/ibcs2/ibcs2_sysvec.c | 2 +- sys/i386/ibcs2/ibcs2_xenix.c | 2 +- sys/i386/ibcs2/imgact_coff.c | 2 +- sys/i386/ibcs2/syscalls.conf | 2 +- sys/i386/ibcs2/syscalls.isc | 2 +- sys/i386/ibcs2/syscalls.isc.conf | 2 +- sys/i386/ibcs2/syscalls.master | 2 +- sys/i386/ibcs2/syscalls.xenix | 2 +- sys/i386/ibcs2/syscalls.xenix.conf | 2 +- sys/i386/include/_limits.h | 2 +- sys/i386/include/ansi.h | 2 +- sys/i386/include/apic.h | 2 +- sys/i386/include/apicreg.h | 2 +- sys/i386/include/apm_bios.h | 2 +- sys/i386/include/apm_segments.h | 2 +- sys/i386/include/asm.h | 2 +- sys/i386/include/asmacros.h | 2 +- sys/i386/include/asnames.h | 2 +- sys/i386/include/atomic.h | 2 +- sys/i386/include/bootinfo.h | 2 +- sys/i386/include/bus.h | 2 +- sys/i386/include/bus_at386.h | 2 +- sys/i386/include/bus_dma.h | 2 +- sys/i386/include/bus_memio.h | 2 +- sys/i386/include/bus_pc98.h | 2 +- sys/i386/include/bus_pio.h | 2 +- sys/i386/include/cdk.h | 2 +- sys/i386/include/clock.h | 2 +- sys/i386/include/comstats.h | 2 +- sys/i386/include/cpu.h | 2 +- sys/i386/include/cpufunc.h | 2 +- sys/i386/include/cputypes.h | 2 +- sys/i386/include/db_machdep.h | 2 +- sys/i386/include/elf.h | 2 +- sys/i386/include/endian.h | 2 +- sys/i386/include/exec.h | 2 +- sys/i386/include/float.h | 2 +- sys/i386/include/floatingpoint.h | 2 +- sys/i386/include/frame.h | 2 +- sys/i386/include/globaldata.h | 2 +- sys/i386/include/globals.h | 2 +- sys/i386/include/i4b_cause.h | 2 +- sys/i386/include/i4b_debug.h | 2 +- sys/i386/include/i4b_ioctl.h | 2 +- sys/i386/include/i4b_rbch_ioctl.h | 2 +- sys/i386/include/i4b_tel_ioctl.h | 2 +- sys/i386/include/i4b_trace.h | 2 +- sys/i386/include/ieeefp.h | 2 +- sys/i386/include/if_wavelan_ieee.h | 2 +- sys/i386/include/if_wl_wavelan.h | 2 +- sys/i386/include/iic.h | 2 +- sys/i386/include/in_cksum.h | 2 +- sys/i386/include/ioctl_bt848.h | 2 +- sys/i386/include/ioctl_ctx.h | 2 +- sys/i386/include/ioctl_fd.h | 2 +- sys/i386/include/ipl.h | 2 +- sys/i386/include/limits.h | 2 +- sys/i386/include/lock.h | 2 +- sys/i386/include/lpt.h | 2 +- sys/i386/include/md_var.h | 2 +- sys/i386/include/mouse.h | 2 +- sys/i386/include/mpapic.h | 2 +- sys/i386/include/mptable.h | 2 +- sys/i386/include/mtpr.h | 2 +- sys/i386/include/npx.h | 2 +- sys/i386/include/param.h | 2 +- sys/i386/include/pc/bios.h | 2 +- sys/i386/include/pc/display.h | 2 +- sys/i386/include/pc/msdos.h | 2 +- sys/i386/include/pc/vesa.h | 2 +- sys/i386/include/pcaudioio.h | 2 +- sys/i386/include/pcb.h | 2 +- sys/i386/include/pcb_ext.h | 2 +- sys/i386/include/pci_cfgreg.h | 2 +- sys/i386/include/pcpu.h | 2 +- sys/i386/include/perfmon.h | 2 +- sys/i386/include/pmap.h | 2 +- sys/i386/include/proc.h | 2 +- sys/i386/include/profile.h | 2 +- sys/i386/include/psl.h | 2 +- sys/i386/include/ptrace.h | 2 +- sys/i386/include/random.h | 2 +- sys/i386/include/reg.h | 2 +- sys/i386/include/reloc.h | 2 +- sys/i386/include/segments.h | 2 +- sys/i386/include/setjmp.h | 2 +- sys/i386/include/si.h | 2 +- sys/i386/include/signal.h | 2 +- sys/i386/include/smb.h | 2 +- sys/i386/include/smp.h | 2 +- sys/i386/include/smptests.h | 2 +- sys/i386/include/speaker.h | 2 +- sys/i386/include/specialreg.h | 2 +- sys/i386/include/stdarg.h | 2 +- sys/i386/include/sysarch.h | 2 +- sys/i386/include/trap.h | 2 +- sys/i386/include/tss.h | 2 +- sys/i386/include/types.h | 2 +- sys/i386/include/varargs.h | 2 +- sys/i386/include/vm86.h | 2 +- sys/i386/include/vmparam.h | 2 +- sys/i386/include/wtio.h | 2 +- sys/i386/isa/README.le | 2 +- sys/i386/isa/adv_isa.c | 2 +- sys/i386/isa/aha_isa.c | 2 +- sys/i386/isa/aic6360.c | 2 +- sys/i386/isa/apic_ipl.h | 2 +- sys/i386/isa/apic_ipl.s | 2 +- sys/i386/isa/apic_vector.s | 2 +- sys/i386/isa/asc.c | 2 +- sys/i386/isa/ascreg.h | 2 +- sys/i386/isa/atapi-cd.c | 2 +- sys/i386/isa/atapi-cd.h | 2 +- sys/i386/isa/atpic_vector.s | 2 +- sys/i386/isa/clock.c | 2 +- sys/i386/isa/ctx.c | 2 +- sys/i386/isa/ctxreg.h | 2 +- sys/i386/isa/cy.c | 2 +- sys/i386/isa/cyreg.h | 2 +- sys/i386/isa/diskslice_machdep.c | 2 +- sys/i386/isa/elink.c | 2 +- sys/i386/isa/elink.h | 2 +- sys/i386/isa/ic/cd1400.h | 2 +- sys/i386/isa/ic/esp.h | 2 +- sys/i386/isa/ic/hd64570.h | 2 +- sys/i386/isa/ic/i8042.h | 2 +- sys/i386/isa/ic/i8237.h | 2 +- sys/i386/isa/ic/i82586.h | 2 +- sys/i386/isa/ic/lemac.h | 2 +- sys/i386/isa/ic/ns16550.h | 2 +- sys/i386/isa/ic/rsa.h | 2 +- sys/i386/isa/ic/scd1400.h | 2 +- sys/i386/isa/icu.h | 2 +- sys/i386/isa/icu_ipl.h | 2 +- sys/i386/isa/icu_ipl.s | 2 +- sys/i386/isa/icu_vector.s | 2 +- sys/i386/isa/if_ar.c | 2 +- sys/i386/isa/if_arregs.h | 2 +- sys/i386/isa/if_cs.c | 2 +- sys/i386/isa/if_csreg.h | 2 +- sys/i386/isa/if_ed.c | 2 +- sys/i386/isa/if_edreg.h | 2 +- sys/i386/isa/if_el.c | 2 +- sys/i386/isa/if_elreg.h | 2 +- sys/i386/isa/if_ep.c | 2 +- sys/i386/isa/if_epreg.h | 2 +- sys/i386/isa/if_ex.c | 2 +- sys/i386/isa/if_fe.c | 2 +- sys/i386/isa/if_fereg.h | 2 +- sys/i386/isa/if_ie.c | 2 +- sys/i386/isa/if_ie507.h | 2 +- sys/i386/isa/if_iereg.h | 2 +- sys/i386/isa/if_le.c | 2 +- sys/i386/isa/if_lnc.c | 2 +- sys/i386/isa/if_lnc.h | 2 +- sys/i386/isa/if_rdp.c | 2 +- sys/i386/isa/if_rdpreg.h | 2 +- sys/i386/isa/if_sr.c | 2 +- sys/i386/isa/if_srregs.h | 2 +- sys/i386/isa/if_wi.c | 4 ++-- sys/i386/isa/if_wireg.h | 2 +- sys/i386/isa/if_wl.c | 2 +- sys/i386/isa/if_ze.c | 2 +- sys/i386/isa/if_zp.c | 2 +- sys/i386/isa/if_zpreg.h | 2 +- sys/i386/isa/intr_machdep.c | 4 ++-- sys/i386/isa/intr_machdep.h | 2 +- sys/i386/isa/ipl.s | 2 +- sys/i386/isa/ipl_funcs.c | 2 +- sys/i386/isa/isa.c | 2 +- sys/i386/isa/isa.h | 2 +- sys/i386/isa/isa_compat.c | 2 +- sys/i386/isa/isa_compat.h | 2 +- sys/i386/isa/isa_device.h | 2 +- sys/i386/isa/isa_dma.c | 2 +- sys/i386/isa/isa_dma.h | 2 +- sys/i386/isa/istallion.c | 2 +- sys/i386/isa/loran.c | 2 +- sys/i386/isa/lptreg.h | 2 +- sys/i386/isa/matcd/matcd.c | 2 +- sys/i386/isa/mcd.c | 2 +- sys/i386/isa/mcdreg.h | 2 +- sys/i386/isa/mse.c | 2 +- sys/i386/isa/nmi.c | 4 ++-- sys/i386/isa/npx.c | 2 +- sys/i386/isa/pcaudio.c | 2 +- sys/i386/isa/pcf.c | 2 +- sys/i386/isa/pcibus.c | 2 +- sys/i386/isa/pcibus.h | 2 +- sys/i386/isa/pnp.c | 2 +- sys/i386/isa/pnp.h | 2 +- sys/i386/isa/ppc.c | 2 +- sys/i386/isa/ppcreg.h | 2 +- sys/i386/isa/prof_machdep.c | 2 +- sys/i386/isa/random_machdep.c | 2 +- sys/i386/isa/rp.c | 2 +- sys/i386/isa/scd.c | 2 +- sys/i386/isa/scdreg.h | 2 +- sys/i386/isa/si.c | 2 +- sys/i386/isa/sireg.h | 2 +- sys/i386/isa/sound/mmap_test.c | 2 +- sys/i386/isa/sound/pcm86.c | 2 +- sys/i386/isa/sound/sound.doc | 2 +- sys/i386/isa/spkr.c | 2 +- sys/i386/isa/stallion.c | 2 +- sys/i386/isa/timerreg.h | 2 +- sys/i386/isa/vector.s | 2 +- sys/i386/isa/vesa.c | 2 +- sys/i386/isa/wd.c | 2 +- sys/i386/isa/wd_cd.c | 2 +- sys/i386/isa/wd_cd.h | 2 +- sys/i386/isa/wdreg.h | 2 +- sys/i386/isa/wfd.c | 2 +- sys/i386/isa/wst.c | 2 +- sys/i386/isa/wt.c | 2 +- sys/i386/isa/wtreg.h | 2 +- sys/i386/linux/Makefile | 2 +- sys/i386/linux/imgact_linux.c | 2 +- sys/i386/linux/linux.h | 2 +- sys/i386/linux/linux_dummy.c | 2 +- sys/i386/linux/linux_file.c | 2 +- sys/i386/linux/linux_genassym.c | 2 +- sys/i386/linux/linux_ioctl.c | 2 +- sys/i386/linux/linux_ipc.c | 2 +- sys/i386/linux/linux_misc.c | 2 +- sys/i386/linux/linux_signal.c | 2 +- sys/i386/linux/linux_socket.c | 2 +- sys/i386/linux/linux_stats.c | 2 +- sys/i386/linux/linux_sysvec.c | 2 +- sys/i386/linux/linux_util.c | 2 +- sys/i386/linux/linux_util.h | 2 +- sys/i386/linux/syscalls.conf | 2 +- sys/i386/linux/syscalls.master | 2 +- sys/i386/pci/pci_bus.c | 2 +- sys/i386/pci/pci_cfgreg.c | 2 +- sys/i386/pci/pci_pir.c | 2 +- sys/i386/svr4/svr4_genassym.c | 2 +- sys/i386/svr4/svr4_locore.s | 2 +- sys/i386/svr4/svr4_machdep.c | 2 +- sys/i386/svr4/svr4_machdep.h | 2 +- sys/i4b/driver/i4b_bsdi_ibc.c | 2 +- sys/i4b/driver/i4b_ctl.c | 2 +- sys/i4b/driver/i4b_ipr.c | 2 +- sys/i4b/driver/i4b_isppp.c | 2 +- sys/i4b/driver/i4b_rbch.c | 2 +- sys/i4b/driver/i4b_tel.c | 2 +- sys/i4b/driver/i4b_trace.c | 2 +- sys/i4b/include/i4b_cause.h | 2 +- sys/i4b/include/i4b_debug.h | 2 +- sys/i4b/include/i4b_global.h | 2 +- sys/i4b/include/i4b_ioctl.h | 2 +- sys/i4b/include/i4b_isdnq931.h | 2 +- sys/i4b/include/i4b_l1l2.h | 2 +- sys/i4b/include/i4b_l2l3.h | 2 +- sys/i4b/include/i4b_l3l4.h | 2 +- sys/i4b/include/i4b_mbuf.h | 2 +- sys/i4b/include/i4b_rbch_ioctl.h | 2 +- sys/i4b/include/i4b_tel_ioctl.h | 2 +- sys/i4b/include/i4b_trace.h | 2 +- sys/i4b/layer1/i4b_asuscom_ipac.c | 2 +- sys/i4b/layer1/i4b_avm_a1.c | 2 +- sys/i4b/layer1/i4b_avm_fritz_pci.c | 2 +- sys/i4b/layer1/i4b_avm_fritz_pcmcia.c | 2 +- sys/i4b/layer1/i4b_avm_fritz_pnp.c | 2 +- sys/i4b/layer1/i4b_bchan.c | 2 +- sys/i4b/layer1/i4b_ctx_s0P.c | 2 +- sys/i4b/layer1/i4b_drn_ngo.c | 2 +- sys/i4b/layer1/i4b_dynalink.c | 2 +- sys/i4b/layer1/i4b_elsa_isdnmc.c | 2 +- sys/i4b/layer1/i4b_elsa_mcall.c | 2 +- sys/i4b/layer1/i4b_elsa_qs1i.c | 2 +- sys/i4b/layer1/i4b_elsa_qs1p.c | 2 +- sys/i4b/layer1/i4b_hscx.c | 2 +- sys/i4b/layer1/i4b_hscx.h | 2 +- sys/i4b/layer1/i4b_ipac.h | 2 +- sys/i4b/layer1/i4b_isac.c | 2 +- sys/i4b/layer1/i4b_isac.h | 2 +- sys/i4b/layer1/i4b_isic.c | 2 +- sys/i4b/layer1/i4b_isic_isa.c | 2 +- sys/i4b/layer1/i4b_isic_pci.c | 2 +- sys/i4b/layer1/i4b_isic_pcmcia.c | 2 +- sys/i4b/layer1/i4b_isic_pnp.c | 2 +- sys/i4b/layer1/i4b_itk_ix1.c | 2 +- sys/i4b/layer1/i4b_l1.c | 2 +- sys/i4b/layer1/i4b_l1.h | 2 +- sys/i4b/layer1/i4b_l1fsm.c | 2 +- sys/i4b/layer1/i4b_siemens_isurf.c | 2 +- sys/i4b/layer1/i4b_sws.c | 2 +- sys/i4b/layer1/i4b_tel_s016.c | 2 +- sys/i4b/layer1/i4b_tel_s0163.c | 2 +- sys/i4b/layer1/i4b_tel_s08.c | 2 +- sys/i4b/layer1/i4b_tel_s0P.c | 2 +- sys/i4b/layer1/i4b_usr_sti.c | 2 +- sys/i4b/layer1/isa_isic.c | 2 +- sys/i4b/layer1/isapnp_isic.c | 2 +- sys/i4b/layer1/isic_supio.c | 2 +- sys/i4b/layer1/pci_isic.c | 2 +- sys/i4b/layer1/pci_isic.h | 2 +- sys/i4b/layer1/pcmcia_isic.c | 2 +- sys/i4b/layer1/pcmcia_isic.h | 2 +- sys/i4b/layer2/i4b_iframe.c | 2 +- sys/i4b/layer2/i4b_l2.c | 2 +- sys/i4b/layer2/i4b_l2.h | 2 +- sys/i4b/layer2/i4b_l2fsm.c | 2 +- sys/i4b/layer2/i4b_l2fsm.h | 2 +- sys/i4b/layer2/i4b_l2timer.c | 2 +- sys/i4b/layer2/i4b_lme.c | 2 +- sys/i4b/layer2/i4b_mbuf.c | 2 +- sys/i4b/layer2/i4b_sframe.c | 2 +- sys/i4b/layer2/i4b_tei.c | 2 +- sys/i4b/layer2/i4b_uframe.c | 2 +- sys/i4b/layer2/i4b_util.c | 2 +- sys/i4b/layer3/i4b_l2if.c | 2 +- sys/i4b/layer3/i4b_l3.h | 2 +- sys/i4b/layer3/i4b_l3fsm.c | 2 +- sys/i4b/layer3/i4b_l3fsm.h | 2 +- sys/i4b/layer3/i4b_l3timer.c | 2 +- sys/i4b/layer3/i4b_l4if.c | 2 +- sys/i4b/layer3/i4b_q931.c | 2 +- sys/i4b/layer3/i4b_q931.h | 2 +- sys/i4b/layer3/i4b_q932fac.c | 2 +- sys/i4b/layer3/i4b_q932fac.h | 2 +- sys/i4b/layer4/i4b_i4bdrv.c | 2 +- sys/i4b/layer4/i4b_l4.c | 2 +- sys/i4b/layer4/i4b_l4.h | 2 +- sys/i4b/layer4/i4b_l4mgmt.c | 2 +- sys/i4b/layer4/i4b_l4timer.c | 2 +- sys/i4b/tina-dd/i4b_tina_dd.c | 2 +- sys/i4b/tina-dd/i4b_tina_ioctl.h | 2 +- sys/isa/atkbd_isa.c | 2 +- sys/isa/atkbdc_isa.c | 2 +- sys/isa/atrtc.c | 2 +- sys/isa/bt_isa.c | 2 +- sys/isa/fd.c | 2 +- sys/isa/fdc.h | 2 +- sys/isa/fdreg.h | 2 +- sys/isa/ic/esp.h | 2 +- sys/isa/ic/nec765.h | 2 +- sys/isa/ic/ns16550.h | 2 +- sys/isa/isa_common.c | 2 +- sys/isa/isa_common.h | 2 +- sys/isa/isa_if.m | 2 +- sys/isa/isahint.c | 2 +- sys/isa/isareg.h | 2 +- sys/isa/isavar.h | 2 +- sys/isa/pnp.h | 2 +- sys/isa/ppc.c | 2 +- sys/isa/ppcreg.h | 2 +- sys/isa/psm.c | 2 +- sys/isa/rtc.h | 2 +- sys/isa/sio.c | 2 +- sys/isa/sioreg.h | 2 +- sys/isa/syscons_isa.c | 2 +- sys/isa/vga_isa.c | 2 +- sys/isofs/cd9660/TODO | 2 +- sys/isofs/cd9660/cd9660_bmap.c | 2 +- sys/isofs/cd9660/cd9660_lookup.c | 2 +- sys/isofs/cd9660/cd9660_node.c | 2 +- sys/isofs/cd9660/cd9660_node.h | 2 +- sys/isofs/cd9660/cd9660_rrip.c | 2 +- sys/isofs/cd9660/cd9660_rrip.h | 2 +- sys/isofs/cd9660/cd9660_util.c | 2 +- sys/isofs/cd9660/cd9660_vfsops.c | 2 +- sys/isofs/cd9660/cd9660_vnops.c | 2 +- sys/isofs/cd9660/iso.h | 2 +- sys/isofs/cd9660/iso_rrip.h | 2 +- sys/kern/bus_if.m | 2 +- sys/kern/device_if.m | 2 +- sys/kern/imgact_aout.c | 2 +- sys/kern/imgact_elf.c | 2 +- sys/kern/imgact_gzip.c | 2 +- sys/kern/imgact_shell.c | 2 +- sys/kern/inflate.c | 2 +- sys/kern/init_main.c | 2 +- sys/kern/kern_acct.c | 2 +- sys/kern/kern_clock.c | 2 +- sys/kern/kern_conf.c | 2 +- sys/kern/kern_descrip.c | 2 +- sys/kern/kern_environment.c | 2 +- sys/kern/kern_exec.c | 2 +- sys/kern/kern_exit.c | 2 +- sys/kern/kern_fork.c | 2 +- sys/kern/kern_intr.c | 2 +- sys/kern/kern_jail.c | 2 +- sys/kern/kern_ktrace.c | 2 +- sys/kern/kern_linker.c | 2 +- sys/kern/kern_lock.c | 2 +- sys/kern/kern_lockf.c | 2 +- sys/kern/kern_malloc.c | 2 +- sys/kern/kern_mib.c | 2 +- sys/kern/kern_module.c | 2 +- sys/kern/kern_physio.c | 2 +- sys/kern/kern_proc.c | 2 +- sys/kern/kern_prot.c | 2 +- sys/kern/kern_random.c | 2 +- sys/kern/kern_resource.c | 2 +- sys/kern/kern_shutdown.c | 2 +- sys/kern/kern_sig.c | 2 +- sys/kern/kern_subr.c | 2 +- sys/kern/kern_synch.c | 2 +- sys/kern/kern_syscalls.c | 2 +- sys/kern/kern_sysctl.c | 2 +- sys/kern/kern_tc.c | 2 +- sys/kern/kern_threads.c | 2 +- sys/kern/kern_time.c | 2 +- sys/kern/kern_timeout.c | 2 +- sys/kern/kern_xxx.c | 2 +- sys/kern/link_aout.c | 2 +- sys/kern/link_elf.c | 2 +- sys/kern/link_elf_obj.c | 2 +- sys/kern/makedevops.pl | 2 +- sys/kern/makesyscalls.sh | 2 +- sys/kern/md5c.c | 2 +- sys/kern/subr_autoconf.c | 2 +- sys/kern/subr_blist.c | 2 +- sys/kern/subr_bus.c | 2 +- sys/kern/subr_clist.c | 2 +- sys/kern/subr_devstat.c | 2 +- sys/kern/subr_disklabel.c | 2 +- sys/kern/subr_diskmbr.c | 2 +- sys/kern/subr_diskslice.c | 2 +- sys/kern/subr_dkbad.c | 2 +- sys/kern/subr_eventhandler.c | 2 +- sys/kern/subr_log.c | 2 +- sys/kern/subr_module.c | 2 +- sys/kern/subr_param.c | 2 +- sys/kern/subr_prf.c | 2 +- sys/kern/subr_prof.c | 2 +- sys/kern/subr_rman.c | 2 +- sys/kern/subr_scanf.c | 2 +- sys/kern/subr_smp.c | 2 +- sys/kern/subr_trap.c | 2 +- sys/kern/subr_xxx.c | 2 +- sys/kern/sys_generic.c | 2 +- sys/kern/sys_pipe.c | 2 +- sys/kern/sys_process.c | 2 +- sys/kern/sys_socket.c | 2 +- sys/kern/syscalls.master | 2 +- sys/kern/sysv_ipc.c | 2 +- sys/kern/sysv_msg.c | 2 +- sys/kern/sysv_sem.c | 2 +- sys/kern/sysv_shm.c | 2 +- sys/kern/tty.c | 2 +- sys/kern/tty_compat.c | 2 +- sys/kern/tty_conf.c | 2 +- sys/kern/tty_cons.c | 2 +- sys/kern/tty_pty.c | 2 +- sys/kern/tty_snoop.c | 2 +- sys/kern/tty_subr.c | 2 +- sys/kern/tty_tb.c | 2 +- sys/kern/tty_tty.c | 2 +- sys/kern/uipc_domain.c | 2 +- sys/kern/uipc_mbuf.c | 2 +- sys/kern/uipc_proto.c | 2 +- sys/kern/uipc_sockbuf.c | 2 +- sys/kern/uipc_socket.c | 2 +- sys/kern/uipc_socket2.c | 2 +- sys/kern/uipc_syscalls.c | 2 +- sys/kern/uipc_usrreq.c | 2 +- sys/kern/vfs_aio.c | 2 +- sys/kern/vfs_bio.c | 2 +- sys/kern/vfs_cache.c | 2 +- sys/kern/vfs_cluster.c | 2 +- sys/kern/vfs_conf.c | 2 +- sys/kern/vfs_default.c | 2 +- sys/kern/vfs_export.c | 2 +- sys/kern/vfs_extattr.c | 2 +- sys/kern/vfs_init.c | 2 +- sys/kern/vfs_lookup.c | 2 +- sys/kern/vfs_mount.c | 2 +- sys/kern/vfs_subr.c | 2 +- sys/kern/vfs_syscalls.c | 2 +- sys/kern/vfs_vnops.c | 2 +- sys/kern/vnode_if.pl | 2 +- sys/kern/vnode_if.sh | 2 +- sys/kern/vnode_if.src | 2 +- sys/libkern/adddi3.c | 2 +- sys/libkern/anddi3.c | 2 +- sys/libkern/ashldi3.c | 2 +- sys/libkern/ashrdi3.c | 2 +- sys/libkern/bcmp.c | 2 +- sys/libkern/cmpdi2.c | 2 +- sys/libkern/divdi3.c | 2 +- sys/libkern/ffs.c | 2 +- sys/libkern/index.c | 2 +- sys/libkern/iordi3.c | 2 +- sys/libkern/locc.c | 2 +- sys/libkern/lshldi3.c | 2 +- sys/libkern/lshrdi3.c | 2 +- sys/libkern/mcount.c | 2 +- sys/libkern/moddi3.c | 2 +- sys/libkern/muldi3.c | 2 +- sys/libkern/negdi2.c | 2 +- sys/libkern/notdi2.c | 2 +- sys/libkern/qdivrem.c | 2 +- sys/libkern/qsort.c | 2 +- sys/libkern/quad.h | 2 +- sys/libkern/random.c | 2 +- sys/libkern/rindex.c | 2 +- sys/libkern/scanc.c | 2 +- sys/libkern/skpc.c | 2 +- sys/libkern/strcat.c | 2 +- sys/libkern/strcmp.c | 2 +- sys/libkern/strcpy.c | 2 +- sys/libkern/strlen.c | 2 +- sys/libkern/strncmp.c | 2 +- sys/libkern/strncpy.c | 2 +- sys/libkern/subdi3.c | 2 +- sys/libkern/ucmpdi2.c | 2 +- sys/libkern/udivdi3.c | 2 +- sys/libkern/umoddi3.c | 2 +- sys/libkern/xordi3.c | 2 +- sys/miscfs/deadfs/dead_vnops.c | 2 +- sys/miscfs/devfs/devfs_tree.c | 2 +- sys/miscfs/devfs/devfs_vfsops.c | 2 +- sys/miscfs/devfs/devfs_vnops.c | 2 +- sys/miscfs/devfs/devfsdefs.h | 2 +- sys/miscfs/fdesc/fdesc.h | 2 +- sys/miscfs/fdesc/fdesc_vfsops.c | 2 +- sys/miscfs/fdesc/fdesc_vnops.c | 2 +- sys/miscfs/fifofs/fifo.h | 2 +- sys/miscfs/fifofs/fifo_vnops.c | 2 +- sys/miscfs/kernfs/kernfs.h | 2 +- sys/miscfs/kernfs/kernfs_vfsops.c | 2 +- sys/miscfs/kernfs/kernfs_vnops.c | 2 +- sys/miscfs/nullfs/null.h | 2 +- sys/miscfs/nullfs/null_subr.c | 2 +- sys/miscfs/nullfs/null_vfsops.c | 2 +- sys/miscfs/nullfs/null_vnops.c | 4 ++-- sys/miscfs/portal/portal.h | 2 +- sys/miscfs/portal/portal_vfsops.c | 2 +- sys/miscfs/portal/portal_vnops.c | 2 +- sys/miscfs/procfs/README | 2 +- sys/miscfs/procfs/procfs.h | 2 +- sys/miscfs/procfs/procfs_ctl.c | 2 +- sys/miscfs/procfs/procfs_dbregs.c | 2 +- sys/miscfs/procfs/procfs_fpregs.c | 2 +- sys/miscfs/procfs/procfs_map.c | 2 +- sys/miscfs/procfs/procfs_mem.c | 2 +- sys/miscfs/procfs/procfs_note.c | 2 +- sys/miscfs/procfs/procfs_regs.c | 2 +- sys/miscfs/procfs/procfs_rlimit.c | 2 +- sys/miscfs/procfs/procfs_status.c | 2 +- sys/miscfs/procfs/procfs_subr.c | 2 +- sys/miscfs/procfs/procfs_type.c | 2 +- sys/miscfs/procfs/procfs_vfsops.c | 2 +- sys/miscfs/procfs/procfs_vnops.c | 2 +- sys/miscfs/specfs/spec_vnops.c | 2 +- sys/miscfs/umapfs/umap.h | 2 +- sys/miscfs/umapfs/umap_subr.c | 2 +- sys/miscfs/umapfs/umap_vfsops.c | 2 +- sys/miscfs/umapfs/umap_vnops.c | 2 +- sys/miscfs/union/union.h | 2 +- sys/miscfs/union/union_subr.c | 2 +- sys/miscfs/union/union_vfsops.c | 2 +- sys/miscfs/union/union_vnops.c | 2 +- sys/modules/Makefile | 2 +- sys/modules/Makefile.inc | 2 +- sys/modules/atapi/Makefile | 2 +- sys/modules/ax/Makefile | 2 +- sys/modules/bktr/Makefile | 2 +- sys/modules/ccd/Makefile | 2 +- sys/modules/cd9660/Makefile | 2 +- sys/modules/coda/Makefile | 2 +- sys/modules/coff/Makefile | 2 +- sys/modules/fdesc/Makefile | 2 +- sys/modules/fdescfs/Makefile | 2 +- sys/modules/fpu/Makefile | 2 +- sys/modules/fxp/Makefile | 2 +- sys/modules/gnufpu/Makefile | 2 +- sys/modules/ibcs2/Makefile | 2 +- sys/modules/ibcs2/ibcs2.8 | 2 +- sys/modules/ibcs2/ibcs2.sh | 2 +- sys/modules/if_disc/Makefile | 2 +- sys/modules/if_ppp/Makefile | 2 +- sys/modules/if_sl/Makefile | 2 +- sys/modules/if_tun/Makefile | 2 +- sys/modules/ip_mroute_mod/Makefile | 2 +- sys/modules/ipfw/Makefile | 2 +- sys/modules/joy/Makefile | 2 +- sys/modules/joy/joy.8 | 2 +- sys/modules/joy/joy.sh | 2 +- sys/modules/kernfs/Makefile | 2 +- sys/modules/linux/Makefile | 2 +- sys/modules/linux/linux.8 | 2 +- sys/modules/linux/linux.sh | 2 +- sys/modules/mfs/Makefile | 2 +- sys/modules/mii/Makefile | 2 +- sys/modules/msdos/Makefile | 2 +- sys/modules/msdosfs/Makefile | 2 +- sys/modules/mx/Makefile | 2 +- sys/modules/nfs/Makefile | 2 +- sys/modules/nfsclient/Makefile | 2 +- sys/modules/nfsserver/Makefile | 2 +- sys/modules/ntfs/Makefile | 2 +- sys/modules/nullfs/Makefile | 2 +- sys/modules/pcic/Makefile | 2 +- sys/modules/pn/Makefile | 2 +- sys/modules/portal/Makefile | 2 +- sys/modules/portalfs/Makefile | 2 +- sys/modules/procfs/Makefile | 2 +- sys/modules/sf/Makefile | 2 +- sys/modules/sk/Makefile | 2 +- sys/modules/splash/Makefile | 2 +- sys/modules/splash/Makefile.inc | 2 +- sys/modules/splash/bmp/Makefile | 2 +- sys/modules/splash/bmp/splash_bmp.c | 2 +- sys/modules/splash/pcx/Makefile | 2 +- sys/modules/splash/pcx/splash_pcx.c | 2 +- sys/modules/ste/Makefile | 2 +- sys/modules/streams/Makefile | 2 +- sys/modules/svr4/Makefile | 2 +- sys/modules/svr4/README | 2 +- sys/modules/svr4/TO-DO | 2 +- sys/modules/svr4/svr4.sh | 2 +- sys/modules/syscons/Makefile | 2 +- sys/modules/syscons/Makefile.inc | 2 +- sys/modules/syscons/blank/Makefile | 2 +- sys/modules/syscons/blank/blank_saver.c | 2 +- sys/modules/syscons/daemon/Makefile | 2 +- sys/modules/syscons/daemon/daemon_saver.c | 2 +- sys/modules/syscons/fade/Makefile | 2 +- sys/modules/syscons/fade/fade_saver.c | 2 +- sys/modules/syscons/fire/fire_saver.c | 2 +- sys/modules/syscons/green/Makefile | 2 +- sys/modules/syscons/green/green_saver.c | 2 +- sys/modules/syscons/logo/Makefile | 2 +- sys/modules/syscons/logo/logo_saver.c | 2 +- sys/modules/syscons/rain/Makefile | 2 +- sys/modules/syscons/rain/rain_saver.c | 2 +- sys/modules/syscons/snake/Makefile | 2 +- sys/modules/syscons/snake/snake_saver.c | 2 +- sys/modules/syscons/star/Makefile | 2 +- sys/modules/syscons/star/star_saver.c | 2 +- sys/modules/syscons/warp/Makefile | 2 +- sys/modules/syscons/warp/warp_saver.c | 2 +- sys/modules/ti/Makefile | 2 +- sys/modules/tl/Makefile | 2 +- sys/modules/umapfs/Makefile | 2 +- sys/modules/union/Makefile | 2 +- sys/modules/unionfs/Makefile | 2 +- sys/modules/vesa/Makefile | 2 +- sys/modules/vinum/Makefile | 2 +- sys/modules/vn/Makefile | 2 +- sys/modules/vr/Makefile | 2 +- sys/modules/wb/Makefile | 2 +- sys/modules/xl/Makefile | 2 +- sys/msdosfs/bootsect.h | 2 +- sys/msdosfs/bpb.h | 2 +- sys/msdosfs/denode.h | 2 +- sys/msdosfs/direntry.h | 2 +- sys/msdosfs/fat.h | 2 +- sys/msdosfs/msdosfs_conv.c | 2 +- sys/msdosfs/msdosfs_denode.c | 2 +- sys/msdosfs/msdosfs_fat.c | 2 +- sys/msdosfs/msdosfs_lookup.c | 2 +- sys/msdosfs/msdosfs_vfsops.c | 2 +- sys/msdosfs/msdosfs_vnops.c | 2 +- sys/msdosfs/msdosfsmount.h | 2 +- sys/net/bpf.c | 2 +- sys/net/bpf.h | 2 +- sys/net/bpf_compat.h | 2 +- sys/net/bpf_filter.c | 2 +- sys/net/bpfdesc.h | 2 +- sys/net/bsd_comp.c | 2 +- sys/net/ethernet.h | 2 +- sys/net/fddi.h | 2 +- sys/net/hostcache.c | 2 +- sys/net/hostcache.h | 2 +- sys/net/if.c | 2 +- sys/net/if.h | 2 +- sys/net/if_arp.h | 2 +- sys/net/if_disc.c | 2 +- sys/net/if_dl.h | 2 +- sys/net/if_ethersubr.c | 2 +- sys/net/if_fddisubr.c | 2 +- sys/net/if_iso88025subr.c | 2 +- sys/net/if_llc.h | 2 +- sys/net/if_loop.c | 2 +- sys/net/if_media.c | 2 +- sys/net/if_media.h | 2 +- sys/net/if_mib.c | 2 +- sys/net/if_mib.h | 2 +- sys/net/if_ppp.c | 2 +- sys/net/if_ppp.h | 2 +- sys/net/if_pppvar.h | 2 +- sys/net/if_sl.c | 2 +- sys/net/if_slvar.h | 2 +- sys/net/if_sppp.h | 2 +- sys/net/if_spppsubr.c | 2 +- sys/net/if_tun.h | 2 +- sys/net/if_tunvar.h | 2 +- sys/net/if_types.h | 2 +- sys/net/if_var.h | 2 +- sys/net/if_vlan.c | 2 +- sys/net/if_vlan_var.h | 2 +- sys/net/iso88025.h | 2 +- sys/net/netisr.h | 2 +- sys/net/ppp_comp.h | 2 +- sys/net/ppp_deflate.c | 2 +- sys/net/ppp_defs.h | 2 +- sys/net/ppp_tty.c | 2 +- sys/net/radix.c | 2 +- sys/net/radix.h | 2 +- sys/net/raw_cb.c | 2 +- sys/net/raw_cb.h | 2 +- sys/net/raw_usrreq.c | 2 +- sys/net/route.c | 2 +- sys/net/route.h | 2 +- sys/net/rtsock.c | 2 +- sys/net/slcompress.c | 2 +- sys/net/slcompress.h | 2 +- sys/net/slip.h | 2 +- sys/net/zlib.c | 2 +- sys/net/zlib.h | 2 +- sys/netatm/atm.h | 2 +- sys/netatm/atm_aal5.c | 4 ++-- sys/netatm/atm_cm.c | 4 ++-- sys/netatm/atm_cm.h | 2 +- sys/netatm/atm_device.c | 4 ++-- sys/netatm/atm_if.c | 4 ++-- sys/netatm/atm_if.h | 2 +- sys/netatm/atm_ioctl.h | 2 +- sys/netatm/atm_pcb.h | 2 +- sys/netatm/atm_proto.c | 4 ++-- sys/netatm/atm_sap.h | 2 +- sys/netatm/atm_sigmgr.h | 2 +- sys/netatm/atm_signal.c | 4 ++-- sys/netatm/atm_socket.c | 4 ++-- sys/netatm/atm_stack.h | 2 +- sys/netatm/atm_subr.c | 4 ++-- sys/netatm/atm_sys.h | 2 +- sys/netatm/atm_usrreq.c | 4 ++-- sys/netatm/atm_var.h | 2 +- sys/netatm/atm_vc.h | 2 +- sys/netatm/ipatm/ipatm.h | 2 +- sys/netatm/ipatm/ipatm_event.c | 4 ++-- sys/netatm/ipatm/ipatm_if.c | 4 ++-- sys/netatm/ipatm/ipatm_input.c | 4 ++-- sys/netatm/ipatm/ipatm_load.c | 4 ++-- sys/netatm/ipatm/ipatm_output.c | 4 ++-- sys/netatm/ipatm/ipatm_serv.h | 2 +- sys/netatm/ipatm/ipatm_usrreq.c | 4 ++-- sys/netatm/ipatm/ipatm_var.h | 2 +- sys/netatm/ipatm/ipatm_vcm.c | 4 ++-- sys/netatm/kern_include.h | 2 +- sys/netatm/port.h | 2 +- sys/netatm/queue.h | 2 +- sys/netatm/sigpvc/sigpvc.h | 2 +- sys/netatm/sigpvc/sigpvc_if.c | 4 ++-- sys/netatm/sigpvc/sigpvc_subr.c | 4 ++-- sys/netatm/sigpvc/sigpvc_var.h | 2 +- sys/netatm/spans/spans_arp.c | 4 ++-- sys/netatm/spans/spans_cls.c | 4 ++-- sys/netatm/spans/spans_cls.h | 2 +- sys/netatm/spans/spans_if.c | 4 ++-- sys/netatm/spans/spans_kxdr.c | 4 ++-- sys/netatm/spans/spans_msg.c | 4 ++-- sys/netatm/spans/spans_print.c | 4 ++-- sys/netatm/spans/spans_proto.c | 4 ++-- sys/netatm/spans/spans_subr.c | 4 ++-- sys/netatm/spans/spans_util.c | 4 ++-- sys/netatm/spans/spans_var.h | 2 +- sys/netatm/spans/spans_xdr.x | 4 ++-- sys/netatm/uni/q2110_sigaa.c | 4 ++-- sys/netatm/uni/q2110_sigcpcs.c | 4 ++-- sys/netatm/uni/q2110_subr.c | 4 ++-- sys/netatm/uni/qsaal1_sigaa.c | 4 ++-- sys/netatm/uni/qsaal1_sigcpcs.c | 4 ++-- sys/netatm/uni/qsaal1_subr.c | 4 ++-- sys/netatm/uni/sscf_uni.c | 4 ++-- sys/netatm/uni/sscf_uni.h | 2 +- sys/netatm/uni/sscf_uni_lower.c | 4 ++-- sys/netatm/uni/sscf_uni_upper.c | 4 ++-- sys/netatm/uni/sscf_uni_var.h | 2 +- sys/netatm/uni/sscop.c | 4 ++-- sys/netatm/uni/sscop.h | 2 +- sys/netatm/uni/sscop_lower.c | 4 ++-- sys/netatm/uni/sscop_misc.h | 2 +- sys/netatm/uni/sscop_pdu.c | 4 ++-- sys/netatm/uni/sscop_pdu.h | 2 +- sys/netatm/uni/sscop_sigaa.c | 4 ++-- sys/netatm/uni/sscop_sigcpcs.c | 4 ++-- sys/netatm/uni/sscop_subr.c | 4 ++-- sys/netatm/uni/sscop_timer.c | 4 ++-- sys/netatm/uni/sscop_upper.c | 4 ++-- sys/netatm/uni/sscop_var.h | 2 +- sys/netatm/uni/uni.h | 2 +- sys/netatm/uni/uni_load.c | 4 ++-- sys/netatm/uni/uniarp.c | 4 ++-- sys/netatm/uni/uniarp_cache.c | 4 ++-- sys/netatm/uni/uniarp_input.c | 4 ++-- sys/netatm/uni/uniarp_output.c | 4 ++-- sys/netatm/uni/uniarp_timer.c | 4 ++-- sys/netatm/uni/uniarp_vcm.c | 4 ++-- sys/netatm/uni/uniip.c | 4 ++-- sys/netatm/uni/uniip_var.h | 2 +- sys/netatm/uni/unisig.h | 2 +- sys/netatm/uni/unisig_decode.c | 4 ++-- sys/netatm/uni/unisig_decode.h | 2 +- sys/netatm/uni/unisig_encode.c | 4 ++-- sys/netatm/uni/unisig_if.c | 4 ++-- sys/netatm/uni/unisig_mbuf.c | 4 ++-- sys/netatm/uni/unisig_mbuf.h | 2 +- sys/netatm/uni/unisig_msg.c | 4 ++-- sys/netatm/uni/unisig_msg.h | 2 +- sys/netatm/uni/unisig_print.c | 4 ++-- sys/netatm/uni/unisig_print.h | 2 +- sys/netatm/uni/unisig_proto.c | 4 ++-- sys/netatm/uni/unisig_sigmgr_state.c | 4 ++-- sys/netatm/uni/unisig_subr.c | 4 ++-- sys/netatm/uni/unisig_util.c | 4 ++-- sys/netatm/uni/unisig_var.h | 2 +- sys/netatm/uni/unisig_vc_state.c | 4 ++-- sys/netinet/fil.c | 4 ++-- sys/netinet/icmp_var.h | 2 +- sys/netinet/if_ether.c | 2 +- sys/netinet/if_ether.h | 2 +- sys/netinet/if_fddi.h | 2 +- sys/netinet/igmp.c | 2 +- sys/netinet/igmp.h | 2 +- sys/netinet/igmp_var.h | 2 +- sys/netinet/in.c | 2 +- sys/netinet/in.h | 2 +- sys/netinet/in_cksum.c | 2 +- sys/netinet/in_hostcache.c | 2 +- sys/netinet/in_hostcache.h | 2 +- sys/netinet/in_pcb.c | 2 +- sys/netinet/in_pcb.h | 2 +- sys/netinet/in_proto.c | 2 +- sys/netinet/in_rmx.c | 2 +- sys/netinet/in_systm.h | 2 +- sys/netinet/in_var.h | 2 +- sys/netinet/ip.h | 2 +- sys/netinet/ip_auth.c | 2 +- sys/netinet/ip_auth.h | 2 +- sys/netinet/ip_compat.h | 2 +- sys/netinet/ip_divert.c | 2 +- sys/netinet/ip_dummynet.c | 2 +- sys/netinet/ip_dummynet.h | 2 +- sys/netinet/ip_fil.c | 2 +- sys/netinet/ip_fil.h | 2 +- sys/netinet/ip_flow.c | 2 +- sys/netinet/ip_flow.h | 2 +- sys/netinet/ip_frag.c | 2 +- sys/netinet/ip_frag.h | 2 +- sys/netinet/ip_ftp_pxy.c | 2 +- sys/netinet/ip_fw.c | 2 +- sys/netinet/ip_fw.h | 2 +- sys/netinet/ip_icmp.c | 2 +- sys/netinet/ip_icmp.h | 2 +- sys/netinet/ip_input.c | 2 +- sys/netinet/ip_log.c | 2 +- sys/netinet/ip_mroute.c | 2 +- sys/netinet/ip_mroute.h | 2 +- sys/netinet/ip_nat.c | 2 +- sys/netinet/ip_nat.h | 2 +- sys/netinet/ip_output.c | 2 +- sys/netinet/ip_proxy.c | 2 +- sys/netinet/ip_proxy.h | 2 +- sys/netinet/ip_state.c | 2 +- sys/netinet/ip_state.h | 2 +- sys/netinet/ip_var.h | 2 +- sys/netinet/ipl.h | 2 +- sys/netinet/mlf_ipl.c | 2 +- sys/netinet/raw_ip.c | 2 +- sys/netinet/tcp.h | 2 +- sys/netinet/tcp_debug.c | 2 +- sys/netinet/tcp_debug.h | 2 +- sys/netinet/tcp_fsm.h | 2 +- sys/netinet/tcp_input.c | 2 +- sys/netinet/tcp_output.c | 2 +- sys/netinet/tcp_reass.c | 2 +- sys/netinet/tcp_seq.h | 2 +- sys/netinet/tcp_subr.c | 2 +- sys/netinet/tcp_timer.c | 2 +- sys/netinet/tcp_timer.h | 2 +- sys/netinet/tcp_timewait.c | 2 +- sys/netinet/tcp_usrreq.c | 2 +- sys/netinet/tcp_var.h | 2 +- sys/netinet/tcpip.h | 2 +- sys/netinet/udp.h | 2 +- sys/netinet/udp_usrreq.c | 2 +- sys/netinet/udp_var.h | 2 +- sys/netipx/ipx.c | 2 +- sys/netipx/ipx.h | 2 +- sys/netipx/ipx_cksum.c | 2 +- sys/netipx/ipx_if.h | 2 +- sys/netipx/ipx_input.c | 2 +- sys/netipx/ipx_ip.c | 2 +- sys/netipx/ipx_ip.h | 2 +- sys/netipx/ipx_outputfl.c | 2 +- sys/netipx/ipx_pcb.c | 2 +- sys/netipx/ipx_pcb.h | 2 +- sys/netipx/ipx_proto.c | 2 +- sys/netipx/ipx_tun.c | 2 +- sys/netipx/ipx_usrreq.c | 2 +- sys/netipx/ipx_var.h | 2 +- sys/netipx/spx.h | 2 +- sys/netipx/spx_debug.c | 2 +- sys/netipx/spx_debug.h | 2 +- sys/netipx/spx_timer.h | 2 +- sys/netipx/spx_usrreq.c | 2 +- sys/netipx/spx_var.h | 2 +- sys/netns/idp.h | 2 +- sys/netns/idp_usrreq.c | 2 +- sys/netns/idp_var.h | 2 +- sys/netns/ns.c | 2 +- sys/netns/ns.h | 2 +- sys/netns/ns_cksum.c | 2 +- sys/netns/ns_error.c | 2 +- sys/netns/ns_error.h | 2 +- sys/netns/ns_if.h | 2 +- sys/netns/ns_input.c | 2 +- sys/netns/ns_ip.c | 2 +- sys/netns/ns_output.c | 2 +- sys/netns/ns_pcb.c | 2 +- sys/netns/ns_pcb.h | 2 +- sys/netns/ns_proto.c | 2 +- sys/netns/sp.h | 2 +- sys/netns/spidp.h | 2 +- sys/netns/spp_debug.c | 2 +- sys/netns/spp_debug.h | 2 +- sys/netns/spp_timer.h | 2 +- sys/netns/spp_usrreq.c | 2 +- sys/netns/spp_var.h | 2 +- sys/nfs/bootp_subr.c | 2 +- sys/nfs/krpc.h | 2 +- sys/nfs/krpc_subr.c | 2 +- sys/nfs/nfs.h | 2 +- sys/nfs/nfs_bio.c | 2 +- sys/nfs/nfs_common.c | 2 +- sys/nfs/nfs_common.h | 2 +- sys/nfs/nfs_node.c | 2 +- sys/nfs/nfs_nqlease.c | 2 +- sys/nfs/nfs_serv.c | 2 +- sys/nfs/nfs_socket.c | 2 +- sys/nfs/nfs_srvcache.c | 2 +- sys/nfs/nfs_subs.c | 2 +- sys/nfs/nfs_syscalls.c | 2 +- sys/nfs/nfs_vfsops.c | 2 +- sys/nfs/nfs_vnops.c | 2 +- sys/nfs/nfsdiskless.h | 2 +- sys/nfs/nfsm_subs.h | 2 +- sys/nfs/nfsmount.h | 2 +- sys/nfs/nfsnode.h | 2 +- sys/nfs/nfsproto.h | 2 +- sys/nfs/nfsrtt.h | 2 +- sys/nfs/nfsrvcache.h | 2 +- sys/nfs/nfsv2.h | 2 +- sys/nfs/nqnfs.h | 2 +- sys/nfs/rpcv2.h | 2 +- sys/nfs/xdr_subs.h | 2 +- sys/nfsclient/bootp_subr.c | 2 +- sys/nfsclient/krpc.h | 2 +- sys/nfsclient/krpc_subr.c | 2 +- sys/nfsclient/nfs.h | 2 +- sys/nfsclient/nfs_bio.c | 2 +- sys/nfsclient/nfs_nfsiod.c | 2 +- sys/nfsclient/nfs_node.c | 2 +- sys/nfsclient/nfs_socket.c | 2 +- sys/nfsclient/nfs_subs.c | 2 +- sys/nfsclient/nfs_vfsops.c | 2 +- sys/nfsclient/nfs_vnops.c | 2 +- sys/nfsclient/nfsargs.h | 2 +- sys/nfsclient/nfsdiskless.h | 2 +- sys/nfsclient/nfsm_subs.h | 2 +- sys/nfsclient/nfsmount.h | 2 +- sys/nfsclient/nfsnode.h | 2 +- sys/nfsclient/nfsstats.h | 2 +- sys/nfsserver/nfs.h | 2 +- sys/nfsserver/nfs_serv.c | 2 +- sys/nfsserver/nfs_srvcache.c | 2 +- sys/nfsserver/nfs_srvsock.c | 2 +- sys/nfsserver/nfs_srvsubs.c | 2 +- sys/nfsserver/nfs_syscalls.c | 2 +- sys/nfsserver/nfsm_subs.h | 2 +- sys/nfsserver/nfsproto.h | 2 +- sys/nfsserver/nfsrvcache.h | 2 +- sys/nfsserver/nfsrvstats.h | 2 +- sys/ntfs/ntfs.h | 2 +- sys/ntfs/ntfs_compr.c | 2 +- sys/ntfs/ntfs_compr.h | 2 +- sys/ntfs/ntfs_extern.h | 2 +- sys/ntfs/ntfs_ihash.c | 2 +- sys/ntfs/ntfs_ihash.h | 2 +- sys/ntfs/ntfs_inode.h | 2 +- sys/ntfs/ntfs_subr.c | 2 +- sys/ntfs/ntfs_subr.h | 2 +- sys/ntfs/ntfs_vfsops.c | 2 +- sys/ntfs/ntfs_vfsops.h | 2 +- sys/ntfs/ntfs_vnops.c | 2 +- sys/ntfs/ntfsmount.h | 2 +- sys/pc98/boot/Makefile | 2 +- sys/pc98/boot/Makefile.inc | 2 +- sys/pc98/boot/biosboot/Makefile | 2 +- sys/pc98/boot/biosboot/README.386BSD | 2 +- sys/pc98/boot/biosboot/README.MACH | 2 +- sys/pc98/boot/biosboot/README.serial | 2 +- sys/pc98/boot/biosboot/asm.S | 2 +- sys/pc98/boot/biosboot/asm.h | 2 +- sys/pc98/boot/biosboot/bios.S | 2 +- sys/pc98/boot/biosboot/boot.c | 2 +- sys/pc98/boot/biosboot/boot.h | 2 +- sys/pc98/boot/biosboot/disk.c | 2 +- sys/pc98/boot/biosboot/io.c | 2 +- sys/pc98/boot/biosboot/serial.S | 2 +- sys/pc98/boot/biosboot/start.S | 2 +- sys/pc98/boot/biosboot/sys.c | 2 +- sys/pc98/boot/biosboot/table.c | 2 +- sys/pc98/boot/kzipboot/Makefile | 2 +- sys/pc98/boot/netboot/3c509.c | 2 +- sys/pc98/boot/rawboot/Makefile | 2 +- sys/pc98/cbus/cbus.h | 2 +- sys/pc98/cbus/cbus_dma.c | 2 +- sys/pc98/cbus/clock.c | 2 +- sys/pc98/cbus/fdc.c | 2 +- sys/pc98/cbus/fdcreg.h | 2 +- sys/pc98/cbus/gdc.c | 2 +- sys/pc98/cbus/olpt.c | 2 +- sys/pc98/cbus/pckbd.c | 2 +- sys/pc98/cbus/pcrtc.c | 2 +- sys/pc98/cbus/ppc.c | 2 +- sys/pc98/cbus/ppcreg.h | 2 +- sys/pc98/cbus/sc_machdep.h | 2 +- sys/pc98/cbus/scgdcrndr.c | 2 +- sys/pc98/cbus/scvtb.c | 2 +- sys/pc98/cbus/sio.c | 2 +- sys/pc98/cbus/syscons_cbus.c | 2 +- sys/pc98/conf/GENERIC | 2 +- sys/pc98/conf/GENERIC98 | 2 +- sys/pc98/conf/Makefile.pc98 | 2 +- sys/pc98/conf/devices.pc98 | 2 +- sys/pc98/conf/files.pc98 | 2 +- sys/pc98/conf/majors.pc98 | 2 +- sys/pc98/conf/options.pc98 | 2 +- sys/pc98/i386/machdep.c | 2 +- sys/pc98/i386/userconfig.c | 4 ++-- sys/pc98/pc98/atcompat_diskslice.c | 2 +- sys/pc98/pc98/clock.c | 2 +- sys/pc98/pc98/diskslice_machdep.c | 2 +- sys/pc98/pc98/fd.c | 2 +- sys/pc98/pc98/fdreg.h | 2 +- sys/pc98/pc98/if_ed.c | 2 +- sys/pc98/pc98/if_ed98.h | 2 +- sys/pc98/pc98/isa_dma.c | 2 +- sys/pc98/pc98/machdep.c | 2 +- sys/pc98/pc98/mse.c | 2 +- sys/pc98/pc98/npx.c | 2 +- sys/pc98/pc98/olpt.c | 2 +- sys/pc98/pc98/pc98.c | 2 +- sys/pc98/pc98/pc98.h | 2 +- sys/pc98/pc98/pc98gdc.c | 2 +- sys/pc98/pc98/pc98kbd.c | 2 +- sys/pc98/pc98/pcaudio.c | 2 +- sys/pc98/pc98/ppc.c | 2 +- sys/pc98/pc98/ppcreg.h | 2 +- sys/pc98/pc98/sc_machdep.h | 2 +- sys/pc98/pc98/scgdcrndr.c | 2 +- sys/pc98/pc98/scvtbpc98.c | 2 +- sys/pc98/pc98/sio.c | 2 +- sys/pc98/pc98/spkr.c | 2 +- sys/pc98/pc98/syscons.c | 2 +- sys/pc98/pc98/syscons_pc98.c | 2 +- sys/pc98/pc98/wd.c | 2 +- sys/pc98/pc98/wd_cd.c | 2 +- sys/pc98/pc98/wfd.c | 2 +- sys/pc98/pc98/wst.c | 2 +- sys/pccard/pccard.c | 2 +- sys/pccard/pcic.h | 2 +- sys/pccard/pcic_pci.c | 2 +- sys/pccard/pcic_pci.h | 2 +- sys/pci/adv_pci.c | 2 +- sys/pci/adw_pci.c | 2 +- sys/pci/ahc_pci.c | 2 +- sys/pci/alpm.c | 2 +- sys/pci/brktree_reg.h | 2 +- sys/pci/brooktree848.c | 2 +- sys/pci/bt848_i2c.c | 2 +- sys/pci/bt848_i2c.h | 2 +- sys/pci/bt_pci.c | 2 +- sys/pci/cy_pci.c | 2 +- sys/pci/cy_pcireg.h | 2 +- sys/pci/dpt_pci.c | 2 +- sys/pci/dpt_pci.h | 2 +- sys/pci/es1370.c | 2 +- sys/pci/es1370_reg.h | 2 +- sys/pci/ida_pci.c | 2 +- sys/pci/ide_pci.c | 2 +- sys/pci/ide_pcireg.h | 2 +- sys/pci/if_al.c | 4 ++-- sys/pci/if_alreg.h | 2 +- sys/pci/if_ax.c | 4 ++-- sys/pci/if_axreg.h | 2 +- sys/pci/if_ed_p.c | 2 +- sys/pci/if_fpa.c | 2 +- sys/pci/if_fxp.c | 2 +- sys/pci/if_fxpreg.h | 2 +- sys/pci/if_fxpvar.h | 2 +- sys/pci/if_lnc_p.c | 2 +- sys/pci/if_mx.c | 4 ++-- sys/pci/if_mxreg.h | 2 +- sys/pci/if_pn.c | 4 ++-- sys/pci/if_pnreg.h | 2 +- sys/pci/if_rl.c | 4 ++-- sys/pci/if_rlreg.h | 2 +- sys/pci/if_sf.c | 4 ++-- sys/pci/if_sfreg.h | 2 +- sys/pci/if_sk.c | 4 ++-- sys/pci/if_skreg.h | 2 +- sys/pci/if_sr_p.c | 2 +- sys/pci/if_ste.c | 4 ++-- sys/pci/if_stereg.h | 2 +- sys/pci/if_ti.c | 4 ++-- sys/pci/if_tireg.h | 2 +- sys/pci/if_tl.c | 4 ++-- sys/pci/if_tlreg.h | 2 +- sys/pci/if_tx.c | 2 +- sys/pci/if_txvar.h | 2 +- sys/pci/if_vr.c | 4 ++-- sys/pci/if_vrreg.h | 2 +- sys/pci/if_wb.c | 4 ++-- sys/pci/if_wbreg.h | 2 +- sys/pci/if_xl.c | 4 ++-- sys/pci/if_xlreg.h | 2 +- sys/pci/intpm.c | 2 +- sys/pci/intpmreg.h | 2 +- sys/pci/isp_pci.c | 2 +- sys/pci/ncr.c | 4 ++-- sys/pci/ncrreg.h | 2 +- sys/pci/pci.c | 2 +- sys/pci/pci_compat.c | 2 +- sys/pci/pci_if.m | 2 +- sys/pci/pcic_p.c | 2 +- sys/pci/pcic_p.h | 2 +- sys/pci/pcireg.h | 2 +- sys/pci/pcisupport.c | 2 +- sys/pci/pcivar.h | 2 +- sys/pci/simos.c | 2 +- sys/pci/simos.h | 2 +- sys/pci/ti_fw.h | 2 +- sys/pci/ti_fw2.h | 2 +- sys/pci/xmaciireg.h | 2 +- sys/pci/xrpu.c | 2 +- sys/posix4/aio.h | 2 +- sys/powerpc/aim/vm_machdep.c | 2 +- sys/powerpc/include/_limits.h | 2 +- sys/powerpc/include/bootinfo.h | 2 +- sys/powerpc/include/clock.h | 2 +- sys/powerpc/include/limits.h | 2 +- sys/powerpc/include/md_var.h | 2 +- sys/powerpc/include/ptrace.h | 2 +- sys/powerpc/powerpc/elf_machdep.c | 2 +- sys/powerpc/powerpc/genassym.c | 2 +- sys/powerpc/powerpc/procfs_machdep.c | 2 +- sys/powerpc/powerpc/vm_machdep.c | 2 +- sys/svr4/Makefile | 2 +- sys/svr4/imgact_svr4.c | 2 +- sys/svr4/svr4.h | 2 +- sys/svr4/svr4_acl.h | 2 +- sys/svr4/svr4_dirent.h | 2 +- sys/svr4/svr4_errno.h | 2 +- sys/svr4/svr4_exec.h | 2 +- sys/svr4/svr4_fcntl.c | 2 +- sys/svr4/svr4_fcntl.h | 2 +- sys/svr4/svr4_filio.c | 2 +- sys/svr4/svr4_filio.h | 2 +- sys/svr4/svr4_fuser.h | 2 +- sys/svr4/svr4_hrt.h | 2 +- sys/svr4/svr4_ioctl.c | 2 +- sys/svr4/svr4_ioctl.h | 2 +- sys/svr4/svr4_ipc.c | 2 +- sys/svr4/svr4_ipc.h | 2 +- sys/svr4/svr4_misc.c | 2 +- sys/svr4/svr4_mman.h | 2 +- sys/svr4/svr4_resource.c | 2 +- sys/svr4/svr4_resource.h | 2 +- sys/svr4/svr4_siginfo.h | 2 +- sys/svr4/svr4_signal.c | 2 +- sys/svr4/svr4_signal.h | 2 +- sys/svr4/svr4_socket.c | 2 +- sys/svr4/svr4_socket.h | 2 +- sys/svr4/svr4_sockio.c | 2 +- sys/svr4/svr4_sockio.h | 2 +- sys/svr4/svr4_sockmod.h | 2 +- sys/svr4/svr4_stat.c | 2 +- sys/svr4/svr4_stat.h | 2 +- sys/svr4/svr4_statvfs.h | 2 +- sys/svr4/svr4_stream.c | 2 +- sys/svr4/svr4_stropts.h | 2 +- sys/svr4/svr4_sysconfig.h | 2 +- sys/svr4/svr4_systeminfo.h | 2 +- sys/svr4/svr4_sysvec.c | 2 +- sys/svr4/svr4_termios.c | 2 +- sys/svr4/svr4_termios.h | 2 +- sys/svr4/svr4_time.h | 2 +- sys/svr4/svr4_timod.h | 2 +- sys/svr4/svr4_ttold.c | 2 +- sys/svr4/svr4_ttold.h | 2 +- sys/svr4/svr4_types.h | 2 +- sys/svr4/svr4_ucontext.h | 2 +- sys/svr4/svr4_ulimit.h | 2 +- sys/svr4/svr4_ustat.h | 2 +- sys/svr4/svr4_util.h | 2 +- sys/svr4/svr4_utsname.h | 2 +- sys/svr4/svr4_wait.h | 2 +- sys/svr4/syscalls.conf | 2 +- sys/svr4/syscalls.master | 2 +- sys/sys/_posix.h | 2 +- sys/sys/_sigset.h | 2 +- sys/sys/acct.h | 2 +- sys/sys/aio.h | 2 +- sys/sys/bio.h | 2 +- sys/sys/blist.h | 2 +- sys/sys/buf.h | 2 +- sys/sys/bus.h | 2 +- sys/sys/bus_dma.h | 2 +- sys/sys/bus_private.h | 2 +- sys/sys/callout.h | 2 +- sys/sys/ccdvar.h | 2 +- sys/sys/cdefs.h | 2 +- sys/sys/cdio.h | 2 +- sys/sys/chio.h | 2 +- sys/sys/clist.h | 2 +- sys/sys/conf.h | 2 +- sys/sys/cons.h | 2 +- sys/sys/consio.h | 2 +- sys/sys/copyright.h | 2 +- sys/sys/devfsext.h | 2 +- sys/sys/device.h | 2 +- sys/sys/devicestat.h | 2 +- sys/sys/dir.h | 2 +- sys/sys/dirent.h | 2 +- sys/sys/disklabel.h | 2 +- sys/sys/diskmbr.h | 2 +- sys/sys/diskpc98.h | 2 +- sys/sys/diskslice.h | 2 +- sys/sys/dkbad.h | 2 +- sys/sys/dkstat.h | 2 +- sys/sys/dmap.h | 2 +- sys/sys/domain.h | 2 +- sys/sys/elf32.h | 2 +- sys/sys/elf64.h | 2 +- sys/sys/elf_common.h | 2 +- sys/sys/elf_generic.h | 2 +- sys/sys/errno.h | 2 +- sys/sys/eventhandler.h | 2 +- sys/sys/exec.h | 2 +- sys/sys/fbio.h | 2 +- sys/sys/fcntl.h | 2 +- sys/sys/fdcio.h | 2 +- sys/sys/file.h | 2 +- sys/sys/filedesc.h | 2 +- sys/sys/filio.h | 2 +- sys/sys/gmon.h | 2 +- sys/sys/imgact.h | 2 +- sys/sys/imgact_aout.h | 2 +- sys/sys/imgact_elf.h | 2 +- sys/sys/inflate.h | 2 +- sys/sys/interrupt.h | 2 +- sys/sys/inttypes.h | 2 +- sys/sys/ioccom.h | 2 +- sys/sys/ioctl.h | 2 +- sys/sys/ioctl_bt848.h | 2 +- sys/sys/ioctl_compat.h | 2 +- sys/sys/ipc.h | 2 +- sys/sys/jail.h | 2 +- sys/sys/kbio.h | 2 +- sys/sys/kernel.h | 2 +- sys/sys/ktrace.h | 2 +- sys/sys/libkern.h | 2 +- sys/sys/linedisc.h | 2 +- sys/sys/linker.h | 2 +- sys/sys/linker_set.h | 2 +- sys/sys/lock.h | 2 +- sys/sys/lockf.h | 2 +- sys/sys/lockmgr.h | 2 +- sys/sys/malloc.h | 2 +- sys/sys/mbuf.h | 2 +- sys/sys/md5.h | 2 +- sys/sys/mman.h | 2 +- sys/sys/module.h | 2 +- sys/sys/mount.h | 2 +- sys/sys/mouse.h | 2 +- sys/sys/msg.h | 2 +- sys/sys/msgbuf.h | 2 +- sys/sys/mtio.h | 2 +- sys/sys/namei.h | 2 +- sys/sys/param.h | 2 +- sys/sys/pioctl.h | 2 +- sys/sys/pipe.h | 2 +- sys/sys/poll.h | 2 +- sys/sys/proc.h | 2 +- sys/sys/procfs.h | 2 +- sys/sys/protosw.h | 2 +- sys/sys/ptio.h | 2 +- sys/sys/ptrace.h | 2 +- sys/sys/queue.h | 2 +- sys/sys/random.h | 2 +- sys/sys/reboot.h | 2 +- sys/sys/resource.h | 2 +- sys/sys/resourcevar.h | 2 +- sys/sys/rman.h | 2 +- sys/sys/rtprio.h | 2 +- sys/sys/scsiio.h | 2 +- sys/sys/select.h | 2 +- sys/sys/selinfo.h | 2 +- sys/sys/sem.h | 2 +- sys/sys/shm.h | 2 +- sys/sys/signal.h | 2 +- sys/sys/signalvar.h | 2 +- sys/sys/sliceio.h | 2 +- sys/sys/smp.h | 2 +- sys/sys/socket.h | 2 +- sys/sys/socketvar.h | 2 +- sys/sys/sockio.h | 2 +- sys/sys/stat.h | 2 +- sys/sys/sysctl.h | 2 +- sys/sys/sysent.h | 2 +- sys/sys/syslimits.h | 2 +- sys/sys/syslog.h | 2 +- sys/sys/systm.h | 2 +- sys/sys/tablet.h | 2 +- sys/sys/termios.h | 2 +- sys/sys/time.h | 2 +- sys/sys/timeb.h | 2 +- sys/sys/timepps.h | 2 +- sys/sys/timers.h | 2 +- sys/sys/times.h | 2 +- sys/sys/timetc.h | 2 +- sys/sys/tprintf.h | 2 +- sys/sys/tty.h | 2 +- sys/sys/ttychars.h | 2 +- sys/sys/ttycom.h | 2 +- sys/sys/ttydefaults.h | 2 +- sys/sys/ttydev.h | 2 +- sys/sys/types.h | 2 +- sys/sys/ucred.h | 2 +- sys/sys/uio.h | 2 +- sys/sys/un.h | 2 +- sys/sys/unistd.h | 2 +- sys/sys/unpcb.h | 2 +- sys/sys/user.h | 2 +- sys/sys/utsname.h | 2 +- sys/sys/vadvise.h | 2 +- sys/sys/vcmd.h | 2 +- sys/sys/vlimit.h | 2 +- sys/sys/vmmeter.h | 2 +- sys/sys/vnode.h | 2 +- sys/sys/vsio.h | 2 +- sys/sys/wait.h | 2 +- sys/sys/xrpuio.h | 2 +- sys/tools/devlist2h.awk | 2 +- sys/tools/miidevs2h.awk | 2 +- sys/tools/vnode_if.awk | 2 +- sys/ufs/ffs/ffs_alloc.c | 2 +- sys/ufs/ffs/ffs_balloc.c | 2 +- sys/ufs/ffs/ffs_extern.h | 2 +- sys/ufs/ffs/ffs_inode.c | 2 +- sys/ufs/ffs/ffs_softdep_stub.c | 2 +- sys/ufs/ffs/ffs_subr.c | 2 +- sys/ufs/ffs/ffs_tables.c | 2 +- sys/ufs/ffs/ffs_vfsops.c | 2 +- sys/ufs/ffs/ffs_vnops.c | 2 +- sys/ufs/ffs/fs.h | 2 +- sys/ufs/mfs/mfs_extern.h | 2 +- sys/ufs/mfs/mfs_vfsops.c | 2 +- sys/ufs/mfs/mfs_vnops.c | 2 +- sys/ufs/mfs/mfsnode.h | 2 +- sys/ufs/ufs/dinode.h | 2 +- sys/ufs/ufs/dir.h | 2 +- sys/ufs/ufs/inode.h | 2 +- sys/ufs/ufs/quota.h | 2 +- sys/ufs/ufs/ufs_bmap.c | 2 +- sys/ufs/ufs/ufs_disksubr.c | 2 +- sys/ufs/ufs/ufs_extern.h | 2 +- sys/ufs/ufs/ufs_ihash.c | 2 +- sys/ufs/ufs/ufs_inode.c | 2 +- sys/ufs/ufs/ufs_lookup.c | 2 +- sys/ufs/ufs/ufs_quota.c | 2 +- sys/ufs/ufs/ufs_readwrite.c | 2 +- sys/ufs/ufs/ufs_vfsops.c | 2 +- sys/ufs/ufs/ufs_vnops.c | 2 +- sys/ufs/ufs/ufsmount.h | 2 +- sys/vm/default_pager.c | 2 +- sys/vm/default_pager.h | 2 +- sys/vm/device_pager.c | 2 +- sys/vm/pmap.h | 2 +- sys/vm/swap_pager.c | 2 +- sys/vm/swap_pager.h | 2 +- sys/vm/vm.h | 2 +- sys/vm/vm_extern.h | 2 +- sys/vm/vm_fault.c | 2 +- sys/vm/vm_glue.c | 2 +- sys/vm/vm_inherit.h | 2 +- sys/vm/vm_init.c | 2 +- sys/vm/vm_kern.c | 2 +- sys/vm/vm_kern.h | 2 +- sys/vm/vm_map.c | 2 +- sys/vm/vm_map.h | 2 +- sys/vm/vm_meter.c | 2 +- sys/vm/vm_mmap.c | 2 +- sys/vm/vm_object.c | 2 +- sys/vm/vm_object.h | 2 +- sys/vm/vm_page.c | 2 +- sys/vm/vm_page.h | 2 +- sys/vm/vm_pageout.c | 2 +- sys/vm/vm_pageout.h | 2 +- sys/vm/vm_pager.c | 2 +- sys/vm/vm_pager.h | 2 +- sys/vm/vm_param.h | 2 +- sys/vm/vm_prot.h | 2 +- sys/vm/vm_swap.c | 2 +- sys/vm/vm_unix.c | 2 +- sys/vm/vm_zone.c | 2 +- sys/vm/vm_zone.h | 2 +- sys/vm/vnode_pager.c | 2 +- sys/vm/vnode_pager.h | 2 +- tools/3.0-upgrade/cvt-wtmp.c | 2 +- tools/LibraryReport/LibraryReport.tcl | 2 +- tools/diag/ac/ac | 2 +- tools/diag/httpd-error/httpd-error | 2 +- tools/test/devrandom/hammer.random | 2 +- tools/test/devrandom/hammer.urandom | 2 +- tools/test/devrandom/stat.16bit | 2 +- tools/test/devrandom/stat.8bit | 2 +- tools/tools/README | 2 +- tools/tools/diffburst/Makefile | 2 +- tools/tools/epfe/epfe.pl | 2 +- tools/tools/html-mv/html-mv | 2 +- tools/tools/ifinfo/Makefile | 2 +- tools/tools/ifinfo/ifinfo.c | 2 +- tools/tools/ifinfo/ifinfo.h | 2 +- tools/tools/kdrv/KernelDriver | 2 +- tools/tools/kdrv/sample.drvinfo | 2 +- tools/tools/kernxref/kernxref.sh | 2 +- tools/tools/mid/mid-index | 2 +- tools/tools/portsinfo/portsinfo.sh | 2 +- tools/tools/scsi-defects/scsi-defects.pl | 2 +- tools/tools/tcl_bmake/mkMakefile.sh | 4 ++-- tools/tools/upgrade/getosreldate.sh | 2 +- tools/tools/upgrade/move_aout_libs.sh | 2 +- usr.bin/Makefile | 2 +- usr.bin/apply/apply.1 | 2 +- usr.bin/ar/Makefile | 2 +- usr.bin/ar/ar.1 | 2 +- usr.bin/ar/ar.1aout | 2 +- usr.bin/ar/ar.5 | 2 +- usr.bin/ar/ar.c | 2 +- usr.bin/at/Makefile | 2 +- usr.bin/at/at.c | 2 +- usr.bin/at/at.man | 2 +- usr.bin/at/panic.c | 2 +- usr.bin/at/parsetime.c | 2 +- usr.bin/at/perm.c | 2 +- usr.bin/banner/banner.6 | 2 +- usr.bin/basename/basename.1 | 2 +- usr.bin/biff/biff.1 | 2 +- usr.bin/biff/biff.c | 2 +- usr.bin/brandelf/brandelf.1 | 2 +- usr.bin/brandelf/brandelf.c | 2 +- usr.bin/c89/c89.1 | 2 +- usr.bin/c89/c89.sh | 2 +- usr.bin/calendar/calendar.1 | 2 +- usr.bin/calendar/calendars/calendar.all | 2 +- usr.bin/calendar/calendars/calendar.birthday | 2 +- usr.bin/calendar/calendars/calendar.christian | 2 +- usr.bin/calendar/calendars/calendar.computer | 2 +- usr.bin/calendar/calendars/calendar.croatian | 2 +- usr.bin/calendar/calendars/calendar.german | 2 +- usr.bin/calendar/calendars/calendar.history | 2 +- usr.bin/calendar/calendars/calendar.holiday | 2 +- usr.bin/calendar/calendars/calendar.judaic | 2 +- usr.bin/calendar/calendars/calendar.music | 2 +- usr.bin/calendar/calendars/calendar.russian | 2 +- usr.bin/calendar/calendars/calendar.usholiday | 2 +- usr.bin/calendar/calendars/calendar.world | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.all | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.kirche | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.literatur | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik | 2 +- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.wissenschaft | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.all | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.feiertag | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.geschichte | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.kirche | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.literatur | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.musik | 2 +- usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.wissenschaft | 2 +- usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all | 2 +- usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici | 2 +- usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.all | 2 +- usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.praznici | 2 +- usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all | 2 +- usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.common | 2 +- usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk | 2 +- usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.orthodox | 2 +- usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.pagan | 2 +- usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.all | 2 +- usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.common | 2 +- usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.msk | 2 +- usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.orthodox | 2 +- usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.pagan | 2 +- usr.bin/calendar/day.c | 2 +- usr.bin/calendar/io.c | 2 +- usr.bin/calendar/ostern.c | 2 +- usr.bin/cap_mkdb/cap_mkdb.1 | 2 +- usr.bin/chat/Makefile | 2 +- usr.bin/chat/chat.8 | 2 +- usr.bin/chat/chat.c | 2 +- usr.bin/checknr/checknr.1 | 2 +- usr.bin/chflags/chflags.1 | 2 +- usr.bin/chkey/Makefile | 2 +- usr.bin/chkey/chkey.1 | 2 +- usr.bin/chpass/chpass.1 | 2 +- usr.bin/chpass/chpass.c | 2 +- usr.bin/chpass/edit.c | 2 +- usr.bin/chpass/pw_yp.c | 2 +- usr.bin/chpass/pw_yp.h | 2 +- usr.bin/chpass/util.c | 2 +- usr.bin/cksum/cksum.1 | 2 +- usr.bin/cksum/cksum.c | 2 +- usr.bin/cmp/cmp.1 | 2 +- usr.bin/col/col.1 | 2 +- usr.bin/colcrt/colcrt.1 | 2 +- usr.bin/colldef/Makefile | 2 +- usr.bin/colldef/colldef.1 | 2 +- usr.bin/colldef/data/Makefile | 2 +- usr.bin/colldef/data/de_DE.DIS_8859-15.src | 2 +- usr.bin/colldef/data/de_DE.ISO_8859-1.src | 2 +- usr.bin/colldef/data/es_ES.DIS_8859-15.src | 2 +- usr.bin/colldef/data/es_ES.ISO_8859-1.src | 2 +- usr.bin/colldef/data/is_IS.DIS_8859-15.src | 2 +- usr.bin/colldef/data/is_IS.ISO_8859-1.src | 2 +- usr.bin/colldef/data/lt_LN.ASCII.src | 2 +- usr.bin/colldef/data/lt_LN.DIS_8859-15.src | 2 +- usr.bin/colldef/data/lt_LN.ISO_8859-1.src | 2 +- usr.bin/colldef/data/lt_LN.ISO_8859-2.src | 2 +- usr.bin/colldef/data/ru_SU.CP866.src | 2 +- usr.bin/colldef/data/ru_SU.KOI8-R.src | 2 +- usr.bin/colldef/parse.y | 2 +- usr.bin/colldef/scan.l | 2 +- usr.bin/colrm/colrm.1 | 2 +- usr.bin/colrm/colrm.c | 2 +- usr.bin/column/column.1 | 2 +- usr.bin/comm/comm.1 | 2 +- usr.bin/comm/comm.c | 2 +- usr.bin/compile_et/Makefile | 2 +- usr.bin/compress/compress.1 | 2 +- usr.bin/compress/zopen.3 | 2 +- usr.bin/compress/zopen.h | 2 +- usr.bin/cpp/cpp.sh | 2 +- usr.bin/ctags/C.c | 2 +- usr.bin/ctags/ctags.1 | 2 +- usr.bin/cut/cut.1 | 2 +- usr.bin/dig/Makefile | 2 +- usr.bin/dnsquery/Makefile | 2 +- usr.bin/doscmd/Makefile | 2 +- usr.bin/doscmd/ParseBuffer.c | 2 +- usr.bin/doscmd/bios.c | 2 +- usr.bin/doscmd/callback.c | 2 +- usr.bin/doscmd/callback.h | 2 +- usr.bin/doscmd/cmos.c | 2 +- usr.bin/doscmd/com.h | 2 +- usr.bin/doscmd/config.c | 2 +- usr.bin/doscmd/cpu.c | 2 +- usr.bin/doscmd/crt0.c | 2 +- usr.bin/doscmd/cwd.c | 2 +- usr.bin/doscmd/cwd.h | 2 +- usr.bin/doscmd/debug.c | 2 +- usr.bin/doscmd/dispatch.h | 2 +- usr.bin/doscmd/dos.c | 2 +- usr.bin/doscmd/dos.h | 2 +- usr.bin/doscmd/doscmd.1 | 2 +- usr.bin/doscmd/doscmd.c | 2 +- usr.bin/doscmd/doscmd.h | 2 +- usr.bin/doscmd/doscmd_loader.c | 2 +- usr.bin/doscmd/ems.c | 2 +- usr.bin/doscmd/ems.h | 2 +- usr.bin/doscmd/emsdriv.S | 2 +- usr.bin/doscmd/emuint.c | 2 +- usr.bin/doscmd/emuint.h | 2 +- usr.bin/doscmd/exe.c | 2 +- usr.bin/doscmd/int.c | 2 +- usr.bin/doscmd/int10.c | 2 +- usr.bin/doscmd/int13.c | 2 +- usr.bin/doscmd/int14.c | 2 +- usr.bin/doscmd/int16.c | 2 +- usr.bin/doscmd/int17.c | 2 +- usr.bin/doscmd/int1a.c | 2 +- usr.bin/doscmd/int2f.c | 2 +- usr.bin/doscmd/intff.c | 2 +- usr.bin/doscmd/mem.c | 2 +- usr.bin/doscmd/mouse.c | 2 +- usr.bin/doscmd/mouse.h | 2 +- usr.bin/doscmd/net.c | 2 +- usr.bin/doscmd/port.c | 2 +- usr.bin/doscmd/redir.S | 2 +- usr.bin/doscmd/register.h | 2 +- usr.bin/doscmd/setver.c | 2 +- usr.bin/doscmd/signal.c | 2 +- usr.bin/doscmd/timer.c | 2 +- usr.bin/doscmd/trace.c | 2 +- usr.bin/doscmd/trap.c | 2 +- usr.bin/doscmd/trap.h | 2 +- usr.bin/doscmd/tty.c | 2 +- usr.bin/doscmd/video.h | 2 +- usr.bin/doscmd/xms.c | 2 +- usr.bin/doscmd/xms.h | 2 +- usr.bin/du/du.1 | 2 +- usr.bin/ee/ee.1 | 2 +- usr.bin/ee/ee.c | 4 ++-- usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg | 2 +- usr.bin/ee/nls/de_DE.ISO_8859-1/ee.msg | 2 +- usr.bin/ee/nls/en_US.ISO_8859-1/ee.msg | 2 +- usr.bin/ee/nls/en_US.US-ASCII/ee.msg | 2 +- usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg | 2 +- usr.bin/ee/nls/fr_FR.ISO_8859-1/ee.msg | 2 +- usr.bin/enigma/enigma.1 | 2 +- usr.bin/error/error.1 | 2 +- usr.bin/error/filter.c | 2 +- usr.bin/error/input.c | 2 +- usr.bin/error/main.c | 2 +- usr.bin/error/pi.c | 2 +- usr.bin/error/subr.c | 2 +- usr.bin/error/touch.c | 2 +- usr.bin/expand/expand.1 | 2 +- usr.bin/expand/expand.c | 2 +- usr.bin/false/false.1 | 2 +- usr.bin/fetch/fetch.1 | 2 +- usr.bin/fetch/fetch.h | 2 +- usr.bin/fetch/file.c | 2 +- usr.bin/fetch/ftp.c | 2 +- usr.bin/fetch/http.c | 2 +- usr.bin/fetch/main.c | 2 +- usr.bin/fetch/uri.c | 2 +- usr.bin/fetch/util.c | 2 +- usr.bin/file/LEGAL.NOTICE | 2 +- usr.bin/file/MAINT | 2 +- usr.bin/file/Magdir/Localstuff | 2 +- usr.bin/file/Magdir/softquad | 2 +- usr.bin/file/Makefile | 2 +- usr.bin/file/PORTING | 2 +- usr.bin/file/README | 2 +- usr.bin/file/apprentice.c | 2 +- usr.bin/file/ascmagic.c | 2 +- usr.bin/file/compress.c | 2 +- usr.bin/file/cvsimport.sh | 2 +- usr.bin/file/file.1 | 2 +- usr.bin/file/file.c | 2 +- usr.bin/file/file.h | 2 +- usr.bin/file/fsmagic.c | 2 +- usr.bin/file/internat.c | 2 +- usr.bin/file/is_tar.c | 2 +- usr.bin/file/magic.5 | 2 +- usr.bin/file/names.h | 2 +- usr.bin/file/patchlevel.h | 2 +- usr.bin/file/print.c | 2 +- usr.bin/file/readelf.c | 2 +- usr.bin/file/readelf.h | 2 +- usr.bin/file/softmagic.c | 2 +- usr.bin/file/tar.h | 2 +- usr.bin/file2c/Makefile | 2 +- usr.bin/file2c/file2c.1 | 2 +- usr.bin/file2c/file2c.c | 2 +- usr.bin/find/find.1 | 2 +- usr.bin/find/option.c | 2 +- usr.bin/finger/finger.1 | 2 +- usr.bin/finger/finger.c | 2 +- usr.bin/finger/finger.h | 2 +- usr.bin/finger/lprint.c | 2 +- usr.bin/finger/net.c | 2 +- usr.bin/finger/sprint.c | 2 +- usr.bin/finger/util.c | 2 +- usr.bin/fmt/fmt.1 | 2 +- usr.bin/fmt/fmt.c | 2 +- usr.bin/fold/fold.1 | 2 +- usr.bin/fold/fold.c | 2 +- usr.bin/fpr/fpr.1 | 2 +- usr.bin/from/from.1 | 2 +- usr.bin/from/from.c | 2 +- usr.bin/fsplit/fsplit.1 | 2 +- usr.bin/fsplit/fsplit.c | 2 +- usr.bin/fstat/Makefile | 2 +- usr.bin/fstat/fstat.1 | 2 +- usr.bin/fstat/fstat.c | 2 +- usr.bin/ftp/Makefile | 2 +- usr.bin/ftp/cmds.c | 4 ++-- usr.bin/ftp/cmdtab.c | 4 ++-- usr.bin/ftp/complete.c | 4 ++-- usr.bin/ftp/domacro.c | 4 ++-- usr.bin/ftp/extern.h | 2 +- usr.bin/ftp/fetch.c | 2 +- usr.bin/ftp/ftp.1 | 2 +- usr.bin/ftp/ftp.c | 4 ++-- usr.bin/ftp/ftp_var.h | 2 +- usr.bin/ftp/main.c | 4 ++-- usr.bin/ftp/pathnames.h | 2 +- usr.bin/ftp/ruserpass.c | 4 ++-- usr.bin/ftp/util.c | 4 ++-- usr.bin/gcore/aoutcore.c | 2 +- usr.bin/gcore/elfcore.c | 2 +- usr.bin/gcore/gcore.1 | 2 +- usr.bin/gcore/gcore.c | 2 +- usr.bin/gcore/md-nop.c | 2 +- usr.bin/gencat/Makefile | 2 +- usr.bin/gencat/gencat.1 | 2 +- usr.bin/gensetdefs/Makefile | 2 +- usr.bin/gensetdefs/gensetdefs.8 | 2 +- usr.bin/gensetdefs/gensetdefs.c | 2 +- usr.bin/global/Makefile | 2 +- usr.bin/global/Makefile.inc | 2 +- usr.bin/global/btreeop/Makefile | 2 +- usr.bin/global/gctags/Makefile | 2 +- usr.bin/global/global/Makefile | 2 +- usr.bin/global/gtags/Makefile | 2 +- usr.bin/global/htags/Makefile | 2 +- usr.bin/global/lib/Makefile | 2 +- usr.bin/global/systags/Makefile | 2 +- usr.bin/gprof/arcs.c | 2 +- usr.bin/gprof/gprof.1 | 2 +- usr.bin/gprof/gprof.c | 2 +- usr.bin/gprof/printgprof.c | 2 +- usr.bin/gprof/printlist.c | 2 +- usr.bin/head/head.1 | 2 +- usr.bin/head/head.c | 2 +- usr.bin/hexdump/display.c | 2 +- usr.bin/hexdump/hexdump.1 | 2 +- usr.bin/hexdump/hexdump.c | 2 +- usr.bin/hexdump/hexsyntax.c | 2 +- usr.bin/hexdump/od.1 | 2 +- usr.bin/hexdump/odsyntax.c | 2 +- usr.bin/hexdump/parse.c | 2 +- usr.bin/host/Makefile | 2 +- usr.bin/id/groups.1 | 2 +- usr.bin/id/groups.sh | 2 +- usr.bin/id/id.1 | 2 +- usr.bin/id/id.c | 2 +- usr.bin/id/whoami.1 | 2 +- usr.bin/id/whoami.sh | 2 +- usr.bin/indent/args.c | 2 +- usr.bin/indent/indent.1 | 2 +- usr.bin/indent/indent.c | 2 +- usr.bin/indent/io.c | 2 +- usr.bin/ipcrm/Makefile | 2 +- usr.bin/ipcrm/ipcrm.1 | 2 +- usr.bin/ipcrm/ipcrm.c | 2 +- usr.bin/ipcs/Makefile | 2 +- usr.bin/ipcs/ipcs.1 | 2 +- usr.bin/ipcs/ipcs.c | 2 +- usr.bin/join/join.1 | 2 +- usr.bin/join/join.c | 2 +- usr.bin/jot/jot.1 | 2 +- usr.bin/jot/jot.c | 2 +- usr.bin/kdump/kdump.1 | 2 +- usr.bin/kdump/kdump.c | 2 +- usr.bin/key/key.1 | 2 +- usr.bin/keyinfo/keyinfo.1 | 2 +- usr.bin/keyinfo/keyinfo.pl | 2 +- usr.bin/keyinit/keyinit.1 | 2 +- usr.bin/keylogin/Makefile | 2 +- usr.bin/keylogin/keylogin.1 | 2 +- usr.bin/keylogout/Makefile | 2 +- usr.bin/keylogout/keylogout.1 | 2 +- usr.bin/keylogout/keylogout.c | 2 +- usr.bin/killall/Makefile | 2 +- usr.bin/killall/killall.1 | 2 +- usr.bin/killall/killall.pl | 2 +- usr.bin/ktrace/Makefile | 2 +- usr.bin/ktrace/ktrace.1 | 2 +- usr.bin/ktrace/ktrace.c | 2 +- usr.bin/ktrace/subr.c | 2 +- usr.bin/kzip/Makefile | 2 +- usr.bin/kzip/kzip.8 | 2 +- usr.bin/kzip/kzip.c | 2 +- usr.bin/lam/lam.1 | 2 +- usr.bin/lam/lam.c | 2 +- usr.bin/last/last.1 | 2 +- usr.bin/lastcomm/lastcomm.1 | 2 +- usr.bin/lastcomm/lastcomm.c | 2 +- usr.bin/ldd/Makefile | 2 +- usr.bin/ldd/ldd.c | 2 +- usr.bin/ldd/sods.c | 2 +- usr.bin/leave/Makefile | 2 +- usr.bin/leave/leave.1 | 2 +- usr.bin/leave/leave.c | 2 +- usr.bin/lex/Makefile | 2 +- usr.bin/lex/lib/Makefile | 2 +- usr.bin/limits/limits.1 | 2 +- usr.bin/limits/limits.c | 2 +- usr.bin/locate/Makefile | 2 +- usr.bin/locate/Makefile.inc | 2 +- usr.bin/locate/bigram/Makefile | 2 +- usr.bin/locate/bigram/locate.bigram.c | 2 +- usr.bin/locate/code/Makefile | 2 +- usr.bin/locate/code/locate.code.c | 2 +- usr.bin/locate/locate/Makefile | 2 +- usr.bin/locate/locate/concatdb.sh | 2 +- usr.bin/locate/locate/fastfind.c | 2 +- usr.bin/locate/locate/locate.1 | 2 +- usr.bin/locate/locate/locate.c | 2 +- usr.bin/locate/locate/locate.h | 2 +- usr.bin/locate/locate/locate.rc | 2 +- usr.bin/locate/locate/locate.updatedb.8 | 2 +- usr.bin/locate/locate/mklocatedb.sh | 2 +- usr.bin/locate/locate/updatedb.sh | 2 +- usr.bin/locate/locate/util.c | 2 +- usr.bin/lock/lock.1 | 2 +- usr.bin/lock/lock.c | 2 +- usr.bin/lockf/Makefile | 2 +- usr.bin/lockf/lockf.1 | 2 +- usr.bin/lockf/lockf.c | 2 +- usr.bin/logger/logger.1 | 2 +- usr.bin/logger/logger.c | 2 +- usr.bin/login/Makefile | 2 +- usr.bin/login/login.1 | 2 +- usr.bin/login/login.access.5 | 2 +- usr.bin/login/login.c | 2 +- usr.bin/logname/logname.1 | 2 +- usr.bin/look/look.1 | 2 +- usr.bin/look/look.c | 2 +- usr.bin/lorder/lorder.1 | 2 +- usr.bin/lsvfs/Makefile | 2 +- usr.bin/lsvfs/lsvfs.1 | 2 +- usr.bin/lsvfs/lsvfs.c | 2 +- usr.bin/m4/eval.c | 2 +- usr.bin/m4/m4.1 | 2 +- usr.bin/m4/main.c | 2 +- usr.bin/m4/misc.c | 2 +- usr.bin/mail/mail.1 | 2 +- usr.bin/mail/temp.c | 2 +- usr.bin/make/Makefile | 2 +- usr.bin/make/PSD.doc/Makefile | 2 +- usr.bin/make/PSD.doc/tutorial.ms | 2 +- usr.bin/make/arch.c | 2 +- usr.bin/make/buf.c | 2 +- usr.bin/make/buf.h | 2 +- usr.bin/make/compat.c | 4 ++-- usr.bin/make/cond.c | 2 +- usr.bin/make/config.h | 2 +- usr.bin/make/dir.c | 2 +- usr.bin/make/dir.h | 2 +- usr.bin/make/for.c | 2 +- usr.bin/make/hash.c | 2 +- usr.bin/make/hash.h | 2 +- usr.bin/make/job.c | 2 +- usr.bin/make/job.h | 2 +- usr.bin/make/list.h | 2 +- usr.bin/make/lst.h | 2 +- usr.bin/make/lst.lib/lstAppend.c | 2 +- usr.bin/make/lst.lib/lstAtEnd.c | 2 +- usr.bin/make/lst.lib/lstAtFront.c | 2 +- usr.bin/make/lst.lib/lstClose.c | 2 +- usr.bin/make/lst.lib/lstConcat.c | 2 +- usr.bin/make/lst.lib/lstDatum.c | 2 +- usr.bin/make/lst.lib/lstDeQueue.c | 2 +- usr.bin/make/lst.lib/lstDestroy.c | 2 +- usr.bin/make/lst.lib/lstDupl.c | 2 +- usr.bin/make/lst.lib/lstEnQueue.c | 2 +- usr.bin/make/lst.lib/lstFind.c | 2 +- usr.bin/make/lst.lib/lstFindFrom.c | 2 +- usr.bin/make/lst.lib/lstFirst.c | 2 +- usr.bin/make/lst.lib/lstForEach.c | 2 +- usr.bin/make/lst.lib/lstForEachFrom.c | 2 +- usr.bin/make/lst.lib/lstInit.c | 2 +- usr.bin/make/lst.lib/lstInsert.c | 2 +- usr.bin/make/lst.lib/lstInt.h | 2 +- usr.bin/make/lst.lib/lstIsAtEnd.c | 2 +- usr.bin/make/lst.lib/lstIsEmpty.c | 2 +- usr.bin/make/lst.lib/lstLast.c | 2 +- usr.bin/make/lst.lib/lstMember.c | 2 +- usr.bin/make/lst.lib/lstNext.c | 2 +- usr.bin/make/lst.lib/lstOpen.c | 2 +- usr.bin/make/lst.lib/lstRemove.c | 2 +- usr.bin/make/lst.lib/lstReplace.c | 2 +- usr.bin/make/lst.lib/lstSucc.c | 2 +- usr.bin/make/main.c | 2 +- usr.bin/make/make.1 | 2 +- usr.bin/make/make.c | 4 ++-- usr.bin/make/make.h | 2 +- usr.bin/make/nonints.h | 2 +- usr.bin/make/parse.c | 2 +- usr.bin/make/pathnames.h | 2 +- usr.bin/make/sprite.h | 2 +- usr.bin/make/str.c | 4 ++-- usr.bin/make/suff.c | 2 +- usr.bin/make/targ.c | 2 +- usr.bin/make/util.c | 2 +- usr.bin/make/var.c | 2 +- usr.bin/mesg/mesg.1 | 2 +- usr.bin/mesg/mesg.c | 2 +- usr.bin/minigzip/Makefile | 2 +- usr.bin/minigzip/minigzip.1 | 2 +- usr.bin/mk_cmds/Makefile | 2 +- usr.bin/mkdep/mkdep.1 | 2 +- usr.bin/mkdep/mkdep.gcc.sh | 2 +- usr.bin/mkfifo/mkfifo.1 | 2 +- usr.bin/mkfifo/mkfifo.c | 2 +- usr.bin/mklocale/Makefile | 2 +- usr.bin/mklocale/data/Makefile | 2 +- usr.bin/mklocale/data/lt_LN.ISO_8859-2.src | 2 +- usr.bin/mklocale/data/zh_CN.EUC.src | 2 +- usr.bin/mklocale/mklocale.1 | 2 +- usr.bin/mkstr/mkstr.1 | 2 +- usr.bin/mkstr/mkstr.c | 2 +- usr.bin/mktemp/mktemp.1 | 2 +- usr.bin/more/Makefile | 2 +- usr.bin/more/command.c | 2 +- usr.bin/more/decode.c | 2 +- usr.bin/more/input.c | 2 +- usr.bin/more/less.h | 2 +- usr.bin/more/line.c | 2 +- usr.bin/more/main.c | 2 +- usr.bin/more/more.1 | 2 +- usr.bin/more/option.c | 2 +- usr.bin/more/output.c | 2 +- usr.bin/more/prim.c | 2 +- usr.bin/more/tags.c | 2 +- usr.bin/msgs/Makefile | 2 +- usr.bin/msgs/msgs.1 | 2 +- usr.bin/msgs/msgs.c | 2 +- usr.bin/mt/Makefile | 2 +- usr.bin/mt/mt.1 | 2 +- usr.bin/mt/mt.c | 2 +- usr.bin/ncal/Makefile | 2 +- usr.bin/ncal/ncal.1 | 2 +- usr.bin/ncal/ncal.c | 2 +- usr.bin/netstat/atalk.c | 2 +- usr.bin/netstat/if.c | 2 +- usr.bin/netstat/inet.c | 2 +- usr.bin/netstat/ipx.c | 2 +- usr.bin/netstat/main.c | 2 +- usr.bin/netstat/mbuf.c | 2 +- usr.bin/netstat/netstat.1 | 2 +- usr.bin/netstat/route.c | 2 +- usr.bin/netstat/unix.c | 2 +- usr.bin/newkey/Makefile | 2 +- usr.bin/newkey/generic.c | 2 +- usr.bin/newkey/newkey.8 | 2 +- usr.bin/newkey/newkey.c | 2 +- usr.bin/newkey/update.c | 2 +- usr.bin/nfsstat/nfsstat.1 | 2 +- usr.bin/nfsstat/nfsstat.c | 2 +- usr.bin/nice/nice.1 | 2 +- usr.bin/nm/nm.1 | 2 +- usr.bin/nm/nm.1aout | 2 +- usr.bin/nm/nm.c | 2 +- usr.bin/nohup/nohup.1 | 2 +- usr.bin/nohup/nohup.c | 2 +- usr.bin/objformat/objformat.1 | 2 +- usr.bin/opieinfo/Makefile | 2 +- usr.bin/opiekey/Makefile | 2 +- usr.bin/opiepasswd/Makefile | 2 +- usr.bin/pagesize/pagesize.1 | 2 +- usr.bin/pagesize/pagesize.sh | 2 +- usr.bin/passwd/Makefile | 2 +- usr.bin/passwd/extern.h | 2 +- usr.bin/passwd/local_passwd.c | 2 +- usr.bin/passwd/passwd.1 | 2 +- usr.bin/passwd/passwd.c | 2 +- usr.bin/paste/paste.1 | 2 +- usr.bin/paste/paste.c | 2 +- usr.bin/pr/pr.1 | 2 +- usr.bin/printenv/printenv.1 | 2 +- usr.bin/printf/printf.1 | 2 +- usr.bin/quota/quota.1 | 2 +- usr.bin/quota/quota.c | 2 +- usr.bin/ranlib/Makefile | 2 +- usr.bin/ranlib/build.c | 2 +- usr.bin/ranlib/misc.c | 2 +- usr.bin/ranlib/ranlib.1 | 2 +- usr.bin/ranlib/ranlib.1aout | 2 +- usr.bin/ranlib/ranlib.5 | 2 +- usr.bin/ranlib/ranlib.c | 2 +- usr.bin/ranlib/touch.c | 2 +- usr.bin/rdist/Makefile | 2 +- usr.bin/rdist/docmd.c | 2 +- usr.bin/rdist/expand.c | 2 +- usr.bin/rdist/gram.y | 2 +- usr.bin/rdist/lookup.c | 2 +- usr.bin/rdist/main.c | 2 +- usr.bin/rdist/rdist.1 | 2 +- usr.bin/rdist/rshrcmd.c | 2 +- usr.bin/rdist/server.c | 2 +- usr.bin/renice/renice.8 | 2 +- usr.bin/renice/renice.c | 2 +- usr.bin/rev/rev.1 | 2 +- usr.bin/rlogin/Makefile | 2 +- usr.bin/rlogin/rlogin.1 | 2 +- usr.bin/rlogin/rlogin.c | 2 +- usr.bin/rpcgen/rpc_cout.c | 2 +- usr.bin/rpcgen/rpc_main.c | 2 +- usr.bin/rpcgen/rpc_tblout.c | 2 +- usr.bin/rpcgen/rpc_util.c | 2 +- usr.bin/rpcgen/rpcgen.1 | 2 +- usr.bin/rpcinfo/Makefile | 2 +- usr.bin/rpcinfo/rpcinfo.8 | 2 +- usr.bin/rpcinfo/rpcinfo.c | 2 +- usr.bin/rs/rs.1 | 2 +- usr.bin/rs/rs.c | 2 +- usr.bin/rsh/Makefile | 2 +- usr.bin/rsh/rsh.1 | 2 +- usr.bin/rsh/rsh.c | 2 +- usr.bin/rup/Makefile | 2 +- usr.bin/rup/rup.1 | 2 +- usr.bin/rup/rup.c | 2 +- usr.bin/ruptime/ruptime.1 | 2 +- usr.bin/ruptime/ruptime.c | 2 +- usr.bin/rusers/Makefile | 2 +- usr.bin/rusers/rusers.1 | 2 +- usr.bin/rusers/rusers.c | 2 +- usr.bin/rwall/Makefile | 2 +- usr.bin/rwall/rwall.1 | 2 +- usr.bin/rwall/rwall.c | 2 +- usr.bin/rwho/rwho.1 | 2 +- usr.bin/rwho/rwho.c | 2 +- usr.bin/sasc/sasc.1 | 2 +- usr.bin/sasc/sasc.c | 2 +- usr.bin/script/script.1 | 2 +- usr.bin/script/script.c | 2 +- usr.bin/sed/compile.c | 2 +- usr.bin/sed/main.c | 2 +- usr.bin/sed/misc.c | 2 +- usr.bin/sed/process.c | 2 +- usr.bin/sed/sed.1 | 2 +- usr.bin/shar/shar.1 | 2 +- usr.bin/showmount/showmount.8 | 2 +- usr.bin/showmount/showmount.c | 2 +- usr.bin/size/size.1 | 2 +- usr.bin/size/size.c | 2 +- usr.bin/sockstat/Makefile | 2 +- usr.bin/sockstat/sockstat.1 | 2 +- usr.bin/sockstat/sockstat.pl | 2 +- usr.bin/soelim/soelim.1 | 2 +- usr.bin/soelim/soelim.c | 2 +- usr.bin/split/split.1 | 2 +- usr.bin/strings/strings.1 | 2 +- usr.bin/strings/strings.c | 2 +- usr.bin/strip/strip.1 | 2 +- usr.bin/strip/strip.1aout | 2 +- usr.bin/strip/strip.c | 2 +- usr.bin/su/Makefile | 2 +- usr.bin/su/su.1 | 2 +- usr.bin/su/su.c | 2 +- usr.bin/symorder/symorder.1 | 2 +- usr.bin/symorder/symorder.c | 2 +- usr.bin/systat/cmds.c | 2 +- usr.bin/systat/cmdtab.c | 2 +- usr.bin/systat/devs.c | 2 +- usr.bin/systat/devs.h | 2 +- usr.bin/systat/icmp.c | 2 +- usr.bin/systat/iostat.c | 2 +- usr.bin/systat/ip.c | 2 +- usr.bin/systat/main.c | 2 +- usr.bin/systat/mbufs.c | 2 +- usr.bin/systat/mode.c | 2 +- usr.bin/systat/mode.h | 2 +- usr.bin/systat/netcmds.c | 2 +- usr.bin/systat/netstat.c | 2 +- usr.bin/systat/swap.c | 2 +- usr.bin/systat/systat.1 | 2 +- usr.bin/systat/systat.h | 2 +- usr.bin/systat/tcp.c | 2 +- usr.bin/systat/vmstat.c | 2 +- usr.bin/tail/reverse.c | 2 +- usr.bin/tail/tail.1 | 2 +- usr.bin/talk/Makefile | 2 +- usr.bin/talk/ctl.c | 2 +- usr.bin/talk/ctl_transact.c | 2 +- usr.bin/talk/display.c | 2 +- usr.bin/talk/get_addrs.c | 2 +- usr.bin/talk/get_iface.c | 2 +- usr.bin/talk/get_names.c | 2 +- usr.bin/talk/init_disp.c | 2 +- usr.bin/talk/invite.c | 2 +- usr.bin/talk/io.c | 2 +- usr.bin/talk/look_up.c | 2 +- usr.bin/talk/msgs.c | 2 +- usr.bin/talk/talk.1 | 2 +- usr.bin/talk/talk.c | 2 +- usr.bin/tconv/Makefile | 2 +- usr.bin/tconv/tconv.1 | 2 +- usr.bin/tconv/tconv.c | 2 +- usr.bin/tcopy/tcopy.1 | 2 +- usr.bin/tcopy/tcopy.c | 2 +- usr.bin/tee/tee.1 | 2 +- usr.bin/tee/tee.c | 2 +- usr.bin/telnet/telnet.1 | 2 +- usr.bin/tftp/main.c | 2 +- usr.bin/tftp/tftp.1 | 2 +- usr.bin/tftp/tftp.c | 2 +- usr.bin/tftp/tftpsubs.c | 2 +- usr.bin/time/time.1 | 2 +- usr.bin/time/time.c | 2 +- usr.bin/tip/libacu/acucommon.c | 2 +- usr.bin/tip/libacu/unidialer.c | 2 +- usr.bin/tip/libacu/ventel.c | 2 +- usr.bin/tip/tip/acu.c | 2 +- usr.bin/tip/tip/acutab.c | 2 +- usr.bin/tip/tip/cmds.c | 2 +- usr.bin/tip/tip/cmdtab.c | 2 +- usr.bin/tip/tip/cu.c | 2 +- usr.bin/tip/tip/hunt.c | 2 +- usr.bin/tip/tip/log.c | 2 +- usr.bin/tip/tip/modems.5 | 2 +- usr.bin/tip/tip/partab.c | 2 +- usr.bin/tip/tip/remote.c | 2 +- usr.bin/tip/tip/tip.1 | 2 +- usr.bin/tip/tip/tip.c | 2 +- usr.bin/tip/tip/tipout.c | 2 +- usr.bin/tip/tip/value.c | 2 +- usr.bin/tip/tip/vars.c | 2 +- usr.bin/tn3270/api/api_bsd.c | 2 +- usr.bin/tn3270/ascii/mset.c | 2 +- usr.bin/tn3270/mset/map3270.5 | 2 +- usr.bin/tn3270/mset/mset.1 | 2 +- usr.bin/tn3270/tn3270/tn3270.1 | 2 +- usr.bin/top/machine.c | 2 +- usr.bin/touch/touch.1 | 2 +- usr.bin/tput/tput.1 | 2 +- usr.bin/tr/str.c | 2 +- usr.bin/tr/tr.1 | 2 +- usr.bin/tr/tr.c | 2 +- usr.bin/true/true.1 | 2 +- usr.bin/truss/alpha-fbsd.c | 2 +- usr.bin/truss/amd64-fbsd32.c | 2 +- usr.bin/truss/amd64-linux32.c | 2 +- usr.bin/truss/i386-fbsd.c | 2 +- usr.bin/truss/i386-linux.c | 2 +- usr.bin/truss/main.c | 2 +- usr.bin/truss/setup.c | 2 +- usr.bin/truss/syscall.h | 2 +- usr.bin/truss/syscalls.c | 2 +- usr.bin/tset/map.c | 2 +- usr.bin/tset/misc.c | 2 +- usr.bin/tset/set.c | 2 +- usr.bin/tset/term.c | 2 +- usr.bin/tset/tset.1 | 2 +- usr.bin/tset/tset.c | 2 +- usr.bin/tset/wrterm.c | 2 +- usr.bin/tsort/tsort.1 | 2 +- usr.bin/tsort/tsort.c | 2 +- usr.bin/tty/tty.1 | 2 +- usr.bin/tty/tty.c | 2 +- usr.bin/ul/ul.1 | 2 +- usr.bin/ul/ul.c | 2 +- usr.bin/uname/uname.1 | 2 +- usr.bin/unexpand/unexpand.c | 2 +- usr.bin/unifdef/unifdef.1 | 2 +- usr.bin/unifdef/unifdef.c | 2 +- usr.bin/uniq/uniq.1 | 2 +- usr.bin/uniq/uniq.c | 2 +- usr.bin/units/Makefile | 2 +- usr.bin/units/README | 2 +- usr.bin/units/pathnames.h | 2 +- usr.bin/units/units.1 | 2 +- usr.bin/units/units.c | 2 +- usr.bin/units/units.lib | 2 +- usr.bin/unvis/unvis.1 | 2 +- usr.bin/unvis/unvis.c | 2 +- usr.bin/users/users.1 | 2 +- usr.bin/users/users.c | 2 +- usr.bin/uudecode/uudecode.c | 2 +- usr.bin/uuencode/uuencode.1 | 2 +- usr.bin/uuencode/uuencode.c | 2 +- usr.bin/uuencode/uuencode.format.5 | 2 +- usr.bin/vacation/Makefile | 2 +- usr.bin/vacation/vacation.1 | 2 +- usr.bin/vacation/vacation.c | 2 +- usr.bin/vgrind/vfontedpr.c | 2 +- usr.bin/vgrind/vgrind.1 | 2 +- usr.bin/vgrind/vgrindefs.5 | 2 +- usr.bin/vi/Makefile | 2 +- usr.bin/vis/foldit.c | 2 +- usr.bin/vis/vis.1 | 2 +- usr.bin/vis/vis.c | 2 +- usr.bin/vmstat/vmstat.8 | 2 +- usr.bin/vmstat/vmstat.c | 2 +- usr.bin/w/pr_time.c | 2 +- usr.bin/w/uptime.1 | 2 +- usr.bin/w/w.1 | 2 +- usr.bin/w/w.c | 2 +- usr.bin/wall/ttymsg.c | 2 +- usr.bin/wall/wall.1 | 2 +- usr.bin/wall/wall.c | 2 +- usr.bin/wc/wc.1 | 2 +- usr.bin/wc/wc.c | 2 +- usr.bin/what/what.1 | 2 +- usr.bin/what/what.c | 2 +- usr.bin/whereis/whereis.1 | 2 +- usr.bin/whereis/whereis.pl | 2 +- usr.bin/which/Makefile | 2 +- usr.bin/which/which.1 | 2 +- usr.bin/which/which.pl | 2 +- usr.bin/who/who.1 | 2 +- usr.bin/who/who.c | 2 +- usr.bin/whois/whois.1 | 2 +- usr.bin/whois/whois.c | 2 +- usr.bin/window/window.1 | 2 +- usr.bin/write/write.1 | 2 +- usr.bin/write/write.c | 2 +- usr.bin/xargs/xargs.1 | 2 +- usr.bin/xargs/xargs.c | 2 +- usr.bin/xinstall/install.1 | 2 +- usr.bin/xinstall/xinstall.c | 2 +- usr.bin/xlint/lint1/Makefile | 2 +- usr.bin/xlint/xlint/lint.1 | 2 +- usr.bin/xstr/xstr.1 | 2 +- usr.bin/xstr/xstr.c | 2 +- usr.bin/yacc/Makefile | 2 +- usr.bin/yacc/closure.c | 2 +- usr.bin/yacc/defs.h | 2 +- usr.bin/yacc/error.c | 2 +- usr.bin/yacc/lalr.c | 2 +- usr.bin/yacc/lr0.c | 2 +- usr.bin/yacc/main.c | 2 +- usr.bin/yacc/mkpar.c | 2 +- usr.bin/yacc/output.c | 2 +- usr.bin/yacc/reader.c | 2 +- usr.bin/yacc/skeleton.c | 2 +- usr.bin/yacc/symtab.c | 2 +- usr.bin/yacc/verbose.c | 2 +- usr.bin/yacc/warshall.c | 2 +- usr.bin/yacc/yacc.1 | 2 +- usr.bin/yacc/yyfix.1 | 2 +- usr.bin/yes/yes.1 | 2 +- usr.bin/ypcat/Makefile | 2 +- usr.bin/ypcat/ypcat.1 | 2 +- usr.bin/ypcat/ypcat.c | 2 +- usr.bin/ypmatch/Makefile | 2 +- usr.bin/ypmatch/ypmatch.1 | 2 +- usr.bin/ypmatch/ypmatch.c | 2 +- usr.bin/ypwhich/Makefile | 2 +- usr.bin/ypwhich/ypwhich.1 | 2 +- usr.bin/ypwhich/ypwhich.c | 2 +- 3511 files changed, 3643 insertions(+), 3643 deletions(-) (limited to 'sys/dev/advansys/adwmcode.h') diff --git a/bin/chflags/chflags.1 b/bin/chflags/chflags.1 index 99424f8a437b..1af45709cbdc 100644 --- a/bin/chflags/chflags.1 +++ b/bin/chflags/chflags.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chflags.1 8.2 (Berkeley) 3/31/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 31, 1994 .Dt CHFLAGS 1 diff --git a/lib/libpam/modules/pam_login_access/login.access.5 b/lib/libpam/modules/pam_login_access/login.access.5 index ff6d21cc14fe..10788ed38e6f 100644 --- a/lib/libpam/modules/pam_login_access/login.access.5 +++ b/lib/libpam/modules/pam_login_access/login.access.5 @@ -1,5 +1,5 @@ .\" -.\" $Id$ +.\" $FreeBSD$ .\" .\" this is comment .Dd April 30, 1994 diff --git a/share/colldef/Makefile b/share/colldef/Makefile index 8bffc4e625a4..b828085c3b5a 100644 --- a/share/colldef/Makefile +++ b/share/colldef/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 1999/06/05 03:03:57 julian Exp $ +# $FreeBSD$ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} diff --git a/share/colldef/de_DE.DIS_8859-15.src b/share/colldef/de_DE.DIS_8859-15.src index e952d169902e..f5d609346cc7 100644 --- a/share/colldef/de_DE.DIS_8859-15.src +++ b/share/colldef/de_DE.DIS_8859-15.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.DIS_8859-15.src,v 1.2 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 substitute with "ss" diff --git a/share/colldef/de_DE.ISO8859-1.src b/share/colldef/de_DE.ISO8859-1.src index f366e97d2916..52d155d75a54 100644 --- a/share/colldef/de_DE.ISO8859-1.src +++ b/share/colldef/de_DE.ISO8859-1.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.ISO_8859-1.src,v 1.5 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.ISO_8859-1 substitute with "ss" diff --git a/share/colldef/de_DE.ISO8859-15.src b/share/colldef/de_DE.ISO8859-15.src index e952d169902e..f5d609346cc7 100644 --- a/share/colldef/de_DE.ISO8859-15.src +++ b/share/colldef/de_DE.ISO8859-15.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.DIS_8859-15.src,v 1.2 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 substitute with "ss" diff --git a/share/colldef/de_DE.ISO_8859-1.src b/share/colldef/de_DE.ISO_8859-1.src index f366e97d2916..52d155d75a54 100644 --- a/share/colldef/de_DE.ISO_8859-1.src +++ b/share/colldef/de_DE.ISO_8859-1.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.ISO_8859-1.src,v 1.5 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.ISO_8859-1 substitute with "ss" diff --git a/share/colldef/de_DE.ISO_8859-15.src b/share/colldef/de_DE.ISO_8859-15.src index e952d169902e..f5d609346cc7 100644 --- a/share/colldef/de_DE.ISO_8859-15.src +++ b/share/colldef/de_DE.ISO_8859-15.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.DIS_8859-15.src,v 1.2 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 substitute with "ss" diff --git a/share/colldef/es_ES.DIS_8859-15.src b/share/colldef/es_ES.DIS_8859-15.src index d31a73bf0372..002b63503d5a 100644 --- a/share/colldef/es_ES.DIS_8859-15.src +++ b/share/colldef/es_ES.DIS_8859-15.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id: es_ES.DIS_8859-15.src,v 1.3 1997/02/22 19:54:35 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/es_ES.ISO8859-1.src b/share/colldef/es_ES.ISO8859-1.src index e088e21b5c46..7c2b21fc5955 100644 --- a/share/colldef/es_ES.ISO8859-1.src +++ b/share/colldef/es_ES.ISO8859-1.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/es_ES.ISO8859-15.src b/share/colldef/es_ES.ISO8859-15.src index d31a73bf0372..002b63503d5a 100644 --- a/share/colldef/es_ES.ISO8859-15.src +++ b/share/colldef/es_ES.ISO8859-15.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id: es_ES.DIS_8859-15.src,v 1.3 1997/02/22 19:54:35 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/es_ES.ISO_8859-1.src b/share/colldef/es_ES.ISO_8859-1.src index e088e21b5c46..7c2b21fc5955 100644 --- a/share/colldef/es_ES.ISO_8859-1.src +++ b/share/colldef/es_ES.ISO_8859-1.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/es_ES.ISO_8859-15.src b/share/colldef/es_ES.ISO_8859-15.src index d31a73bf0372..002b63503d5a 100644 --- a/share/colldef/es_ES.ISO_8859-15.src +++ b/share/colldef/es_ES.ISO_8859-15.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id: es_ES.DIS_8859-15.src,v 1.3 1997/02/22 19:54:35 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/is_IS.DIS_8859-15.src b/share/colldef/is_IS.DIS_8859-15.src index 605a8433ae1e..fe4dd9beae88 100644 --- a/share/colldef/is_IS.DIS_8859-15.src +++ b/share/colldef/is_IS.DIS_8859-15.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id: is_IS.DIS_8859-15.src,v 1.4 1997/02/22 19:54:38 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/is_IS.ISO8859-1.src b/share/colldef/is_IS.ISO8859-1.src index 288459c0b3fd..50cd9a95ca8f 100644 --- a/share/colldef/is_IS.ISO8859-1.src +++ b/share/colldef/is_IS.ISO8859-1.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/is_IS.ISO8859-15.src b/share/colldef/is_IS.ISO8859-15.src index 605a8433ae1e..fe4dd9beae88 100644 --- a/share/colldef/is_IS.ISO8859-15.src +++ b/share/colldef/is_IS.ISO8859-15.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id: is_IS.DIS_8859-15.src,v 1.4 1997/02/22 19:54:38 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/is_IS.ISO_8859-1.src b/share/colldef/is_IS.ISO_8859-1.src index 288459c0b3fd..50cd9a95ca8f 100644 --- a/share/colldef/is_IS.ISO_8859-1.src +++ b/share/colldef/is_IS.ISO_8859-1.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/is_IS.ISO_8859-15.src b/share/colldef/is_IS.ISO_8859-15.src index 605a8433ae1e..fe4dd9beae88 100644 --- a/share/colldef/is_IS.ISO_8859-15.src +++ b/share/colldef/is_IS.ISO_8859-15.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id: is_IS.DIS_8859-15.src,v 1.4 1997/02/22 19:54:38 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/la_LN.ASCII.src b/share/colldef/la_LN.ASCII.src index 525ebb979707..df3c34088764 100644 --- a/share/colldef/la_LN.ASCII.src +++ b/share/colldef/la_LN.ASCII.src @@ -1,6 +1,6 @@ # ASCII # -# $Id: lt_LN.ISO_8859-1.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # order \ \x00;...;\xff diff --git a/share/colldef/la_LN.DIS_8859-15.src b/share/colldef/la_LN.DIS_8859-15.src index 71de58338709..449ce85e6336 100644 --- a/share/colldef/la_LN.DIS_8859-15.src +++ b/share/colldef/la_LN.DIS_8859-15.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id: lt_LN.DIS_8859-15.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/la_LN.ISO8859-1.src b/share/colldef/la_LN.ISO8859-1.src index 93a2da01484a..99b7d08ddb00 100644 --- a/share/colldef/la_LN.ISO8859-1.src +++ b/share/colldef/la_LN.ISO8859-1.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/la_LN.ISO8859-15.src b/share/colldef/la_LN.ISO8859-15.src index 71de58338709..449ce85e6336 100644 --- a/share/colldef/la_LN.ISO8859-15.src +++ b/share/colldef/la_LN.ISO8859-15.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id: lt_LN.DIS_8859-15.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/la_LN.ISO8859-2.src b/share/colldef/la_LN.ISO8859-2.src index 772fe3220385..aee3671f0966 100644 --- a/share/colldef/la_LN.ISO8859-2.src +++ b/share/colldef/la_LN.ISO8859-2.src @@ -1,6 +1,6 @@ # latin2 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-2 order \ diff --git a/share/colldef/la_LN.ISO_8859-1.src b/share/colldef/la_LN.ISO_8859-1.src index 93a2da01484a..99b7d08ddb00 100644 --- a/share/colldef/la_LN.ISO_8859-1.src +++ b/share/colldef/la_LN.ISO_8859-1.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/la_LN.ISO_8859-15.src b/share/colldef/la_LN.ISO_8859-15.src index 71de58338709..449ce85e6336 100644 --- a/share/colldef/la_LN.ISO_8859-15.src +++ b/share/colldef/la_LN.ISO_8859-15.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id: lt_LN.DIS_8859-15.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/la_LN.ISO_8859-2.src b/share/colldef/la_LN.ISO_8859-2.src index 772fe3220385..aee3671f0966 100644 --- a/share/colldef/la_LN.ISO_8859-2.src +++ b/share/colldef/la_LN.ISO_8859-2.src @@ -1,6 +1,6 @@ # latin2 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-2 order \ diff --git a/share/colldef/la_LN.US-ASCII.src b/share/colldef/la_LN.US-ASCII.src index 525ebb979707..df3c34088764 100644 --- a/share/colldef/la_LN.US-ASCII.src +++ b/share/colldef/la_LN.US-ASCII.src @@ -1,6 +1,6 @@ # ASCII # -# $Id: lt_LN.ISO_8859-1.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # order \ \x00;...;\xff diff --git a/share/colldef/lt_LN.ASCII.src b/share/colldef/lt_LN.ASCII.src index 525ebb979707..df3c34088764 100644 --- a/share/colldef/lt_LN.ASCII.src +++ b/share/colldef/lt_LN.ASCII.src @@ -1,6 +1,6 @@ # ASCII # -# $Id: lt_LN.ISO_8859-1.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # order \ \x00;...;\xff diff --git a/share/colldef/lt_LN.DIS_8859-15.src b/share/colldef/lt_LN.DIS_8859-15.src index 71de58338709..449ce85e6336 100644 --- a/share/colldef/lt_LN.DIS_8859-15.src +++ b/share/colldef/lt_LN.DIS_8859-15.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id: lt_LN.DIS_8859-15.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/share/colldef/lt_LN.ISO_8859-1.src b/share/colldef/lt_LN.ISO_8859-1.src index 93a2da01484a..99b7d08ddb00 100644 --- a/share/colldef/lt_LN.ISO_8859-1.src +++ b/share/colldef/lt_LN.ISO_8859-1.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/share/colldef/lt_LN.ISO_8859-2.src b/share/colldef/lt_LN.ISO_8859-2.src index 772fe3220385..aee3671f0966 100644 --- a/share/colldef/lt_LN.ISO_8859-2.src +++ b/share/colldef/lt_LN.ISO_8859-2.src @@ -1,6 +1,6 @@ # latin2 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-2 order \ diff --git a/share/colldef/ru_RU.CP866.src b/share/colldef/ru_RU.CP866.src index 88ca377082a7..2fc2d20835c3 100644 --- a/share/colldef/ru_RU.CP866.src +++ b/share/colldef/ru_RU.CP866.src @@ -1,6 +1,6 @@ # CP866 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.CP866 order \ diff --git a/share/colldef/ru_RU.KOI8-R.src b/share/colldef/ru_RU.KOI8-R.src index f6b0a1877bef..3a67bc4e39fb 100644 --- a/share/colldef/ru_RU.KOI8-R.src +++ b/share/colldef/ru_RU.KOI8-R.src @@ -1,6 +1,6 @@ # koi8-r (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.KOI8-R order \ diff --git a/share/colldef/ru_SU.CP866.src b/share/colldef/ru_SU.CP866.src index 88ca377082a7..2fc2d20835c3 100644 --- a/share/colldef/ru_SU.CP866.src +++ b/share/colldef/ru_SU.CP866.src @@ -1,6 +1,6 @@ # CP866 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.CP866 order \ diff --git a/share/colldef/ru_SU.KOI8-R.src b/share/colldef/ru_SU.KOI8-R.src index f6b0a1877bef..3a67bc4e39fb 100644 --- a/share/colldef/ru_SU.KOI8-R.src +++ b/share/colldef/ru_SU.KOI8-R.src @@ -1,6 +1,6 @@ # koi8-r (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.KOI8-R order \ diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile index 2ef612c9f74d..1c446a9ca13b 100644 --- a/share/mklocale/Makefile +++ b/share/mklocale/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1999/06/05 03:04:00 julian Exp $ +# $FreeBSD$ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} diff --git a/share/mklocale/la_LN.ISO8859-2.src b/share/mklocale/la_LN.ISO8859-2.src index 3f9ad913e06a..a9fa03fc89e5 100644 --- a/share/mklocale/la_LN.ISO8859-2.src +++ b/share/mklocale/la_LN.ISO8859-2.src @@ -1,7 +1,7 @@ /* * LOCALE_CTYPE for the iso_8859_2 Locale * - * $Id$ + * $FreeBSD$ */ ENCODING "NONE" diff --git a/share/mklocale/la_LN.ISO_8859-2.src b/share/mklocale/la_LN.ISO_8859-2.src index 3f9ad913e06a..a9fa03fc89e5 100644 --- a/share/mklocale/la_LN.ISO_8859-2.src +++ b/share/mklocale/la_LN.ISO_8859-2.src @@ -1,7 +1,7 @@ /* * LOCALE_CTYPE for the iso_8859_2 Locale * - * $Id$ + * $FreeBSD$ */ ENCODING "NONE" diff --git a/share/mklocale/lt_LN.ISO_8859-2.src b/share/mklocale/lt_LN.ISO_8859-2.src index 3f9ad913e06a..a9fa03fc89e5 100644 --- a/share/mklocale/lt_LN.ISO_8859-2.src +++ b/share/mklocale/lt_LN.ISO_8859-2.src @@ -1,7 +1,7 @@ /* * LOCALE_CTYPE for the iso_8859_2 Locale * - * $Id$ + * $FreeBSD$ */ ENCODING "NONE" diff --git a/share/mklocale/zh_CN.EUC.src b/share/mklocale/zh_CN.EUC.src index 1680f3cc1998..b298ef5de562 100644 --- a/share/mklocale/zh_CN.EUC.src +++ b/share/mklocale/zh_CN.EUC.src @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zh_CN.EUC.src,v 1.1 1998/08/10 09:49:42 phk Exp $ + * $FreeBSD$ */ ENCODING "EUC" diff --git a/share/mklocale/zh_CN.eucCN.src b/share/mklocale/zh_CN.eucCN.src index 1680f3cc1998..b298ef5de562 100644 --- a/share/mklocale/zh_CN.eucCN.src +++ b/share/mklocale/zh_CN.eucCN.src @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zh_CN.EUC.src,v 1.1 1998/08/10 09:49:42 phk Exp $ + * $FreeBSD$ */ ENCODING "EUC" diff --git a/sys/Makefile b/sys/Makefile index fd892f3e86b9..007745683a7b 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 1999/04/21 11:09:40 jkoshy Exp $ +# $FreeBSD$ # This is the old aout only boot loader. .if exists(${.CURDIR}/${MACHINE}/boot) && ${OBJFORMAT} == "aout" diff --git a/sys/alpha/alpha/atomic.s b/sys/alpha/alpha/atomic.s index 5eb23b2d47d2..19132522aebd 100644 --- a/sys/alpha/alpha/atomic.s +++ b/sys/alpha/alpha/atomic.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/autoconf.c b/sys/alpha/alpha/autoconf.c index 74daa01caa8e..4eafc4f2ce7a 100644 --- a/sys/alpha/alpha/autoconf.c +++ b/sys/alpha/alpha/autoconf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: autoconf.c,v 1.30 1999/07/21 21:11:28 dfr Exp $ + * $FreeBSD$ */ #include "opt_bootp.h" diff --git a/sys/alpha/alpha/busdma_machdep.c b/sys/alpha/alpha/busdma_machdep.c index b2267af998ea..cfc811550215 100644 --- a/sys/alpha/alpha/busdma_machdep.c +++ b/sys/alpha/alpha/busdma_machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: busdma_machdep.c,v 1.4 1999/07/01 20:59:56 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/clock.c b/sys/alpha/alpha/clock.c index 088488139550..bd51ddd0c436 100644 --- a/sys/alpha/alpha/clock.c +++ b/sys/alpha/alpha/clock.c @@ -1,4 +1,4 @@ -/* $Id: clock.c,v 1.8 1999/04/25 10:45:59 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: clock.c,v 1.20 1998/01/31 10:32:47 ross Exp $ */ /* diff --git a/sys/alpha/alpha/clock_if.m b/sys/alpha/alpha/clock_if.m index 95a2e093a552..80c6849c5ee3 100644 --- a/sys/alpha/alpha/clock_if.m +++ b/sys/alpha/alpha/clock_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: clock_if.m,v 1.2 1998/11/08 18:35:51 nsouch Exp $ +# $FreeBSD$ # #include diff --git a/sys/alpha/alpha/cpuconf.c b/sys/alpha/alpha/cpuconf.c index cacc31cd1c45..b9b2b313fa36 100644 --- a/sys/alpha/alpha/cpuconf.c +++ b/sys/alpha/alpha/cpuconf.c @@ -1,4 +1,4 @@ -/* $Id: cpuconf.c,v 1.2 1998/08/10 07:53:58 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: cpuconf.c,v 1.10 1998/03/20 21:48:21 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/dec_axppci_33.c b/sys/alpha/alpha/dec_axppci_33.c index 4e3e4a53366b..98970b91fdcf 100644 --- a/sys/alpha/alpha/dec_axppci_33.c +++ b/sys/alpha/alpha/dec_axppci_33.c @@ -1,4 +1,4 @@ -/* $Id: dec_axppci_33.c,v 1.2 1999/04/23 19:53:37 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: dec_axppci_33.c,v 1.38 1998/07/07 08:49:12 ross Exp $ */ /* diff --git a/sys/alpha/alpha/dec_eb164.c b/sys/alpha/alpha/dec_eb164.c index d2a78f491e49..20884072c0a7 100644 --- a/sys/alpha/alpha/dec_eb164.c +++ b/sys/alpha/alpha/dec_eb164.c @@ -1,4 +1,4 @@ -/* $Id: dec_eb164.c,v 1.5 1998/12/05 22:36:31 mjacob Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: dec_eb164.c,v 1.26 1998/04/17 02:45:19 mjacob Exp $ */ /* diff --git a/sys/alpha/alpha/dec_eb64plus.c b/sys/alpha/alpha/dec_eb64plus.c index 597415c90769..19a7bd5aa208 100644 --- a/sys/alpha/alpha/dec_eb64plus.c +++ b/sys/alpha/alpha/dec_eb64plus.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* * Copyright (c) 1995, 1996, 1997 Carnegie-Mellon University. diff --git a/sys/alpha/alpha/dec_kn8ae.c b/sys/alpha/alpha/dec_kn8ae.c index e255caca60d5..d205d38e0a39 100644 --- a/sys/alpha/alpha/dec_kn8ae.c +++ b/sys/alpha/alpha/dec_kn8ae.c @@ -1,4 +1,4 @@ -/* $Id: dec_kn8ae.c,v 1.2 1998/06/14 13:44:42 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: dec_kn8ae.c,v 1.15 1998/02/13 00:12:50 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/diskslice_machdep.c b/sys/alpha/alpha/diskslice_machdep.c index 7116f7d28c54..bd72d02cc82a 100644 --- a/sys/alpha/alpha/diskslice_machdep.c +++ b/sys/alpha/alpha/diskslice_machdep.c @@ -36,7 +36,7 @@ * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ * from: i386/isa Id: diskslice_machdep.c,v 1.31 1998/08/10 07:22:14 phk Exp - * $Id: diskslice_machdep.c,v 1.9 1999/06/26 02:47:12 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/elf_machdep.c b/sys/alpha/alpha/elf_machdep.c index 646e3536573e..5582fcb1337d 100644 --- a/sys/alpha/alpha/elf_machdep.c +++ b/sys/alpha/alpha/elf_machdep.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elf_machdep.c,v 1.5 1999/07/16 09:16:11 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/exception.s b/sys/alpha/alpha/exception.s index 43828ca0b9f7..417c5ddd9211 100644 --- a/sys/alpha/alpha/exception.s +++ b/sys/alpha/alpha/exception.s @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: locore.s,v 1.47 1998/03/22 07:26:32 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/fp_emulate.c b/sys/alpha/alpha/fp_emulate.c index a01642afc0ae..ad07a8ea597f 100644 --- a/sys/alpha/alpha/fp_emulate.c +++ b/sys/alpha/alpha/fp_emulate.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fp_emulate.c,v 1.4 1999/06/08 16:42:13 dt Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/genassym.c b/sys/alpha/alpha/genassym.c index 945f537aaddf..dc838f71ace7 100644 --- a/sys/alpha/alpha/genassym.c +++ b/sys/alpha/alpha/genassym.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91 - * $Id: genassym.c,v 1.7 1999/06/28 09:15:35 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/gensetdefs.c b/sys/alpha/alpha/gensetdefs.c index d2aaa8d48362..c58025e2b77e 100644 --- a/sys/alpha/alpha/gensetdefs.c +++ b/sys/alpha/alpha/gensetdefs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: gensetdefs.c,v 1.1 1998/06/10 10:52:41 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/ieee_float.c b/sys/alpha/alpha/ieee_float.c index fe660e249b02..d6fa59f89456 100644 --- a/sys/alpha/alpha/ieee_float.c +++ b/sys/alpha/alpha/ieee_float.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ieee_float.c,v 1.4 1999/06/14 11:42:30 simokawa Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/alpha/ieee_float.h b/sys/alpha/alpha/ieee_float.h index 1977e910a0e1..ae5b8701a944 100644 --- a/sys/alpha/alpha/ieee_float.h +++ b/sys/alpha/alpha/ieee_float.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #define S_FORMAT 0 /* IEEE single */ diff --git a/sys/alpha/alpha/in_cksum.c b/sys/alpha/alpha/in_cksum.c index cbebc65853a0..945021359587 100644 --- a/sys/alpha/alpha/in_cksum.c +++ b/sys/alpha/alpha/in_cksum.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: in_cksum.c,v 1.7 1997/09/02 13:18:15 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/interrupt.c b/sys/alpha/alpha/interrupt.c index 02266e090b8a..1e4d07d6950b 100644 --- a/sys/alpha/alpha/interrupt.c +++ b/sys/alpha/alpha/interrupt.c @@ -1,4 +1,4 @@ -/* $Id: interrupt.c,v 1.9 1999/01/10 12:35:38 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: interrupt.c,v 1.23 1998/02/24 07:38:01 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/ipl_funcs.c b/sys/alpha/alpha/ipl_funcs.c index 33042be0f41c..fe761c69135a 100644 --- a/sys/alpha/alpha/ipl_funcs.c +++ b/sys/alpha/alpha/ipl_funcs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl_funcs.c,v 1.9 1998/12/24 06:05:48 mjacob Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/locore.s b/sys/alpha/alpha/locore.s index 51639ee3e035..510cc468b0fa 100644 --- a/sys/alpha/alpha/locore.s +++ b/sys/alpha/alpha/locore.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locore.s,v 1.7 1999/05/09 19:03:55 peter Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index 0378f765415f..5c877f120e7b 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: machdep.c,v 1.50 1999/08/22 18:50:43 msmith Exp $ + * $FreeBSD$ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. diff --git a/sys/alpha/alpha/mem.c b/sys/alpha/alpha/mem.c index d2f5076cbe46..9a23ce4542b4 100644 --- a/sys/alpha/alpha/mem.c +++ b/sys/alpha/alpha/mem.c @@ -38,7 +38,7 @@ * * from: Utah $Hdr: mem.c 1.13 89/10/08$ * from: @(#)mem.c 7.2 (Berkeley) 5/9/91 - * $Id: mem.c,v 1.11 1999/06/27 20:52:22 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/alpha/pmap.c b/sys/alpha/alpha/pmap.c index 62132f5b0e5e..411b4a4ee19a 100644 --- a/sys/alpha/alpha/pmap.c +++ b/sys/alpha/alpha/pmap.c @@ -43,7 +43,7 @@ * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 * from: i386 Id: pmap.c,v 1.193 1998/04/19 15:22:48 bde Exp * with some ideas from NetBSD's alpha pmap - * $Id: pmap.c,v 1.29 1999/07/31 23:02:52 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/alpha/procfs_machdep.c b/sys/alpha/alpha/procfs_machdep.c index cfaa023fd01f..000eb02a0a7f 100644 --- a/sys/alpha/alpha/procfs_machdep.c +++ b/sys/alpha/alpha/procfs_machdep.c @@ -37,7 +37,7 @@ * @(#)procfs_machdep.c 8.3 (Berkeley) 1/27/94 * * From: - * $Id: procfs_machdep.c,v 1.2 1998/09/14 22:43:19 jdp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/alpha/promcons.c b/sys/alpha/alpha/promcons.c index f3dbde81ad6f..7a2d0e46b8f9 100644 --- a/sys/alpha/alpha/promcons.c +++ b/sys/alpha/alpha/promcons.c @@ -1,4 +1,4 @@ -/* $Id: promcons.c,v 1.7 1999/05/09 08:57:47 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: promcons.c,v 1.13 1998/03/21 22:52:59 mycroft Exp $ */ /* diff --git a/sys/alpha/alpha/setdef0.c b/sys/alpha/alpha/setdef0.c index e91857f9f815..49f662ae1d6c 100644 --- a/sys/alpha/alpha/setdef0.c +++ b/sys/alpha/alpha/setdef0.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef0.c,v 1.2 1997/05/21 23:21:30 jdp Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/alpha/alpha/setdef1.c b/sys/alpha/alpha/setdef1.c index 0b2bbaa7bb57..13668f08cefc 100644 --- a/sys/alpha/alpha/setdef1.c +++ b/sys/alpha/alpha/setdef1.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef1.c,v 1.2 1997/05/21 23:21:30 jdp Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/alpha/alpha/sgmap.c b/sys/alpha/alpha/sgmap.c index 493a2b15d4af..94517e799361 100644 --- a/sys/alpha/alpha/sgmap.c +++ b/sys/alpha/alpha/sgmap.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/alpha/alpha/support.s b/sys/alpha/alpha/support.s index 5b45b49b9501..e7b6873c58d1 100644 --- a/sys/alpha/alpha/support.s +++ b/sys/alpha/alpha/support.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: support.s,v 1.2 1998/12/20 13:21:55 dfr Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. diff --git a/sys/alpha/alpha/swtch.s b/sys/alpha/alpha/swtch.s index 68727ebf91f6..4c263bdd68db 100644 --- a/sys/alpha/alpha/swtch.s +++ b/sys/alpha/alpha/swtch.s @@ -1,4 +1,4 @@ -/* $Id: swtch.s,v 1.9 1999/04/16 13:57:38 gallatin Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: locore.s,v 1.47 1998/03/22 07:26:32 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/sys_machdep.c b/sys/alpha/alpha/sys_machdep.c index 0339d18d64cd..9a85e97bc6d4 100644 --- a/sys/alpha/alpha/sys_machdep.c +++ b/sys/alpha/alpha/sys_machdep.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91 - * $Id: sys_machdep.c,v 1.4 1999/04/23 19:53:38 dt Exp $ + * $FreeBSD$ * */ diff --git a/sys/alpha/alpha/timerreg.h b/sys/alpha/alpha/timerreg.h index 120716753229..0bfd7fc8cd63 100644 --- a/sys/alpha/alpha/timerreg.h +++ b/sys/alpha/alpha/timerreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: Header: timerreg.h,v 1.2 93/02/28 15:08:58 mccanne Exp - * $Id: timerreg.h,v 1.5 1997/02/22 09:37:18 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/alpha/trap.c b/sys/alpha/alpha/trap.c index 943593739971..cbd42bc57b14 100644 --- a/sys/alpha/alpha/trap.c +++ b/sys/alpha/alpha/trap.c @@ -1,4 +1,4 @@ -/* $Id: trap.c,v 1.16 1999/06/10 20:40:58 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: trap.c,v 1.31 1998/03/26 02:21:46 thorpej Exp $ */ /* diff --git a/sys/alpha/alpha/vm_machdep.c b/sys/alpha/alpha/vm_machdep.c index 4f92cf697bfd..2f0dabb94805 100644 --- a/sys/alpha/alpha/vm_machdep.c +++ b/sys/alpha/alpha/vm_machdep.c @@ -38,7 +38,7 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.19 1999/08/05 23:38:13 jdp Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. diff --git a/sys/alpha/conf/GENERIC b/sys/alpha/conf/GENERIC index 211a6ffb1c71..6a30b4f34915 100644 --- a/sys/alpha/conf/GENERIC +++ b/sys/alpha/conf/GENERIC @@ -11,7 +11,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC,v 1.37 1999/08/21 18:34:56 wpaul Exp $ +# $FreeBSD$ machine alpha cpu EV4 diff --git a/sys/alpha/conf/Makefile.alpha b/sys/alpha/conf/Makefile.alpha index d6d3c1a063b7..dfd267a69063 100644 --- a/sys/alpha/conf/Makefile.alpha +++ b/sys/alpha/conf/Makefile.alpha @@ -1,7 +1,7 @@ # Makefile.alpha -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.alpha 7.1 5/10/91 -# $Id: Makefile.alpha,v 1.28 1999/07/02 04:16:57 mjacob Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/alpha/conf/NOTES b/sys/alpha/conf/NOTES index 211a6ffb1c71..6a30b4f34915 100644 --- a/sys/alpha/conf/NOTES +++ b/sys/alpha/conf/NOTES @@ -11,7 +11,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC,v 1.37 1999/08/21 18:34:56 wpaul Exp $ +# $FreeBSD$ machine alpha cpu EV4 diff --git a/sys/alpha/conf/SIMOS b/sys/alpha/conf/SIMOS index d20872d5245a..14073c4a7402 100644 --- a/sys/alpha/conf/SIMOS +++ b/sys/alpha/conf/SIMOS @@ -11,7 +11,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: SIMOS,v 1.5 1999/08/08 19:28:56 phk Exp $ +# $FreeBSD$ machine "alpha" cpu "EV5" diff --git a/sys/alpha/conf/devices.alpha b/sys/alpha/conf/devices.alpha index f686745666c2..a6de7cd2c0aa 100644 --- a/sys/alpha/conf/devices.alpha +++ b/sys/alpha/conf/devices.alpha @@ -1,6 +1,6 @@ # This file tells what major numbers the various possible swap devices have. # -# $Id: devices.alpha,v 1.1 1998/06/10 10:54:04 dfr Exp $ +# $FreeBSD$ # wd 0 wfd 1 diff --git a/sys/alpha/conf/files.alpha b/sys/alpha/conf/files.alpha index 52ef13c794ff..73d380047bc5 100644 --- a/sys/alpha/conf/files.alpha +++ b/sys/alpha/conf/files.alpha @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.alpha,v 1.23 1999/07/03 19:19:30 peter Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/alpha/conf/majors.alpha b/sys/alpha/conf/majors.alpha index 8c22063abca1..b1110c183864 100644 --- a/sys/alpha/conf/majors.alpha +++ b/sys/alpha/conf/majors.alpha @@ -1,4 +1,4 @@ -$Id: majors.alpha,v 1.7 1999/01/18 20:38:37 gallatin Exp $ +$FreeBSD$ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. diff --git a/sys/alpha/conf/options.alpha b/sys/alpha/conf/options.alpha index d78c2205e96e..fdc5b7d75249 100644 --- a/sys/alpha/conf/options.alpha +++ b/sys/alpha/conf/options.alpha @@ -1,4 +1,4 @@ -# $Id: options.alpha,v 1.11 1999/05/27 22:03:31 gallatin Exp $ +# $FreeBSD$ EV5 opt_global.h EV4 opt_global.h diff --git a/sys/alpha/include/_limits.h b/sys/alpha/include/_limits.h index c8adc82fb0ae..99ca2d89843f 100644 --- a/sys/alpha/include/_limits.h +++ b/sys/alpha/include/_limits.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: limits.h,v 1.3 1997/04/06 08:47:31 cgd Exp */ /* diff --git a/sys/alpha/include/alpha_cpu.h b/sys/alpha/include/alpha_cpu.h index 80eb3078a309..3e2bfb0fa3df 100644 --- a/sys/alpha/include/alpha_cpu.h +++ b/sys/alpha/include/alpha_cpu.h @@ -1,4 +1,4 @@ -/* $Id: alpha_cpu.h,v 1.4 1998/12/23 11:50:50 dfr Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: alpha_cpu.h,v 1.15 1997/09/20 19:02:34 mjacob Exp */ /* diff --git a/sys/alpha/include/ansi.h b/sys/alpha/include/ansi.h index 09413e7d49f0..f9b1f424114b 100644 --- a/sys/alpha/include/ansi.h +++ b/sys/alpha/include/ansi.h @@ -1,4 +1,4 @@ -/* $Id: ansi.h,v 1.3 1998/10/12 23:57:58 alex Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: ansi.h,v 1.9 1997/11/23 20:20:53 kleink Exp */ /*- diff --git a/sys/alpha/include/asm.h b/sys/alpha/include/asm.h index 8be98c10e0c5..d003ca910104 100644 --- a/sys/alpha/include/asm.h +++ b/sys/alpha/include/asm.h @@ -1,4 +1,4 @@ -/* $Id: asm.h,v 1.2 1998/06/10 10:54:23 dfr Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: asm.h,v 1.18 1997/11/03 04:22:06 ross Exp */ /* diff --git a/sys/alpha/include/atomic.h b/sys/alpha/include/atomic.h index 25a27d57f00e..d8b0499fd4dd 100644 --- a/sys/alpha/include/atomic.h +++ b/sys/alpha/include/atomic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_ATOMIC_H_ diff --git a/sys/alpha/include/bootinfo.h b/sys/alpha/include/bootinfo.h index cd45e408d85f..86b7e7a729bb 100644 --- a/sys/alpha/include/bootinfo.h +++ b/sys/alpha/include/bootinfo.h @@ -1,4 +1,4 @@ -/* $Id: bootinfo.h,v 1.3 1998/10/14 09:53:24 peter Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/alpha/include/bus.h b/sys/alpha/include/bus.h index 52a7c694f972..5fb1ccf7d4b9 100644 --- a/sys/alpha/include/bus.h +++ b/sys/alpha/include/bus.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.3 1999/06/05 13:30:01 dfr Exp $ */ +/* $FreeBSD$ */ #ifndef _ALPHA_BUS_H_ #define _ALPHA_BUS_H_ diff --git a/sys/alpha/include/bus_memio.h b/sys/alpha/include/bus_memio.h index c7f50f78dbbf..f111ca9a7ba5 100644 --- a/sys/alpha/include/bus_memio.h +++ b/sys/alpha/include/bus_memio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _ALPHA_BUS_MEMIO_H_ diff --git a/sys/alpha/include/bus_pio.h b/sys/alpha/include/bus_pio.h index 286298e1968a..1e437c86a66e 100644 --- a/sys/alpha/include/bus_pio.h +++ b/sys/alpha/include/bus_pio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _ALPHA_BUS_PIO_H_ diff --git a/sys/alpha/include/bwx.h b/sys/alpha/include/bwx.h index 5489e3a4e667..bbc3142d8926 100644 --- a/sys/alpha/include/bwx.h +++ b/sys/alpha/include/bwx.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bwx.h,v 1.1 1998/07/05 12:14:15 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_BWX_H_ diff --git a/sys/alpha/include/chipset.h b/sys/alpha/include/chipset.h index e9dbe87bdf17..18792f1e5221 100644 --- a/sys/alpha/include/chipset.h +++ b/sys/alpha/include/chipset.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: chipset.h,v 1.8 1999/05/20 15:33:16 gallatin Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CHIPSET_H_ diff --git a/sys/alpha/include/clock.h b/sys/alpha/include/clock.h index e1915230a842..f243f8b20334 100644 --- a/sys/alpha/include/clock.h +++ b/sys/alpha/include/clock.h @@ -3,7 +3,7 @@ * Garrett Wollman, September 1994. * This file is in the public domain. * - * $Id: clock.h,v 1.2 1998/07/22 08:26:23 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CLOCK_H_ diff --git a/sys/alpha/include/cpu.h b/sys/alpha/include/cpu.h index 928a05aa0fef..cddefe118ede 100644 --- a/sys/alpha/include/cpu.h +++ b/sys/alpha/include/cpu.h @@ -1,4 +1,4 @@ -/* $Id: cpu.h,v 1.6 1999/04/20 22:53:53 dt Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: cpu.h,v 1.18 1997/09/23 23:17:49 mjacob Exp */ /* diff --git a/sys/alpha/include/cpufunc.h b/sys/alpha/include/cpufunc.h index 8326970978c0..eb225261071c 100644 --- a/sys/alpha/include/cpufunc.h +++ b/sys/alpha/include/cpufunc.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.3 1998/08/17 08:21:31 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CPUFUNC_H_ diff --git a/sys/alpha/include/elf.h b/sys/alpha/include/elf.h index 6257ed87453d..892d96d0337e 100644 --- a/sys/alpha/include/elf.h +++ b/sys/alpha/include/elf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf.h,v 1.6 1999/02/07 23:49:51 jdp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ELF_H_ diff --git a/sys/alpha/include/elf_machdep.h b/sys/alpha/include/elf_machdep.h index f14c0fa30a23..fe6bcc21114c 100644 --- a/sys/alpha/include/elf_machdep.h +++ b/sys/alpha/include/elf_machdep.h @@ -1,4 +1,4 @@ -/* $Id$ +/* $FreeBSD$ /* From: NetBSD: elf_machdep.h,v 1.3 1997/04/06 08:47:24 cgd Exp */ #define ELF32_MACHDEP_ENDIANNESS XXX /* break compilation */ diff --git a/sys/alpha/include/endian.h b/sys/alpha/include/endian.h index 5b1fd0063197..67e4540eb426 100644 --- a/sys/alpha/include/endian.h +++ b/sys/alpha/include/endian.h @@ -1,4 +1,4 @@ -/* $Id: endian.h,v 1.1 1998/01/10 10:13:14 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: endian.h,v 1.5 1997/10/09 15:42:19 bouyer Exp */ /* diff --git a/sys/alpha/include/float.h b/sys/alpha/include/float.h index de8d599c9d1a..1a3d871d7529 100644 --- a/sys/alpha/include/float.h +++ b/sys/alpha/include/float.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: float.h,v 1.6 1997/07/17 21:36:03 thorpej Exp */ /* diff --git a/sys/alpha/include/fpu.h b/sys/alpha/include/fpu.h index c9efceed0293..66c557722429 100644 --- a/sys/alpha/include/fpu.h +++ b/sys/alpha/include/fpu.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fpu.h,v 1.1 1998/12/04 10:52:48 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_FPU_H_ diff --git a/sys/alpha/include/frame.h b/sys/alpha/include/frame.h index 8af1d7162517..95c0a93c2a1f 100644 --- a/sys/alpha/include/frame.h +++ b/sys/alpha/include/frame.h @@ -1,4 +1,4 @@ -/* $Id: frame.h,v 1.1 1998/01/10 10:13:14 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: frame.h,v 1.4 1997/04/06 08:47:27 cgd Exp */ /* diff --git a/sys/alpha/include/ieee.h b/sys/alpha/include/ieee.h index 701f22c2b5bb..654d6ee86122 100644 --- a/sys/alpha/include/ieee.h +++ b/sys/alpha/include/ieee.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: ieee.h,v 1.2 1997/04/06 08:47:27 cgd Exp */ /* diff --git a/sys/alpha/include/ieeefp.h b/sys/alpha/include/ieeefp.h index a838e9891955..b357101c0cea 100644 --- a/sys/alpha/include/ieeefp.h +++ b/sys/alpha/include/ieeefp.h @@ -1,4 +1,4 @@ -/* $Id: ieeefp.h,v 1.1.1.1 1998/03/09 05:43:16 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: ieeefp.h,v 1.2 1997/04/06 08:47:28 cgd Exp */ /* diff --git a/sys/alpha/include/in_cksum.h b/sys/alpha/include/in_cksum.h index 7e1c0f0dee49..7691d71efad9 100644 --- a/sys/alpha/include/in_cksum.h +++ b/sys/alpha/include/in_cksum.h @@ -33,7 +33,7 @@ * from tahoe: in_cksum.c 1.2 86/01/05 * from: @(#)in_cksum.c 1.3 (Berkeley) 1/19/91 * from: Id: in_cksum.c,v 1.8 1995/12/03 18:35:19 bde Exp - * $Id: in_cksum.h,v 1.5 1997/08/16 19:14:55 wollman Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_IN_CKSUM_H_ diff --git a/sys/alpha/include/inst.h b/sys/alpha/include/inst.h index 27011848b175..b4088bc009c8 100644 --- a/sys/alpha/include/inst.h +++ b/sys/alpha/include/inst.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_INST_H_ diff --git a/sys/alpha/include/intr.h b/sys/alpha/include/intr.h index ea5408920b88..4f003886ec1f 100644 --- a/sys/alpha/include/intr.h +++ b/sys/alpha/include/intr.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: intr.h,v 1.4 1998/11/15 18:25:16 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_INTR_H_ diff --git a/sys/alpha/include/intrcnt.h b/sys/alpha/include/intrcnt.h index cd9e70173156..d32494281fb3 100644 --- a/sys/alpha/include/intrcnt.h +++ b/sys/alpha/include/intrcnt.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: intrcnt.h,v 1.17 1998/11/19 01:48:04 ross Exp $ */ /* diff --git a/sys/alpha/include/ioctl_fd.h b/sys/alpha/include/ioctl_fd.h index 970d24704104..46f57baa95c5 100644 --- a/sys/alpha/include/ioctl_fd.h +++ b/sys/alpha/include/ioctl_fd.h @@ -24,7 +24,7 @@ * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * - * $Id$ + * $FreeBSD$ * from: ioctl_fd.h,v 1.11 */ diff --git a/sys/alpha/include/ipl.h b/sys/alpha/include/ipl.h index 79e83f3d1016..956e141ca169 100644 --- a/sys/alpha/include/ipl.h +++ b/sys/alpha/include/ipl.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl.h,v 1.6 1998/09/19 09:29:40 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_IPL_H_ diff --git a/sys/alpha/include/limits.h b/sys/alpha/include/limits.h index c8adc82fb0ae..99ca2d89843f 100644 --- a/sys/alpha/include/limits.h +++ b/sys/alpha/include/limits.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: limits.h,v 1.3 1997/04/06 08:47:31 cgd Exp */ /* diff --git a/sys/alpha/include/lock.h b/sys/alpha/include/lock.h index f10c60f4c5d5..c2ae0fab148f 100644 --- a/sys/alpha/include/lock.h +++ b/sys/alpha/include/lock.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lock.h,v 1.3 1998/07/22 08:28:24 dfr Exp $ + * $FreeBSD$ */ diff --git a/sys/alpha/include/md_var.h b/sys/alpha/include/md_var.h index 94e87ffd7d83..42d40f3f2dfa 100644 --- a/sys/alpha/include/md_var.h +++ b/sys/alpha/include/md_var.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: md_var.h,v 1.6 1999/07/01 21:58:38 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MD_VAR_H_ diff --git a/sys/alpha/include/mouse.h b/sys/alpha/include/mouse.h index a8ef501bc349..e2df622a0c02 100644 --- a/sys/alpha/include/mouse.h +++ b/sys/alpha/include/mouse.h @@ -20,7 +20,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mouse.h,v 1.13 1999/07/12 15:16:13 yokota Exp $ + * $FreeBSD$ * from: i386/include mouse.h,v 1.10 */ diff --git a/sys/alpha/include/pal.h b/sys/alpha/include/pal.h index c3d8b31a0fdf..b3393ce70c5a 100644 --- a/sys/alpha/include/pal.h +++ b/sys/alpha/include/pal.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: pal.h,v 1.1 1997/09/06 01:23:53 thorpej Exp */ /* diff --git a/sys/alpha/include/param.h b/sys/alpha/include/param.h index 0fbbf9571769..873ea8504b4f 100644 --- a/sys/alpha/include/param.h +++ b/sys/alpha/include/param.h @@ -1,4 +1,4 @@ -/* $Id: param.h,v 1.10 1999/04/11 12:19:02 simokawa Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: param.h,v 1.20 1997/09/19 13:52:53 leo Exp */ /* diff --git a/sys/alpha/include/pc/bios.h b/sys/alpha/include/pc/bios.h index 5da68ea44b89..d85f674478d7 100644 --- a/sys/alpha/include/pc/bios.h +++ b/sys/alpha/include/pc/bios.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bios.h,v 1.3 1998/08/06 09:15:54 dfr Exp $ + * $FreeBSD$ * from: i386/include/pc bios.h,v 1.2 */ diff --git a/sys/alpha/include/pc/display.h b/sys/alpha/include/pc/display.h index f13c374c26a1..fad568c0cb81 100644 --- a/sys/alpha/include/pc/display.h +++ b/sys/alpha/include/pc/display.h @@ -1,7 +1,7 @@ /* * IBM PC display definitions * - * $Id$ + * $FreeBSD$ * from: i386/include/pc display.h,v 1.4 */ diff --git a/sys/alpha/include/pc/msdos.h b/sys/alpha/include/pc/msdos.h index 078238ec0d47..d1b777fc613e 100644 --- a/sys/alpha/include/pc/msdos.h +++ b/sys/alpha/include/pc/msdos.h @@ -3,7 +3,7 @@ * [obtained from mtools -wfj] * how to decipher DOS disk structures in coexisting with DOS * - * $Id$ + * $FreeBSD$ * from: i386/include/pc msdos.h,v 1.4 */ diff --git a/sys/alpha/include/pc/vesa.h b/sys/alpha/include/pc/vesa.h index d5d19e4603ff..5b214086311a 100644 --- a/sys/alpha/include/pc/vesa.h +++ b/sys/alpha/include/pc/vesa.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * from: i386/include/pc vesa.h,v 1.1 */ diff --git a/sys/alpha/include/pcb.h b/sys/alpha/include/pcb.h index a6d4a18bde20..3caa144f8e4f 100644 --- a/sys/alpha/include/pcb.h +++ b/sys/alpha/include/pcb.h @@ -1,4 +1,4 @@ -/* $Id: pcb.h,v 1.1.1.1 1998/03/09 05:43:16 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: pcb.h,v 1.6 1997/04/06 08:47:33 cgd Exp */ /* diff --git a/sys/alpha/include/pmap.h b/sys/alpha/include/pmap.h index 3b2f9c759cc2..321326ff40ad 100644 --- a/sys/alpha/include/pmap.h +++ b/sys/alpha/include/pmap.h @@ -43,7 +43,7 @@ * from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90 * from: @(#)pmap.h 7.4 (Berkeley) 5/12/91 * from: i386 pmap.h,v 1.54 1997/11/20 19:30:35 bde Exp - * $Id: pmap.h,v 1.3 1998/08/23 16:05:55 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PMAP_H_ diff --git a/sys/alpha/include/proc.h b/sys/alpha/include/proc.h index 68add90c7255..b2a28df6eb44 100644 --- a/sys/alpha/include/proc.h +++ b/sys/alpha/include/proc.h @@ -1,4 +1,4 @@ -/* $Id: proc.h,v 1.4 1998/11/15 18:25:16 dfr Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: proc.h,v 1.3 1997/04/06 08:47:36 cgd Exp */ /* diff --git a/sys/alpha/include/profile.h b/sys/alpha/include/profile.h index 065ae3f090ca..0eb8ef282098 100644 --- a/sys/alpha/include/profile.h +++ b/sys/alpha/include/profile.h @@ -1,4 +1,4 @@ -/* $Id: profile.h,v 1.1.1.1 1998/03/09 05:43:16 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: profile.h,v 1.9 1997/04/06 08:47:37 cgd Exp */ /* diff --git a/sys/alpha/include/psl.h b/sys/alpha/include/psl.h index b54c48edbc1b..9fcb97233262 100644 --- a/sys/alpha/include/psl.h +++ b/sys/alpha/include/psl.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/alpha/include/pte.h b/sys/alpha/include/pte.h index 4981272d48fe..8ceb6a5f377e 100644 --- a/sys/alpha/include/pte.h +++ b/sys/alpha/include/pte.h @@ -1,4 +1,4 @@ -/* $Id: pte.h,v 1.1.1.1 1998/03/09 05:43:16 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: pte.h,v 1.10 1997/09/02 19:07:22 thorpej Exp */ /* diff --git a/sys/alpha/include/ptrace.h b/sys/alpha/include/ptrace.h index 27f3b2423082..d69c5474fb5b 100644 --- a/sys/alpha/include/ptrace.h +++ b/sys/alpha/include/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 - * $Id: ptrace.h,v 1.1 1998/06/10 10:55:24 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PTRACE_H_ diff --git a/sys/alpha/include/reg.h b/sys/alpha/include/reg.h index 40569a0089c6..341a39659178 100644 --- a/sys/alpha/include/reg.h +++ b/sys/alpha/include/reg.h @@ -1,4 +1,4 @@ -/* $Id: reg.h,v 1.3 1999/04/03 22:19:57 jdp Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: reg.h,v 1.3 1997/04/06 08:47:40 cgd Exp */ /* diff --git a/sys/alpha/include/resource.h b/sys/alpha/include/resource.h index 279c8db5d31d..c9253c9dc0db 100644 --- a/sys/alpha/include/resource.h +++ b/sys/alpha/include/resource.h @@ -1,4 +1,4 @@ -/* $Id: resource.h,v 1.1 1998/11/17 10:40:33 dfr Exp $ */ +/* $FreeBSD$ */ /* * Copyright 1998 Massachusetts Institute of Technology * diff --git a/sys/alpha/include/setjmp.h b/sys/alpha/include/setjmp.h index bf9bac25c528..5fcfe2ab55fc 100644 --- a/sys/alpha/include/setjmp.h +++ b/sys/alpha/include/setjmp.h @@ -1,4 +1,4 @@ -/* $Id: setjmp.h,v 1.1 1998/01/10 23:00:06 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: setjmp.h,v 1.2 1997/04/06 08:47:41 cgd Exp */ /* diff --git a/sys/alpha/include/sgmap.h b/sys/alpha/include/sgmap.h index 65299c746a72..08ccbc7b7a47 100644 --- a/sys/alpha/include/sgmap.h +++ b/sys/alpha/include/sgmap.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_SGMAP_H_ diff --git a/sys/alpha/include/signal.h b/sys/alpha/include/signal.h index eb335c063981..07eaba12425a 100644 --- a/sys/alpha/include/signal.h +++ b/sys/alpha/include/signal.h @@ -1,4 +1,4 @@ -/* $Id: signal.h,v 1.1 1998/01/10 10:13:16 jb Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: signal.h,v 1.3 1997/04/06 08:47:43 cgd Exp */ /* diff --git a/sys/alpha/include/stdarg.h b/sys/alpha/include/stdarg.h index 2fa81e60b872..2003b7bd4e1a 100644 --- a/sys/alpha/include/stdarg.h +++ b/sys/alpha/include/stdarg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: stdarg.h,v 1.7 1997/04/06 08:47:44 cgd Exp */ /*- diff --git a/sys/alpha/include/swiz.h b/sys/alpha/include/swiz.h index 5c84a49a7500..4b6397aeccec 100644 --- a/sys/alpha/include/swiz.h +++ b/sys/alpha/include/swiz.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swiz.h,v 1.1 1998/07/27 09:40:35 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SWIZ_H_ diff --git a/sys/alpha/include/sysarch.h b/sys/alpha/include/sysarch.h index e0e0a6b9b617..8eda490525ef 100644 --- a/sys/alpha/include/sysarch.h +++ b/sys/alpha/include/sysarch.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sysarch.h,v 1.1 1998/11/17 10:40:07 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/include/types.h b/sys/alpha/include/types.h index f293bc5268da..03e186996b34 100644 --- a/sys/alpha/include/types.h +++ b/sys/alpha/include/types.h @@ -1,4 +1,4 @@ -/* $Id: types.h,v 1.8 1998/07/14 05:09:42 bde Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: types.h,v 1.8 1997/04/06 08:47:45 cgd Exp */ /*- diff --git a/sys/alpha/include/varargs.h b/sys/alpha/include/varargs.h index f7a11b985ef0..d355ec8ac931 100644 --- a/sys/alpha/include/varargs.h +++ b/sys/alpha/include/varargs.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* From: NetBSD: varargs.h,v 1.7 1997/04/06 08:47:46 cgd Exp */ /*- diff --git a/sys/alpha/include/vmparam.h b/sys/alpha/include/vmparam.h index 04c62a65a546..b055549c3ab8 100644 --- a/sys/alpha/include/vmparam.h +++ b/sys/alpha/include/vmparam.h @@ -1,4 +1,4 @@ -/* $Id: vmparam.h,v 1.3 1998/06/14 13:45:15 dfr Exp $ */ +/* $FreeBSD$ */ /* From: NetBSD: vmparam.h,v 1.6 1997/09/23 23:23:23 mjacob Exp */ #ifndef _ALPHA_VMPARAM_H #define _ALPHA_VMPARAM_H diff --git a/sys/alpha/isa/isa.c b/sys/alpha/isa/isa.c index 920751f10edf..19b8ca54e3eb 100644 --- a/sys/alpha/isa/isa.c +++ b/sys/alpha/isa/isa.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa.c,v 1.16 1999/05/22 15:18:15 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/isa/isa_dma.c b/sys/alpha/isa/isa_dma.c index 2cb3e2c70d59..4fcdc6b69130 100644 --- a/sys/alpha/isa/isa_dma.c +++ b/sys/alpha/isa/isa_dma.c @@ -35,7 +35,7 @@ * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 * from: isa_dma.c,v 1.3 1999/05/09 23:56:00 peter Exp $ - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/alpha/isa/isavar.h b/sys/alpha/isa/isavar.h index 0eee66e687ca..a77cb35adc10 100644 --- a/sys/alpha/isa/isavar.h +++ b/sys/alpha/isa/isavar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isavar.h,v 1.1 1999/04/16 21:21:37 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/isa/mcclock_isa.c b/sys/alpha/isa/mcclock_isa.c index da310f036297..4eee37acb4cf 100644 --- a/sys/alpha/isa/mcclock_isa.c +++ b/sys/alpha/isa/mcclock_isa.c @@ -1,4 +1,4 @@ -/* $Id: mcclock_isa.c,v 1.5 1999/05/18 21:24:11 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: mcclock_tlsb.c,v 1.8 1998/05/13 02:50:29 thorpej Exp $ */ /* diff --git a/sys/alpha/linux/Makefile b/sys/alpha/linux/Makefile index d399ad080a37..c062c96ec177 100644 --- a/sys/alpha/linux/Makefile +++ b/sys/alpha/linux/Makefile @@ -1,6 +1,6 @@ # Makefile for syscall tables # -# $Id: Makefile,v 1.2 1997/03/29 10:48:49 peter Exp $ +# $FreeBSD$ all: @echo "make linux_sysent.c only" diff --git a/sys/alpha/linux/linux.h b/sys/alpha/linux/linux.h index 93fafa2a3712..4e5db53e99cf 100644 --- a/sys/alpha/linux/linux.h +++ b/sys/alpha/linux/linux.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux.h,v 1.34 1999/08/15 17:28:39 marcel Exp $ + * $FreeBSD$ */ #ifndef _I386_LINUX_LINUX_H_ diff --git a/sys/alpha/linux/linux_dummy.c b/sys/alpha/linux/linux_dummy.c index 5d5169d99689..c76402c31e68 100644 --- a/sys/alpha/linux/linux_dummy.c +++ b/sys/alpha/linux/linux_dummy.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_dummy.c,v 1.11 1999/08/25 11:19:01 marcel Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/linux/linux_genassym.c b/sys/alpha/linux/linux_genassym.c index 99a88a510f6f..5d962a6c04d4 100644 --- a/sys/alpha/linux/linux_genassym.c +++ b/sys/alpha/linux/linux_genassym.c @@ -1,4 +1,4 @@ -/* $Id: linux_genassym.c,v 1.8 1998/07/29 15:50:41 bde Exp $ */ +/* $FreeBSD$ */ #include diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 6c626bca01d8..871ccfbed4c1 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.47 1999/04/28 01:04:20 luoqi Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/alpha/linux/syscalls.conf b/sys/alpha/linux/syscalls.conf index d1e1425ed5a2..01e258801231 100644 --- a/sys/alpha/linux/syscalls.conf +++ b/sys/alpha/linux/syscalls.conf @@ -1,4 +1,4 @@ -# $Id: syscalls.conf,v 1.3 1997/02/22 09:38:31 peter Exp $ +# $FreeBSD$ sysnames="/dev/null" sysproto="linux_proto.h" sysproto_h=_LINUX_SYSPROTO_H_ diff --git a/sys/alpha/linux/syscalls.master b/sys/alpha/linux/syscalls.master index 369ee6ffd3a9..5e6ce0719a2a 100644 --- a/sys/alpha/linux/syscalls.master +++ b/sys/alpha/linux/syscalls.master @@ -1,4 +1,4 @@ - $Id: syscalls.master,v 1.22 1999/08/16 11:47:21 marcel Exp $ + $FreeBSD$ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 ; System call name/number master file (or rather, slave, from LINUX). diff --git a/sys/alpha/pci/apecs.c b/sys/alpha/pci/apecs.c index 9d95446f6ed1..2f8a23997146 100644 --- a/sys/alpha/pci/apecs.c +++ b/sys/alpha/pci/apecs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apecs.c,v 1.8 1999/05/20 15:33:18 gallatin Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. diff --git a/sys/alpha/pci/apecs_pci.c b/sys/alpha/pci/apecs_pci.c index 918131783426..7a0573b2f369 100644 --- a/sys/alpha/pci/apecs_pci.c +++ b/sys/alpha/pci/apecs_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apecs_pci.c,v 1.2 1999/05/08 21:58:41 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/pci/apecsvar.h b/sys/alpha/pci/apecsvar.h index 0104b4fbb246..a5fa82e2511a 100644 --- a/sys/alpha/pci/apecsvar.h +++ b/sys/alpha/pci/apecsvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ciavar.h,v 1.1 1998/07/05 12:16:15 dfr Exp $ + * $FreeBSD$ */ extern void apecs_init(void); diff --git a/sys/alpha/pci/cia.c b/sys/alpha/pci/cia.c index 43d6bc3184ed..4251e06be6fd 100644 --- a/sys/alpha/pci/cia.c +++ b/sys/alpha/pci/cia.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cia.c,v 1.21 1999/07/29 16:44:22 gallatin Exp $ + * $FreeBSD$ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. diff --git a/sys/alpha/pci/cia_pci.c b/sys/alpha/pci/cia_pci.c index fdf0016d65ce..73da41a852fc 100644 --- a/sys/alpha/pci/cia_pci.c +++ b/sys/alpha/pci/cia_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cia_pci.c,v 1.2 1999/05/08 21:58:42 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/pci/ciareg.h b/sys/alpha/pci/ciareg.h index edd79c72d881..8da36a401ed1 100644 --- a/sys/alpha/pci/ciareg.h +++ b/sys/alpha/pci/ciareg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: ciareg.h,v 1.22 1998/06/06 20:40:14 thorpej Exp $ */ /* diff --git a/sys/alpha/pci/ciavar.h b/sys/alpha/pci/ciavar.h index 6f60c1519ae6..1e50032dec90 100644 --- a/sys/alpha/pci/ciavar.h +++ b/sys/alpha/pci/ciavar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ extern void cia_init(void); diff --git a/sys/alpha/pci/lca.c b/sys/alpha/pci/lca.c index d60a6646ab63..a510004ada97 100644 --- a/sys/alpha/pci/lca.c +++ b/sys/alpha/pci/lca.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lca.c,v 1.9 1999/05/20 15:33:23 gallatin Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/pci/lca_pci.c b/sys/alpha/pci/lca_pci.c index f74840fa4a0c..10a5a2aad016 100644 --- a/sys/alpha/pci/lca_pci.c +++ b/sys/alpha/pci/lca_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lca_pci.c,v 1.2 1999/05/08 21:58:43 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/alpha/pci/lcavar.h b/sys/alpha/pci/lcavar.h index 53f036dea007..1619539b5a2c 100644 --- a/sys/alpha/pci/lcavar.h +++ b/sys/alpha/pci/lcavar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ extern void lca_init(void); diff --git a/sys/alpha/pci/pcibus.c b/sys/alpha/pci/pcibus.c index bcde9ecb9b39..d49a57c60d4b 100644 --- a/sys/alpha/pci/pcibus.c +++ b/sys/alpha/pci/pcibus.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.16 1999/07/01 22:48:30 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/alpha/pci/pcibus.h b/sys/alpha/pci/pcibus.h index 38b51b772e9c..27c5ffa00ef8 100644 --- a/sys/alpha/pci/pcibus.h +++ b/sys/alpha/pci/pcibus.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pcibus.h,v 1.1 1998/06/10 10:55:38 dfr Exp $ + * $FreeBSD$ */ void pci_init_resources(void); diff --git a/sys/alpha/pci/tsunami_pci.c b/sys/alpha/pci/tsunami_pci.c index 1af09c1c8295..6f7af8820f1f 100644 --- a/sys/alpha/pci/tsunami_pci.c +++ b/sys/alpha/pci/tsunami_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/alpha/pci/tsunamireg.h b/sys/alpha/pci/tsunamireg.h index 64e4fcd2d6d5..60b19a3bc65e 100644 --- a/sys/alpha/pci/tsunamireg.h +++ b/sys/alpha/pci/tsunamireg.h @@ -1,4 +1,4 @@ -/* $Id: tsunamireg.h,v 1.1 1999/05/26 23:22:03 gallatin Exp $ */ +/* $FreeBSD$ */ /* * 21271 Chipset registers and constants. diff --git a/sys/alpha/pci/tsunamivar.h b/sys/alpha/pci/tsunamivar.h index 0c3411562436..f82351f702f2 100644 --- a/sys/alpha/pci/tsunamivar.h +++ b/sys/alpha/pci/tsunamivar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ extern void tsunami_init(void); diff --git a/sys/alpha/tc/am7990.c b/sys/alpha/tc/am7990.c index 41c17330b9ce..a27d712d7a67 100644 --- a/sys/alpha/tc/am7990.c +++ b/sys/alpha/tc/am7990.c @@ -1,4 +1,4 @@ -/* $Id: am7990.c,v 1.3 1999/05/10 15:48:01 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: am7990.c,v 1.43 1998/03/29 22:36:42 mycroft Exp $ */ /*- diff --git a/sys/alpha/tc/am7990reg.h b/sys/alpha/tc/am7990reg.h index 71d92d970a30..dc3f56a520b5 100644 --- a/sys/alpha/tc/am7990reg.h +++ b/sys/alpha/tc/am7990reg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: am7990reg.h,v 1.4 1997/03/27 21:01:49 veego Exp $ */ /*- diff --git a/sys/alpha/tc/am7990var.h b/sys/alpha/tc/am7990var.h index cce6c252141c..a5968fa8fd03 100644 --- a/sys/alpha/tc/am7990var.h +++ b/sys/alpha/tc/am7990var.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: am7990var.h,v 1.18 1998/01/12 09:23:16 thorpej Exp $ */ /*- diff --git a/sys/alpha/tc/ascvar.h b/sys/alpha/tc/ascvar.h index 713292521406..eafdeb3bd1ee 100644 --- a/sys/alpha/tc/ascvar.h +++ b/sys/alpha/tc/ascvar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: ascvar.h,v 1.4 1997/11/28 18:23:40 mhitch Exp $ */ diff --git a/sys/alpha/tc/esp.c b/sys/alpha/tc/esp.c index 336e0fb8c123..7bba66d2686f 100644 --- a/sys/alpha/tc/esp.c +++ b/sys/alpha/tc/esp.c @@ -1,4 +1,4 @@ -/* $Id: esp.c,v 1.1 1998/08/20 08:27:10 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: esp.c,v 1.8.4.2 1996/09/10 17:28:16 cgd Exp $ */ /* diff --git a/sys/alpha/tc/espreg.h b/sys/alpha/tc/espreg.h index 4f30d1cae082..5c6ddb474eac 100644 --- a/sys/alpha/tc/espreg.h +++ b/sys/alpha/tc/espreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: espreg.h,v 1.2.4.1 1996/09/10 17:28:17 cgd Exp $ */ /* diff --git a/sys/alpha/tc/espvar.h b/sys/alpha/tc/espvar.h index b64b77402685..72e26411efc0 100644 --- a/sys/alpha/tc/espvar.h +++ b/sys/alpha/tc/espvar.h @@ -1,4 +1,4 @@ -/* $Id: espvar.h,v 1.1 1998/08/20 08:27:10 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: espvar.h,v 1.3.4.1 1996/09/10 17:28:18 cgd Exp $ */ /* diff --git a/sys/alpha/tc/if_le_dec.c b/sys/alpha/tc/if_le_dec.c index 4befcf474b2e..b607dd082cb8 100644 --- a/sys/alpha/tc/if_le_dec.c +++ b/sys/alpha/tc/if_le_dec.c @@ -1,4 +1,4 @@ -/* $Id: if_le_dec.c,v 1.1 1998/08/20 08:27:10 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: if_le_dec.c,v 1.8 1997/07/22 04:32:21 jonathan Exp $ */ /*- diff --git a/sys/alpha/tc/if_le_ioasic.c b/sys/alpha/tc/if_le_ioasic.c index d672e77ee381..2988db2f6a86 100644 --- a/sys/alpha/tc/if_le_ioasic.c +++ b/sys/alpha/tc/if_le_ioasic.c @@ -1,4 +1,4 @@ -/* $Id: if_le_ioasic.c,v 1.1 1998/08/20 08:27:10 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: if_le_ioasic.c,v 1.10 1998/01/19 02:49:48 thorpej Exp $ */ /* diff --git a/sys/alpha/tc/if_levar.h b/sys/alpha/tc/if_levar.h index 53f3f80c28b3..9353ab219754 100644 --- a/sys/alpha/tc/if_levar.h +++ b/sys/alpha/tc/if_levar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: if_levar.h,v 1.4 1997/03/15 18:12:07 is Exp $ */ /*- diff --git a/sys/alpha/tc/ioasic.c b/sys/alpha/tc/ioasic.c index 5771d222a60a..d779e56315a9 100644 --- a/sys/alpha/tc/ioasic.c +++ b/sys/alpha/tc/ioasic.c @@ -1,4 +1,4 @@ -/* $Id: ioasic.c,v 1.4 1999/05/10 16:36:42 peter Exp $ */ +/* $FreeBSD$ */ /* from $NetBSD: ioasic.c,v 1.19 1998/05/27 00:18:13 thorpej Exp $ */ /*- diff --git a/sys/alpha/tc/ioasicreg.h b/sys/alpha/tc/ioasicreg.h index f7ca6d6dd2ee..d1f9db8a2c93 100644 --- a/sys/alpha/tc/ioasicreg.h +++ b/sys/alpha/tc/ioasicreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: ioasicreg.h,v 1.2 1997/04/06 22:30:28 cgd Exp $ */ /* diff --git a/sys/alpha/tc/ioasicvar.h b/sys/alpha/tc/ioasicvar.h index cb48da0ef57a..d7747a7546b6 100644 --- a/sys/alpha/tc/ioasicvar.h +++ b/sys/alpha/tc/ioasicvar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: ioasicvar.h,v 1.5 1998/01/19 02:50:19 thorpej Exp $ */ /* diff --git a/sys/alpha/tc/mcclock_ioasic.c b/sys/alpha/tc/mcclock_ioasic.c index 813d60d33726..adbede9ecb8e 100644 --- a/sys/alpha/tc/mcclock_ioasic.c +++ b/sys/alpha/tc/mcclock_ioasic.c @@ -1,4 +1,4 @@ -/* $Id: mcclock_ioasic.c,v 1.1 1998/08/20 08:27:10 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: mcclock_ioasic.c,v 1.8 1997/09/02 13:20:14 thorpej Exp $ */ /* diff --git a/sys/alpha/tc/sticreg.h b/sys/alpha/tc/sticreg.h index 31e30e5d3e8c..7101582da71b 100644 --- a/sys/alpha/tc/sticreg.h +++ b/sys/alpha/tc/sticreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: sticreg.h,v 1.1 1997/11/08 07:27:50 jonathan Exp $ */ /* diff --git a/sys/alpha/tc/sticvar.h b/sys/alpha/tc/sticvar.h index fd9ed4617118..be394eadded2 100644 --- a/sys/alpha/tc/sticvar.h +++ b/sys/alpha/tc/sticvar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: sticvar.h,v 1.1 1997/11/08 07:27:51 jonathan Exp $ */ /* diff --git a/sys/alpha/tc/tc.c b/sys/alpha/tc/tc.c index b6b51db3e77b..16d155224893 100644 --- a/sys/alpha/tc/tc.c +++ b/sys/alpha/tc/tc.c @@ -1,4 +1,4 @@ -/* $Id: tc.c,v 1.5 1999/07/01 22:49:03 peter Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/alpha/tc/tcasic.c b/sys/alpha/tc/tcasic.c index 683f3d368b93..493b5ac0c0fb 100644 --- a/sys/alpha/tc/tcasic.c +++ b/sys/alpha/tc/tcasic.c @@ -1,4 +1,4 @@ -/* $Id: tcasic.c,v 1.4 1999/05/10 15:54:58 peter Exp $ */ +/* $FreeBSD$ */ /* from $NetBSD: tcasic.c,v 1.23 1998/05/14 00:01:31 thorpej Exp $ */ /* diff --git a/sys/alpha/tc/tcdevs.h b/sys/alpha/tc/tcdevs.h index cdbae33005e2..993fd3903572 100644 --- a/sys/alpha/tc/tcdevs.h +++ b/sys/alpha/tc/tcdevs.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcdevs.h,v 1.12 1998/06/18 23:29:46 jonathan Exp $ */ /* diff --git a/sys/alpha/tc/tcdevs_data.h b/sys/alpha/tc/tcdevs_data.h index 61c054c12fb8..214fcd0c8883 100644 --- a/sys/alpha/tc/tcdevs_data.h +++ b/sys/alpha/tc/tcdevs_data.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcdevs_data.h,v 1.12 1998/06/18 23:29:46 jonathan Exp $ */ /* diff --git a/sys/alpha/tc/tcds.c b/sys/alpha/tc/tcds.c index 6736fec74768..b45737d7322d 100644 --- a/sys/alpha/tc/tcds.c +++ b/sys/alpha/tc/tcds.c @@ -1,4 +1,4 @@ -/* $Id: tcds.c,v 1.2 1999/05/08 21:58:50 dfr Exp $ */ +/* $FreeBSD$ */ /* from $NetBSD: tcds.c,v 1.25 1998/05/26 23:43:05 thorpej Exp $ */ /*- diff --git a/sys/alpha/tc/tcds_dma.c b/sys/alpha/tc/tcds_dma.c index d07811e799e8..f69251506b83 100644 --- a/sys/alpha/tc/tcds_dma.c +++ b/sys/alpha/tc/tcds_dma.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcds_dma.c,v 1.6.4.1 1996/09/10 17:28:19 cgd Exp $ */ /* diff --git a/sys/alpha/tc/tcdsreg.h b/sys/alpha/tc/tcdsreg.h index 6c24281575cf..da48eb802f1d 100644 --- a/sys/alpha/tc/tcdsreg.h +++ b/sys/alpha/tc/tcdsreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcdsreg.h,v 1.1 1995/12/20 00:40:36 cgd Exp $ */ /* diff --git a/sys/alpha/tc/tcdsvar.h b/sys/alpha/tc/tcdsvar.h index e1c15e8aaf76..72b631bfc387 100644 --- a/sys/alpha/tc/tcdsvar.h +++ b/sys/alpha/tc/tcdsvar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcdsvar.h,v 1.3.4.1 1996/09/10 17:28:20 cgd Exp $ */ /* diff --git a/sys/alpha/tc/tcreg.h b/sys/alpha/tc/tcreg.h index 80751688c711..e64eaab955b0 100644 --- a/sys/alpha/tc/tcreg.h +++ b/sys/alpha/tc/tcreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcreg.h,v 1.1 1995/12/20 00:48:36 cgd Exp $ */ /* diff --git a/sys/alpha/tc/tcvar.h b/sys/alpha/tc/tcvar.h index 17e72096826e..d23ad4a3e011 100644 --- a/sys/alpha/tc/tcvar.h +++ b/sys/alpha/tc/tcvar.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: tcvar.h,v 1.13 1998/05/22 21:15:48 thorpej Exp $ */ /* diff --git a/sys/alpha/tlsb/dwlpx.c b/sys/alpha/tlsb/dwlpx.c index 1df3e65a7e6f..fbf21ec82074 100644 --- a/sys/alpha/tlsb/dwlpx.c +++ b/sys/alpha/tlsb/dwlpx.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: dwlpx.c,v 1.9 1999/05/08 21:58:51 dfr Exp $ + * $FreeBSD$ */ #include "opt_simos.h" diff --git a/sys/alpha/tlsb/dwlpxreg.h b/sys/alpha/tlsb/dwlpxreg.h index 86a5686da346..1eb95e9bd43f 100644 --- a/sys/alpha/tlsb/dwlpxreg.h +++ b/sys/alpha/tlsb/dwlpxreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: dwlpxreg.h,v 1.9 1998/03/21 22:02:42 mjacob Exp $ */ /* diff --git a/sys/alpha/tlsb/gbusvar.h b/sys/alpha/tlsb/gbusvar.h index 5ece6e0c8504..cc0bd8e47835 100644 --- a/sys/alpha/tlsb/gbusvar.h +++ b/sys/alpha/tlsb/gbusvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: gbusvar.h,v 1.2 1998/06/10 20:40:59 dfr Exp $ + * $FreeBSD$ */ /* $NetBSD: gbusvar.h,v 1.1 1998/05/13 02:50:29 thorpej Exp $ */ diff --git a/sys/alpha/tlsb/kftxx.c b/sys/alpha/tlsb/kftxx.c index 889f97d575b5..0daf0aaae923 100644 --- a/sys/alpha/tlsb/kftxx.c +++ b/sys/alpha/tlsb/kftxx.c @@ -1,4 +1,4 @@ -/* $Id: kftxx.c,v 1.5 1999/05/08 21:58:53 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: kftxx.c,v 1.9 1998/05/14 00:01:32 thorpej Exp $ */ /* diff --git a/sys/alpha/tlsb/kftxxreg.h b/sys/alpha/tlsb/kftxxreg.h index dc2036b266e0..8ebeb3169732 100644 --- a/sys/alpha/tlsb/kftxxreg.h +++ b/sys/alpha/tlsb/kftxxreg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: kftxxreg.h,v 1.4 1997/06/04 01:47:15 cgd Exp $ */ /* diff --git a/sys/alpha/tlsb/kftxxvar.h b/sys/alpha/tlsb/kftxxvar.h index 56168e62e8e1..2bdb24882dd2 100644 --- a/sys/alpha/tlsb/kftxxvar.h +++ b/sys/alpha/tlsb/kftxxvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kftxxvar.h,v 1.2 1998/06/10 20:48:03 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/alpha/tlsb/mcclock_tlsb.c b/sys/alpha/tlsb/mcclock_tlsb.c index 535e3908711d..02759b9afb4e 100644 --- a/sys/alpha/tlsb/mcclock_tlsb.c +++ b/sys/alpha/tlsb/mcclock_tlsb.c @@ -1,4 +1,4 @@ -/* $Id: mcclock_tlsb.c,v 1.4 1999/05/08 21:58:53 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: mcclock_tlsb.c,v 1.8 1998/05/13 02:50:29 thorpej Exp $ */ /* diff --git a/sys/alpha/tlsb/tlsbvar.h b/sys/alpha/tlsb/tlsbvar.h index 6b72785216f6..f8690b4a40c9 100644 --- a/sys/alpha/tlsb/tlsbvar.h +++ b/sys/alpha/tlsb/tlsbvar.h @@ -1,4 +1,4 @@ -/* $Id: tlsbvar.h,v 1.1 1998/06/10 10:55:58 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: tlsbvar.h,v 1.5 1998/05/13 23:23:23 thorpej Exp $ */ /* diff --git a/sys/alpha/tlsb/zs_tlsb.c b/sys/alpha/tlsb/zs_tlsb.c index 04ea7ee3d1c0..37a94676f676 100644 --- a/sys/alpha/tlsb/zs_tlsb.c +++ b/sys/alpha/tlsb/zs_tlsb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zs_tlsb.c,v 1.15 1999/07/29 01:02:45 mdodd Exp $ + * $FreeBSD$ */ /* * This driver is a hopeless hack to get the SimOS console working. A real diff --git a/sys/alpha/tlsb/zsreg.h b/sys/alpha/tlsb/zsreg.h index 36cda9348f34..f087a7ba55fe 100644 --- a/sys/alpha/tlsb/zsreg.h +++ b/sys/alpha/tlsb/zsreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zsreg.h,v 1.1 1998/06/10 10:56:01 dfr Exp $ + * $FreeBSD$ */ #define ZSC_CHANNELA 0x80 diff --git a/sys/alpha/tlsb/zsvar.h b/sys/alpha/tlsb/zsvar.h index 7ff35062d59b..84701544274b 100644 --- a/sys/alpha/tlsb/zsvar.h +++ b/sys/alpha/tlsb/zsvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ int zs_cnattach(vm_offset_t base, vm_offset_t offset); diff --git a/sys/amd64/Makefile b/sys/amd64/Makefile index 28362ba9dc77..c173c4fb1d71 100644 --- a/sys/amd64/Makefile +++ b/sys/amd64/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/05/31 22:40:49 steve Exp $ +# $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/11/93 # Makefile for i386 links, tags file diff --git a/sys/amd64/amd64/amd64_mem.c b/sys/amd64/amd64/amd64_mem.c index d971aa95f02e..33342b92227c 100644 --- a/sys/amd64/amd64/amd64_mem.c +++ b/sys/amd64/amd64/amd64_mem.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i686_mem.c,v 1.4 1999/07/20 06:58:51 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/amd64/apic_vector.S b/sys/amd64/amd64/apic_vector.S index 6a7bcf059a12..f484971eab2b 100644 --- a/sys/amd64/amd64/apic_vector.S +++ b/sys/amd64/amd64/apic_vector.S @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: apic_vector.s,v 1.43 1999/07/20 06:52:35 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/amd64/amd64/atomic.c b/sys/amd64/amd64/atomic.c index d7a5c495d6df..c19ba9e027b2 100644 --- a/sys/amd64/amd64/atomic.c +++ b/sys/amd64/amd64/atomic.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* This file creates publically callable functions to perform various diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index 4c5dbd34bb5b..f678609719d0 100644 --- a/sys/amd64/amd64/autoconf.c +++ b/sys/amd64/amd64/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.136 1999/08/22 23:49:00 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/bios.c b/sys/amd64/amd64/bios.c index baf20187da6c..5fc0a4296738 100644 --- a/sys/amd64/amd64/bios.c +++ b/sys/amd64/amd64/bios.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bios.c,v 1.21 1999/08/25 06:56:36 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/busdma_machdep.c b/sys/amd64/amd64/busdma_machdep.c index bebec68ceca1..c16333ced110 100644 --- a/sys/amd64/amd64/busdma_machdep.c +++ b/sys/amd64/amd64/busdma_machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: busdma_machdep.c,v 1.13 1999/07/02 05:12:11 mjacob Exp $ + * $FreeBSD$ */ #include diff --git a/sys/amd64/amd64/cpu_switch.S b/sys/amd64/amd64/cpu_switch.S index fb6c1ff93688..ee277419c360 100644 --- a/sys/amd64/amd64/cpu_switch.S +++ b/sys/amd64/amd64/cpu_switch.S @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swtch.s,v 1.85 1999/07/10 15:27:55 bde Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/amd64/db_disasm.c b/sys/amd64/amd64/db_disasm.c index b3b30b13f3f5..16e8106d5e73 100644 --- a/sys/amd64/amd64/db_disasm.c +++ b/sys/amd64/amd64/db_disasm.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_disasm.c,v 1.21 1998/07/08 10:53:56 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/db_interface.c b/sys/amd64/amd64/db_interface.c index 0ad6dfbfd56a..cb7f228d671a 100644 --- a/sys/amd64/amd64/db_interface.c +++ b/sys/amd64/amd64/db_interface.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_interface.c,v 1.44 1999/04/28 01:03:17 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/db_trace.c b/sys/amd64/amd64/db_trace.c index 6a361a0052f9..074b4e639bcb 100644 --- a/sys/amd64/amd64/db_trace.c +++ b/sys/amd64/amd64/db_trace.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_trace.c,v 1.33 1999/01/28 01:59:50 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/amd64/amd64/elf_machdep.c b/sys/amd64/amd64/elf_machdep.c index 2814f066e0f0..51a2e77541f6 100644 --- a/sys/amd64/amd64/elf_machdep.c +++ b/sys/amd64/amd64/elf_machdep.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elf_machdep.c,v 1.4 1998/12/07 21:58:18 archie Exp $ + * $FreeBSD$ */ #include diff --git a/sys/amd64/amd64/exception.S b/sys/amd64/amd64/exception.S index dce98e87e5b6..f19622475bb8 100644 --- a/sys/amd64/amd64/exception.S +++ b/sys/amd64/amd64/exception.S @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: exception.s,v 1.62 1999/06/27 21:31:43 alc Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/amd64/exception.s b/sys/amd64/amd64/exception.s index dce98e87e5b6..f19622475bb8 100644 --- a/sys/amd64/amd64/exception.s +++ b/sys/amd64/amd64/exception.s @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: exception.s,v 1.62 1999/06/27 21:31:43 alc Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c index a99b5674ea4b..374c06617013 100644 --- a/sys/amd64/amd64/fpu.c +++ b/sys/amd64/amd64/fpu.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.75 1999/07/26 05:47:31 cracauer Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/amd64/genassym.c b/sys/amd64/amd64/genassym.c index 9f17b0c7d616..2df518268216 100644 --- a/sys/amd64/amd64/genassym.c +++ b/sys/amd64/amd64/genassym.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91 - * $Id: genassym.c,v 1.75 1999/07/29 08:33:00 peter Exp $ + * $FreeBSD$ */ #include "opt_user_ldt.h" diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index ba53f4eab87b..0f1e86d67737 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp - * $Id: identcpu.c,v 1.71 1999/07/06 13:23:56 peter Exp $ + * $FreeBSD$ */ #include "opt_cpu.h" diff --git a/sys/amd64/amd64/initcpu.c b/sys/amd64/amd64/initcpu.c index a58caadce1b4..a56bb36d91a5 100644 --- a/sys/amd64/amd64/initcpu.c +++ b/sys/amd64/amd64/initcpu.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: initcpu.c,v 1.17 1999/01/16 13:41:33 kato Exp $ + * $FreeBSD$ */ #include "opt_cpu.h" diff --git a/sys/amd64/amd64/legacy.c b/sys/amd64/amd64/legacy.c index 0c28185a347b..22e98eda7106 100644 --- a/sys/amd64/amd64/legacy.c +++ b/sys/amd64/amd64/legacy.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: nexus.c,v 1.15 1999/08/23 19:23:33 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/locore.S b/sys/amd64/amd64/locore.S index 95b55613bf47..f2627266353c 100644 --- a/sys/amd64/amd64/locore.S +++ b/sys/amd64/amd64/locore.S @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.124 1999/06/18 14:32:13 bde Exp $ + * $FreeBSD$ * * originally from: locore.s, by William F. Jolitz * diff --git a/sys/amd64/amd64/locore.s b/sys/amd64/amd64/locore.s index 95b55613bf47..f2627266353c 100644 --- a/sys/amd64/amd64/locore.s +++ b/sys/amd64/amd64/locore.s @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.124 1999/06/18 14:32:13 bde Exp $ + * $FreeBSD$ * * originally from: locore.s, by William F. Jolitz * diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index dfde63760a87..a3c33bfc293a 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.358 1999/08/09 10:34:43 phk Exp $ + * $FreeBSD$ */ #include "apm.h" diff --git a/sys/amd64/amd64/mem.c b/sys/amd64/amd64/mem.c index c835a6ee2cce..ab31e7095ea3 100644 --- a/sys/amd64/amd64/mem.c +++ b/sys/amd64/amd64/mem.c @@ -38,7 +38,7 @@ * * from: Utah $Hdr: mem.c 1.13 89/10/08$ * from: @(#)mem.c 7.2 (Berkeley) 5/9/91 - * $Id: mem.c,v 1.64 1999/08/23 20:58:38 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c index 969cd0892495..283ed1701a3c 100644 --- a/sys/amd64/amd64/mp_machdep.c +++ b/sys/amd64/amd64/mp_machdep.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/amd64/mpboot.S b/sys/amd64/amd64/mpboot.S index 962bafcc7792..d21354e3c793 100644 --- a/sys/amd64/amd64/mpboot.S +++ b/sys/amd64/amd64/mpboot.S @@ -31,7 +31,7 @@ * mpboot.s: FreeBSD machine support for the Intel MP Spec * multiprocessor systems. * - * $Id: mpboot.s,v 1.10 1999/04/28 01:03:22 luoqi Exp $ + * $FreeBSD$ */ #include /* miscellaneous asm macros */ diff --git a/sys/amd64/amd64/mptable.c b/sys/amd64/amd64/mptable.c index 969cd0892495..283ed1701a3c 100644 --- a/sys/amd64/amd64/mptable.c +++ b/sys/amd64/amd64/mptable.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/amd64/nexus.c b/sys/amd64/amd64/nexus.c index 0c28185a347b..22e98eda7106 100644 --- a/sys/amd64/amd64/nexus.c +++ b/sys/amd64/amd64/nexus.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: nexus.c,v 1.15 1999/08/23 19:23:33 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c index 791060a03f8c..6129ed86f48f 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 - * $Id: pmap.c,v 1.245 1999/08/10 04:10:57 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/prof_machdep.c b/sys/amd64/amd64/prof_machdep.c index 34479056ed73..d934ee56eee6 100644 --- a/sys/amd64/amd64/prof_machdep.c +++ b/sys/amd64/amd64/prof_machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: prof_machdep.c,v 1.12 1999/05/06 09:44:55 bde Exp $ + * $FreeBSD$ */ #ifdef GUPROF diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S index 7093dbb86df4..ae99af947ab8 100644 --- a/sys/amd64/amd64/support.S +++ b/sys/amd64/amd64/support.S @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: support.s,v 1.62 1999/03/30 09:00:40 phk Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/amd64/support.s b/sys/amd64/amd64/support.s index 7093dbb86df4..ae99af947ab8 100644 --- a/sys/amd64/amd64/support.s +++ b/sys/amd64/amd64/support.s @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: support.s,v 1.62 1999/03/30 09:00:40 phk Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/amd64/swtch.s b/sys/amd64/amd64/swtch.s index fb6c1ff93688..ee277419c360 100644 --- a/sys/amd64/amd64/swtch.s +++ b/sys/amd64/amd64/swtch.s @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swtch.s,v 1.85 1999/07/10 15:27:55 bde Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c index 76b45ff8c329..0f5930ca7a0a 100644 --- a/sys/amd64/amd64/sys_machdep.c +++ b/sys/amd64/amd64/sys_machdep.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91 - * $Id: sys_machdep.c,v 1.41 1999/04/28 01:03:25 luoqi Exp $ + * $FreeBSD$ * */ diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index e717563e7ed5..5e3ed49ee48a 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.139 1999/06/18 14:32:16 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/tsc.c b/sys/amd64/amd64/tsc.c index 188e20bc0f47..8a3e1c93030c 100644 --- a/sys/amd64/amd64/tsc.c +++ b/sys/amd64/amd64/tsc.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.142 1999/07/29 01:20:47 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/amd64/vm_machdep.c b/sys/amd64/amd64/vm_machdep.c index 21bc706129ce..b907f27c034c 100644 --- a/sys/amd64/amd64/vm_machdep.c +++ b/sys/amd64/amd64/vm_machdep.c @@ -38,7 +38,7 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.124 1999/07/22 06:04:01 alc Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index f889546e112f..2011cfea73e6 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -15,7 +15,7 @@ # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC,v 1.182 1999/08/15 09:54:56 phk Exp $ +# $FreeBSD$ machine i386 cpu I386_CPU diff --git a/sys/amd64/include/apicreg.h b/sys/amd64/include/apicreg.h index 55e44e0bec2f..38c70709e7c2 100644 --- a/sys/amd64/include/apicreg.h +++ b/sys/amd64/include/apicreg.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apic.h,v 1.11 1997/08/04 17:31:24 fsmp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_APIC_H_ diff --git a/sys/amd64/include/asm.h b/sys/amd64/include/asm.h index f1023173b3d4..7ac124366024 100644 --- a/sys/amd64/include/asm.h +++ b/sys/amd64/include/asm.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)DEFS.h 5.1 (Berkeley) 4/23/90 - * $Id: asm.h,v 1.3 1997/04/15 14:06:34 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ASM_H_ diff --git a/sys/amd64/include/asmacros.h b/sys/amd64/include/asmacros.h index 00bdf7affe40..92b9e1a5d700 100644 --- a/sys/amd64/include/asmacros.h +++ b/sys/amd64/include/asmacros.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: asmacros.h,v 1.16 1997/04/22 06:55:32 jdp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ASMACROS_H_ diff --git a/sys/amd64/include/atomic.h b/sys/amd64/include/atomic.h index e9f9403f6198..b3fd514cbc91 100644 --- a/sys/amd64/include/atomic.h +++ b/sys/amd64/include/atomic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atomic.h,v 1.4 1999/07/23 23:45:19 alc Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ATOMIC_H_ #define _MACHINE_ATOMIC_H_ diff --git a/sys/amd64/include/bus.h b/sys/amd64/include/bus.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/amd64/include/bus.h +++ b/sys/amd64/include/bus.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/amd64/include/bus_amd64.h b/sys/amd64/include/bus_amd64.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/amd64/include/bus_amd64.h +++ b/sys/amd64/include/bus_amd64.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/amd64/include/bus_at386.h b/sys/amd64/include/bus_at386.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/amd64/include/bus_at386.h +++ b/sys/amd64/include/bus_at386.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/amd64/include/bus_dma.h b/sys/amd64/include/bus_dma.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/amd64/include/bus_dma.h +++ b/sys/amd64/include/bus_dma.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/amd64/include/bus_memio.h b/sys/amd64/include/bus_memio.h index ee58d5a24ef2..3533a671fe8d 100644 --- a/sys/amd64/include/bus_memio.h +++ b/sys/amd64/include/bus_memio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_BUS_MEMIO_H_ diff --git a/sys/amd64/include/bus_pio.h b/sys/amd64/include/bus_pio.h index 4eb051e18190..8742dd195e0b 100644 --- a/sys/amd64/include/bus_pio.h +++ b/sys/amd64/include/bus_pio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_BUS_PIO_H_ diff --git a/sys/amd64/include/clock.h b/sys/amd64/include/clock.h index 03e2d79e20f6..f5c654a6a64f 100644 --- a/sys/amd64/include/clock.h +++ b/sys/amd64/include/clock.h @@ -3,7 +3,7 @@ * Garrett Wollman, September 1994. * This file is in the public domain. * - * $Id: clock.h,v 1.34 1998/03/05 21:45:42 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CLOCK_H_ diff --git a/sys/amd64/include/cpu.h b/sys/amd64/include/cpu.h index d3e4ad47b9f0..4a2fe79f41ad 100644 --- a/sys/amd64/include/cpu.h +++ b/sys/amd64/include/cpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91 - * $Id: cpu.h,v 1.39 1999/04/23 20:22:44 dt Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CPU_H_ diff --git a/sys/amd64/include/cpufunc.h b/sys/amd64/include/cpufunc.h index 9c72d0db5327..9618b252019f 100644 --- a/sys/amd64/include/cpufunc.h +++ b/sys/amd64/include/cpufunc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.89 1999/08/19 00:32:48 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/cputypes.h b/sys/amd64/include/cputypes.h index ece2509927ab..93e01e26287d 100644 --- a/sys/amd64/include/cputypes.h +++ b/sys/amd64/include/cputypes.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cputypes.h,v 1.11 1998/05/22 00:03:23 des Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CPUTYPES_H_ diff --git a/sys/amd64/include/db_machdep.h b/sys/amd64/include/db_machdep.h index aaa32f66661f..d5022d81e92d 100644 --- a/sys/amd64/include/db_machdep.h +++ b/sys/amd64/include/db_machdep.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. * - * $Id: db_machdep.h,v 1.12 1997/02/22 09:34:24 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_DB_MACHDEP_H_ diff --git a/sys/amd64/include/elf.h b/sys/amd64/include/elf.h index ac0cce3ee0e9..756c08c02042 100644 --- a/sys/amd64/include/elf.h +++ b/sys/amd64/include/elf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf.h,v 1.6 1999/02/07 23:49:55 jdp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ELF_H_ diff --git a/sys/amd64/include/exec.h b/sys/amd64/include/exec.h index 7670fd1cee1a..c233b09655b2 100644 --- a/sys/amd64/include/exec.h +++ b/sys/amd64/include/exec.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.1 (Berkeley) 6/11/93 - * $Id$ + * $FreeBSD$ */ #ifndef _EXEC_H_ diff --git a/sys/amd64/include/float.h b/sys/amd64/include/float.h index a0296ecc8c05..5cdbc97f7d4b 100644 --- a/sys/amd64/include/float.h +++ b/sys/amd64/include/float.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)float.h 7.1 (Berkeley) 5/8/90 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_FLOAT_H_ diff --git a/sys/amd64/include/floatingpoint.h b/sys/amd64/include/floatingpoint.h index cd2561f8b9d1..c3e674f7f30c 100644 --- a/sys/amd64/include/floatingpoint.h +++ b/sys/amd64/include/floatingpoint.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#) floatingpoint.h 1.0 (Berkeley) 9/23/93 - * $Id: floatingpoint.h,v 1.8 1997/02/22 09:34:37 peter Exp $ + * $FreeBSD$ */ #ifndef _FLOATINGPOINT_H_ diff --git a/sys/amd64/include/fpu.h b/sys/amd64/include/fpu.h index 10384c6ebf9b..2e7a31d25082 100644 --- a/sys/amd64/include/fpu.h +++ b/sys/amd64/include/fpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)npx.h 5.3 (Berkeley) 1/18/91 - * $Id: npx.h,v 1.14 1997/07/20 11:06:44 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/frame.h b/sys/amd64/include/frame.h index f339f01c43c1..b212d6c7b77f 100644 --- a/sys/amd64/include/frame.h +++ b/sys/amd64/include/frame.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)frame.h 5.2 (Berkeley) 1/18/91 - * $Id: frame.h,v 1.17 1999/05/11 16:29:01 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_FRAME_H_ diff --git a/sys/amd64/include/ieeefp.h b/sys/amd64/include/ieeefp.h index ab4d529ea94c..3c9c49ddda34 100644 --- a/sys/amd64/include/ieeefp.h +++ b/sys/amd64/include/ieeefp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#) ieeefp.h 1.0 (Berkeley) 9/23/93 - * $Id: ieeefp.h,v 1.5 1997/02/22 09:34:41 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/md_var.h b/sys/amd64/include/md_var.h index 491eb46b024a..755e1e72cce2 100644 --- a/sys/amd64/include/md_var.h +++ b/sys/amd64/include/md_var.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: md_var.h,v 1.29 1999/04/28 01:04:02 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MD_VAR_H_ diff --git a/sys/amd64/include/mptable.h b/sys/amd64/include/mptable.h index 969cd0892495..283ed1701a3c 100644 --- a/sys/amd64/include/mptable.h +++ b/sys/amd64/include/mptable.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/amd64/include/npx.h b/sys/amd64/include/npx.h index 10384c6ebf9b..2e7a31d25082 100644 --- a/sys/amd64/include/npx.h +++ b/sys/amd64/include/npx.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)npx.h 5.3 (Berkeley) 1/18/91 - * $Id: npx.h,v 1.14 1997/07/20 11:06:44 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/pc/bios.h b/sys/amd64/include/pc/bios.h index 1ea2f9273191..3a317863812f 100644 --- a/sys/amd64/include/pc/bios.h +++ b/sys/amd64/include/pc/bios.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bios.h,v 1.5 1999/08/18 02:20:04 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/pc/display.h b/sys/amd64/include/pc/display.h index 9e64a3f13307..cd2d5ff35b73 100644 --- a/sys/amd64/include/pc/display.h +++ b/sys/amd64/include/pc/display.h @@ -1,7 +1,7 @@ /* * IBM PC display definitions * - * $Id$ + * $FreeBSD$ */ /* Color attributes for foreground text */ diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h index 5cee924dd9ff..ed3044cc4d6a 100644 --- a/sys/amd64/include/pcb.h +++ b/sys/amd64/include/pcb.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)pcb.h 5.10 (Berkeley) 5/12/91 - * $Id: pcb.h,v 1.28 1999/06/01 18:20:06 jlemon Exp $ + * $FreeBSD$ */ #ifndef _I386_PCB_H_ diff --git a/sys/amd64/include/pcb_ext.h b/sys/amd64/include/pcb_ext.h index 36d07e9e8cec..154cf949ba0b 100644 --- a/sys/amd64/include/pcb_ext.h +++ b/sys/amd64/include/pcb_ext.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_PCB_EXT_H_ diff --git a/sys/amd64/include/pci_cfgreg.h b/sys/amd64/include/pci_cfgreg.h index 44556e7731ad..34b3fc54aaa3 100644 --- a/sys/amd64/include/pci_cfgreg.h +++ b/sys/amd64/include/pci_cfgreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/amd64/include/pcpu.h b/sys/amd64/include/pcpu.h index c02009b83432..28336d708534 100644 --- a/sys/amd64/include/pcpu.h +++ b/sys/amd64/include/pcpu.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globaldata.h,v 1.9 1999/05/12 21:39:00 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h index fd55bdcb2efa..b9f3f745a4e7 100644 --- a/sys/amd64/include/pmap.h +++ b/sys/amd64/include/pmap.h @@ -42,7 +42,7 @@ * * from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90 * from: @(#)pmap.h 7.4 (Berkeley) 5/12/91 - * $Id: pmap.h,v 1.60 1999/04/02 17:59:49 alc Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PMAP_H_ diff --git a/sys/amd64/include/proc.h b/sys/amd64/include/proc.h index ae6cd6337bc3..bc2679e385c3 100644 --- a/sys/amd64/include/proc.h +++ b/sys/amd64/include/proc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)proc.h 7.1 (Berkeley) 5/15/91 - * $Id: proc.h,v 1.8 1997/05/07 19:55:13 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PROC_H_ diff --git a/sys/amd64/include/profile.h b/sys/amd64/include/profile.h index e034e611e069..1d2b6009f52e 100644 --- a/sys/amd64/include/profile.h +++ b/sys/amd64/include/profile.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)profile.h 8.1 (Berkeley) 6/11/93 - * $Id: profile.h,v 1.17 1998/07/14 05:09:43 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PROFILE_H_ diff --git a/sys/amd64/include/psl.h b/sys/amd64/include/psl.h index 5f1733587f8e..6a7e233a8408 100644 --- a/sys/amd64/include/psl.h +++ b/sys/amd64/include/psl.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)psl.h 5.2 (Berkeley) 1/18/91 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_PSL_H_ diff --git a/sys/amd64/include/ptrace.h b/sys/amd64/include/ptrace.h index 2c43a2eef8d4..55a26fd636ad 100644 --- a/sys/amd64/include/ptrace.h +++ b/sys/amd64/include/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 - * $Id: ptrace.h,v 1.6 1998/05/19 00:00:12 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PTRACE_H_ diff --git a/sys/amd64/include/reg.h b/sys/amd64/include/reg.h index 994bdfda0360..1f541c7b30d0 100644 --- a/sys/amd64/include/reg.h +++ b/sys/amd64/include/reg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)reg.h 5.5 (Berkeley) 1/18/91 - * $Id: reg.h,v 1.18 1999/04/28 01:04:06 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_REG_H_ diff --git a/sys/amd64/include/reloc.h b/sys/amd64/include/reloc.h index ead0334ee221..ef4b8dbc3e8c 100644 --- a/sys/amd64/include/reloc.h +++ b/sys/amd64/include/reloc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)reloc.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _I386_MACHINE_RELOC_H_ diff --git a/sys/amd64/include/segments.h b/sys/amd64/include/segments.h index 1a6e20d91af8..d043d8b5a113 100644 --- a/sys/amd64/include/segments.h +++ b/sys/amd64/include/segments.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)segments.h 7.1 (Berkeley) 5/9/91 - * $Id: segments.h,v 1.21 1999/07/29 01:49:19 msmith Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SEGMENTS_H_ diff --git a/sys/amd64/include/setjmp.h b/sys/amd64/include/setjmp.h index c0337c06ce6d..173ea2d92f8c 100644 --- a/sys/amd64/include/setjmp.h +++ b/sys/amd64/include/setjmp.h @@ -1,4 +1,4 @@ -/* $Id: setjmp.h,v 1.1 1998/01/10 23:04:51 jb Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 John Birrell . * All rights reserved. diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 51dc1960901e..deaa06ca7923 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.1 (Berkeley) 6/11/93 - * $Id: signal.h,v 1.7 1997/02/22 09:35:12 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SIGNAL_H_ diff --git a/sys/amd64/include/smp.h b/sys/amd64/include/smp.h index c425db6f7d32..0524d76b6fbe 100644 --- a/sys/amd64/include/smp.h +++ b/sys/amd64/include/smp.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: smp.h,v 1.45 1999/04/28 01:04:07 luoqi Exp $ + * $FreeBSD$ * */ diff --git a/sys/amd64/include/specialreg.h b/sys/amd64/include/specialreg.h index f6e04fa98cbc..d95f9331f623 100644 --- a/sys/amd64/include/specialreg.h +++ b/sys/amd64/include/specialreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)specialreg.h 7.1 (Berkeley) 5/9/91 - * $Id: specialreg.h,v 1.16 1998/10/06 13:16:26 kato Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SPECIALREG_H_ diff --git a/sys/amd64/include/sysarch.h b/sys/amd64/include/sysarch.h index a9248389acd2..009c7810259a 100644 --- a/sys/amd64/include/sysarch.h +++ b/sys/amd64/include/sysarch.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sysarch.h,v 1.9 1998/07/28 03:33:27 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/include/trap.h b/sys/amd64/include/trap.h index 96928d189962..6cc059a1e584 100644 --- a/sys/amd64/include/trap.h +++ b/sys/amd64/include/trap.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)trap.h 5.4 (Berkeley) 5/9/91 - * $Id: trap.h,v 1.8 1999/07/25 13:16:08 cracauer Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_TRAP_H_ diff --git a/sys/amd64/include/tss.h b/sys/amd64/include/tss.h index 636133a9a870..2003a66609b4 100644 --- a/sys/amd64/include/tss.h +++ b/sys/amd64/include/tss.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)tss.h 5.4 (Berkeley) 1/18/91 - * $Id: tss.h,v 1.8 1997/02/22 09:35:20 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_TSS_H_ diff --git a/sys/amd64/include/varargs.h b/sys/amd64/include/varargs.h index 5661462e11f4..d1d4ed0c0906 100644 --- a/sys/amd64/include/varargs.h +++ b/sys/amd64/include/varargs.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)varargs.h 8.2 (Berkeley) 3/22/94 - * $Id: varargs.h,v 1.6 1997/02/28 07:12:34 bde Exp $ + * $FreeBSD$ */ #ifndef _VARARGS_H_ diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h index 9ec54e2d34af..0a5847dd5ff6 100644 --- a/sys/amd64/include/vmparam.h +++ b/sys/amd64/include/vmparam.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 - * $Id: vmparam.h,v 1.30 1998/06/12 09:10:22 dg Exp $ + * $FreeBSD$ */ diff --git a/sys/amd64/isa/atpic_vector.S b/sys/amd64/isa/atpic_vector.S index cbb8b5ea49b9..24ce97b666b9 100644 --- a/sys/amd64/isa/atpic_vector.S +++ b/sys/amd64/isa/atpic_vector.S @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: icu_vector.s,v 1.12 1999/05/28 14:08:59 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/clock.c b/sys/amd64/isa/clock.c index 188e20bc0f47..8a3e1c93030c 100644 --- a/sys/amd64/isa/clock.c +++ b/sys/amd64/isa/clock.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.142 1999/07/29 01:20:47 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/icu.h b/sys/amd64/isa/icu.h index cfe4dceb0873..14e8d14aa9be 100644 --- a/sys/amd64/isa/icu.h +++ b/sys/amd64/isa/icu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)icu.h 5.6 (Berkeley) 5/9/91 - * $Id: icu.h,v 1.15 1997/07/22 20:12:05 fsmp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/icu_ipl.S b/sys/amd64/isa/icu_ipl.S index 0f3a3caeaa33..34753583a41e 100644 --- a/sys/amd64/isa/icu_ipl.S +++ b/sys/amd64/isa/icu_ipl.S @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.4 1998/08/11 15:08:12 bde Exp $ + * $FreeBSD$ */ .data diff --git a/sys/amd64/isa/icu_ipl.s b/sys/amd64/isa/icu_ipl.s index 0f3a3caeaa33..34753583a41e 100644 --- a/sys/amd64/isa/icu_ipl.s +++ b/sys/amd64/isa/icu_ipl.s @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.4 1998/08/11 15:08:12 bde Exp $ + * $FreeBSD$ */ .data diff --git a/sys/amd64/isa/icu_vector.S b/sys/amd64/isa/icu_vector.S index cbb8b5ea49b9..24ce97b666b9 100644 --- a/sys/amd64/isa/icu_vector.S +++ b/sys/amd64/isa/icu_vector.S @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: icu_vector.s,v 1.12 1999/05/28 14:08:59 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/icu_vector.s b/sys/amd64/isa/icu_vector.s index cbb8b5ea49b9..24ce97b666b9 100644 --- a/sys/amd64/isa/icu_vector.s +++ b/sys/amd64/isa/icu_vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: icu_vector.s,v 1.12 1999/05/28 14:08:59 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/intr_machdep.c b/sys/amd64/isa/intr_machdep.c index 3a214a99522a..8bdb4b6d72d4 100644 --- a/sys/amd64/isa/intr_machdep.c +++ b/sys/amd64/isa/intr_machdep.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ */ /* * This file contains an aggregated module marked: @@ -506,7 +506,7 @@ icu_unset(intr, handler) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/amd64/isa/intr_machdep.h b/sys/amd64/isa/intr_machdep.h index 06593cf359f4..adea3037caa1 100644 --- a/sys/amd64/isa/intr_machdep.h +++ b/sys/amd64/isa/intr_machdep.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: intr_machdep.h,v 1.15 1999/06/03 20:41:00 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_INTR_MACHDEP_H_ diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index 8e153a71c62b..f87d9816f071 100644 --- a/sys/amd64/isa/isa.c +++ b/sys/amd64/isa/isa.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa.c,v 1.127 1999/05/22 15:18:12 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/isa.h b/sys/amd64/isa/isa.h index ea25f20604ee..cc66da9be045 100644 --- a/sys/amd64/isa/isa.h +++ b/sys/amd64/isa/isa.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id: isa.h,v 1.21 1997/02/22 09:36:41 peter Exp $ + * $FreeBSD$ */ #ifdef PC98 diff --git a/sys/amd64/isa/isa_dma.c b/sys/amd64/isa/isa_dma.c index 7855aaa89fa1..698c67004a7e 100644 --- a/sys/amd64/isa/isa_dma.c +++ b/sys/amd64/isa/isa_dma.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa_dma.c,v 1.2 1999/04/21 07:26:28 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/isa_dma.h b/sys/amd64/isa/isa_dma.h index 3fe234c3422c..15f8b3d804da 100644 --- a/sys/amd64/isa/isa_dma.h +++ b/sys/amd64/isa/isa_dma.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91 - * $Id: isa_device.h,v 1.57 1999/01/17 06:33:43 bde Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_ISA_DMA_H_ diff --git a/sys/amd64/isa/nmi.c b/sys/amd64/isa/nmi.c index 3a214a99522a..8bdb4b6d72d4 100644 --- a/sys/amd64/isa/nmi.c +++ b/sys/amd64/isa/nmi.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ */ /* * This file contains an aggregated module marked: @@ -506,7 +506,7 @@ icu_unset(intr, handler) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/amd64/isa/npx.c b/sys/amd64/isa/npx.c index a99b5674ea4b..374c06617013 100644 --- a/sys/amd64/isa/npx.c +++ b/sys/amd64/isa/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.75 1999/07/26 05:47:31 cracauer Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/amd64/isa/timerreg.h b/sys/amd64/isa/timerreg.h index ff27bacc24a4..0bfd7fc8cd63 100644 --- a/sys/amd64/isa/timerreg.h +++ b/sys/amd64/isa/timerreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: Header: timerreg.h,v 1.2 93/02/28 15:08:58 mccanne Exp - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/vector.S b/sys/amd64/isa/vector.S index 608f13586c3b..5447a90126a0 100644 --- a/sys/amd64/isa/vector.S +++ b/sys/amd64/isa/vector.S @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: vector.s,v 1.30 1997/05/26 17:58:27 fsmp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/isa/vector.s b/sys/amd64/isa/vector.s index 608f13586c3b..5447a90126a0 100644 --- a/sys/amd64/isa/vector.s +++ b/sys/amd64/isa/vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: vector.s,v 1.30 1997/05/26 17:58:27 fsmp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/amd64/pci/pci_bus.c b/sys/amd64/pci/pci_bus.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/amd64/pci/pci_bus.c +++ b/sys/amd64/pci/pci_bus.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/amd64/pci/pci_cfgreg.c b/sys/amd64/pci/pci_cfgreg.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/amd64/pci/pci_cfgreg.c +++ b/sys/amd64/pci/pci_cfgreg.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/boot/alpha/Makefile b/sys/boot/alpha/Makefile index 81dec0372be7..a36f2cf53d61 100644 --- a/sys/boot/alpha/Makefile +++ b/sys/boot/alpha/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ SUBDIR= libalpha SUBDIR+= boot1 boot2 netboot diff --git a/sys/boot/alpha/boot1/boot1.c b/sys/boot/alpha/boot1/boot1.c index 7346c5b8085a..e3f52a910abf 100644 --- a/sys/boot/alpha/boot1/boot1.c +++ b/sys/boot/alpha/boot1/boot1.c @@ -1,5 +1,5 @@ /* - * $Id: boot1.c,v 1.3 1998/10/18 19:05:07 dfr Exp $ + * $FreeBSD$ * From $NetBSD: bootxx.c,v 1.4 1997/09/06 14:08:29 drochner Exp $ */ diff --git a/sys/boot/alpha/boot1/sys.c b/sys/boot/alpha/boot1/sys.c index 79f17025a959..4766c9a02c35 100644 --- a/sys/boot/alpha/boot1/sys.c +++ b/sys/boot/alpha/boot1/sys.c @@ -25,7 +25,7 @@ * * from: Mach, Revision 2.2 92/04/04 11:36:34 rpd * fromL Id: sys.c,v 1.21 1997/06/09 05:10:56 bde Exp - * $Id: sys.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/boot2/conf.c b/sys/boot/alpha/boot2/conf.c index e4f439b81900..a105c7f18144 100644 --- a/sys/boot/alpha/boot2/conf.c +++ b/sys/boot/alpha/boot2/conf.c @@ -1,5 +1,5 @@ /* - * $Id: conf.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ * From $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $ */ diff --git a/sys/boot/alpha/boot2/version b/sys/boot/alpha/boot2/version index 6346f50d0a0f..bc9aa00ed9ab 100644 --- a/sys/boot/alpha/boot2/version +++ b/sys/boot/alpha/boot2/version @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this file is important. Make sure the current version number is on line 6. diff --git a/sys/boot/alpha/common/main.c b/sys/boot/alpha/common/main.c index 41400240b26e..b9c5ff736583 100644 --- a/sys/boot/alpha/common/main.c +++ b/sys/boot/alpha/common/main.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.8 1998/10/31 17:12:32 dfr Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/alpha/common/setdef0.c b/sys/boot/alpha/common/setdef0.c index b41276d76e72..49f662ae1d6c 100644 --- a/sys/boot/alpha/common/setdef0.c +++ b/sys/boot/alpha/common/setdef0.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef0.c,v 1.1 1998/06/10 10:53:12 dfr Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/boot/alpha/common/setdef1.c b/sys/boot/alpha/common/setdef1.c index 659618a83cc5..13668f08cefc 100644 --- a/sys/boot/alpha/common/setdef1.c +++ b/sys/boot/alpha/common/setdef1.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef1.c,v 1.1 1998/06/10 10:53:13 dfr Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/boot/alpha/libalpha/Makefile b/sys/boot/alpha/libalpha/Makefile index 4928647b7548..fe642eb1336f 100644 --- a/sys/boot/alpha/libalpha/Makefile +++ b/sys/boot/alpha/libalpha/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/10/14 09:53:25 peter Exp $ +# $FreeBSD$ LIB= alpha NOPIC= true diff --git a/sys/boot/alpha/libalpha/OSFpal.c b/sys/boot/alpha/libalpha/OSFpal.c index b77ee12e3ab5..870296b65479 100644 --- a/sys/boot/alpha/libalpha/OSFpal.c +++ b/sys/boot/alpha/libalpha/OSFpal.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From $NetBSD: OSFpal.c,v 1.5 1998/06/24 01:33:19 ross Exp $ */ diff --git a/sys/boot/alpha/libalpha/alpha_copy.c b/sys/boot/alpha/libalpha/alpha_copy.c index 196915c1eb23..95b6cba677e4 100644 --- a/sys/boot/alpha/libalpha/alpha_copy.c +++ b/sys/boot/alpha/libalpha/alpha_copy.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_copy.c,v 1.2 1998/09/03 02:10:07 msmith Exp $ + * $FreeBSD$ */ /* * MD primitives supporting placement of module data diff --git a/sys/boot/alpha/libalpha/alpha_module.c b/sys/boot/alpha/libalpha/alpha_module.c index afa065f5bd04..4ac21d42242d 100644 --- a/sys/boot/alpha/libalpha/alpha_module.c +++ b/sys/boot/alpha/libalpha/alpha_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_module.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/alpha/libalpha/bbinfo.h b/sys/boot/alpha/libalpha/bbinfo.h index 5529035ff438..94aa4bbff07f 100644 --- a/sys/boot/alpha/libalpha/bbinfo.h +++ b/sys/boot/alpha/libalpha/bbinfo.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From $NetBSD: bbinfo.h,v 1.2 1997/04/06 08:40:57 cgd Exp $ */ diff --git a/sys/boot/alpha/libalpha/bootinfo.c b/sys/boot/alpha/libalpha/bootinfo.c index fa0842b59169..5513583bbb6b 100644 --- a/sys/boot/alpha/libalpha/bootinfo.c +++ b/sys/boot/alpha/libalpha/bootinfo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.6 1999/03/20 14:13:09 dcs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/libalpha/common.h b/sys/boot/alpha/libalpha/common.h index 8acd3f93e47b..ff184763dd84 100644 --- a/sys/boot/alpha/libalpha/common.h +++ b/sys/boot/alpha/libalpha/common.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: common.h,v 1.2 1998/01/05 07:02:48 perry Exp $ */ diff --git a/sys/boot/alpha/libalpha/delay.c b/sys/boot/alpha/libalpha/delay.c index a7621b76bbb1..faaf9829c3db 100644 --- a/sys/boot/alpha/libalpha/delay.c +++ b/sys/boot/alpha/libalpha/delay.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/libalpha/devicename.c b/sys/boot/alpha/libalpha/devicename.c index dcd07ede1fcb..d8ee1133299e 100644 --- a/sys/boot/alpha/libalpha/devicename.c +++ b/sys/boot/alpha/libalpha/devicename.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devicename.c,v 1.2 1998/08/22 10:31:01 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/libalpha/elf_freebsd.c b/sys/boot/alpha/libalpha/elf_freebsd.c index 0958b956325c..4efd603e3d64 100644 --- a/sys/boot/alpha/libalpha/elf_freebsd.c +++ b/sys/boot/alpha/libalpha/elf_freebsd.c @@ -1,4 +1,4 @@ -/* $Id: elf_freebsd.c,v 1.6 1998/10/15 21:55:58 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: loadfile.c,v 1.10 1998/06/25 06:45:46 ross Exp $ */ /*- diff --git a/sys/boot/alpha/libalpha/getsecs.c b/sys/boot/alpha/libalpha/getsecs.c index f234a37256ca..13f1e53e1bf3 100644 --- a/sys/boot/alpha/libalpha/getsecs.c +++ b/sys/boot/alpha/libalpha/getsecs.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: getsecs.c,v 1.5 1998/01/05 07:02:49 perry Exp $ */ diff --git a/sys/boot/alpha/libalpha/libalpha.h b/sys/boot/alpha/libalpha/libalpha.h index 79b231a5c4b1..8e1dd71e09f0 100644 --- a/sys/boot/alpha/libalpha/libalpha.h +++ b/sys/boot/alpha/libalpha/libalpha.h @@ -1,4 +1,4 @@ -/* $Id: libalpha.h,v 1.3 1998/09/20 21:46:19 dfr Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1996 diff --git a/sys/boot/alpha/libalpha/pal.S b/sys/boot/alpha/libalpha/pal.S index c33f317d52be..d411318b54ae 100644 --- a/sys/boot/alpha/libalpha/pal.S +++ b/sys/boot/alpha/libalpha/pal.S @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: pal.s,v 1.12 1998/02/27 03:44:53 thorpej Exp $ */ diff --git a/sys/boot/alpha/libalpha/prom.c b/sys/boot/alpha/libalpha/prom.c index 380326ccd0ec..e32d43d3b66f 100644 --- a/sys/boot/alpha/libalpha/prom.c +++ b/sys/boot/alpha/libalpha/prom.c @@ -1,4 +1,4 @@ -/* $Id: prom.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: prom.c,v 1.3 1997/09/06 14:03:58 drochner Exp $ */ /* diff --git a/sys/boot/alpha/libalpha/prom_disp.S b/sys/boot/alpha/libalpha/prom_disp.S index 6d5e0874bdb5..184f1d3c9f00 100644 --- a/sys/boot/alpha/libalpha/prom_disp.S +++ b/sys/boot/alpha/libalpha/prom_disp.S @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: prom_disp.S,v 1.2 1997/04/06 08:41:00 cgd Exp $ */ diff --git a/sys/boot/alpha/libalpha/prom_swpal.S b/sys/boot/alpha/libalpha/prom_swpal.S index b4d3cac75707..be57632ddd9b 100644 --- a/sys/boot/alpha/libalpha/prom_swpal.S +++ b/sys/boot/alpha/libalpha/prom_swpal.S @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: prom_swpal.S,v 1.2 1997/04/06 08:41:01 cgd Exp $ */ diff --git a/sys/boot/alpha/libalpha/reboot.c b/sys/boot/alpha/libalpha/reboot.c index 35750ec0f2af..3361c6c90348 100644 --- a/sys/boot/alpha/libalpha/reboot.c +++ b/sys/boot/alpha/libalpha/reboot.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/libalpha/srmdisk.c b/sys/boot/alpha/libalpha/srmdisk.c index 6b7d17b8e76d..6039a7289168 100644 --- a/sys/boot/alpha/libalpha/srmdisk.c +++ b/sys/boot/alpha/libalpha/srmdisk.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: srmdisk.c,v 1.3 1998/11/02 23:28:10 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/alpha/libalpha/srmnet.c b/sys/boot/alpha/libalpha/srmnet.c index d15fa5f151dd..d36e557bc1fb 100644 --- a/sys/boot/alpha/libalpha/srmnet.c +++ b/sys/boot/alpha/libalpha/srmnet.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: if_prom.c,v 1.10 1997/09/06 14:08:33 drochner Exp $ */ diff --git a/sys/boot/alpha/libalpha/start.S b/sys/boot/alpha/libalpha/start.S index f42b5da4c95c..fcc5406a0183 100644 --- a/sys/boot/alpha/libalpha/start.S +++ b/sys/boot/alpha/libalpha/start.S @@ -1,5 +1,5 @@ /* - * $Id: start.S,v 1.2 1998/10/31 17:12:32 dfr Exp $ + * $FreeBSD$ * From: $NetBSD: start.S,v 1.4 1998/03/28 00:54:15 cgd Exp $ */ diff --git a/sys/boot/alpha/libalpha/time.c b/sys/boot/alpha/libalpha/time.c index 7b87d2fdcc69..18af172558c8 100644 --- a/sys/boot/alpha/libalpha/time.c +++ b/sys/boot/alpha/libalpha/time.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/alpha/netboot/conf.c b/sys/boot/alpha/netboot/conf.c index 8a0e10bad072..354f9cd1a90d 100644 --- a/sys/boot/alpha/netboot/conf.c +++ b/sys/boot/alpha/netboot/conf.c @@ -1,5 +1,5 @@ /* - * $Id: conf.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ * From: $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $ */ diff --git a/sys/boot/alpha/netboot/version b/sys/boot/alpha/netboot/version index 6346f50d0a0f..bc9aa00ed9ab 100644 --- a/sys/boot/alpha/netboot/version +++ b/sys/boot/alpha/netboot/version @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this file is important. Make sure the current version number is on line 6. diff --git a/sys/boot/arc/Makefile b/sys/boot/arc/Makefile index 4b0436976de6..82043c438af8 100644 --- a/sys/boot/arc/Makefile +++ b/sys/boot/arc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ +# $FreeBSD$ SUBDIR= lib SUBDIR+= loader diff --git a/sys/boot/arc/include/arcfuncs.h b/sys/boot/arc/include/arcfuncs.h index cc4e48d35a67..25c74465b3fa 100644 --- a/sys/boot/arc/include/arcfuncs.h +++ b/sys/boot/arc/include/arcfuncs.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/boot/arc/include/arctypes.h b/sys/boot/arc/include/arctypes.h index e9c73d308f6d..b823e49babad 100644 --- a/sys/boot/arc/include/arctypes.h +++ b/sys/boot/arc/include/arctypes.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/boot/arc/include/libarc.h b/sys/boot/arc/include/libarc.h index 716215950c70..085d6bbc8eed 100644 --- a/sys/boot/arc/include/libarc.h +++ b/sys/boot/arc/include/libarc.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* * Copyright (c) 1996 diff --git a/sys/boot/arc/lib/Makefile b/sys/boot/arc/lib/Makefile index ec5b6bc75def..023821cdae1f 100644 --- a/sys/boot/arc/lib/Makefile +++ b/sys/boot/arc/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1999/07/28 20:28:45 se Exp $ +# $FreeBSD$ LIB= arc NOPIC= true diff --git a/sys/boot/arc/lib/abort.c b/sys/boot/arc/lib/abort.c index 00480612635f..4e5951bb50bb 100644 --- a/sys/boot/arc/lib/abort.c +++ b/sys/boot/arc/lib/abort.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/arcconsole.c b/sys/boot/arc/lib/arcconsole.c index e8ecb227ab5f..9607b6b1c61c 100644 --- a/sys/boot/arc/lib/arcconsole.c +++ b/sys/boot/arc/lib/arcconsole.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: prom.c,v 1.3 1997/09/06 14:03:58 drochner Exp $ */ /* diff --git a/sys/boot/arc/lib/arcdisk.c b/sys/boot/arc/lib/arcdisk.c index 5a6be39b3147..2b548546416d 100644 --- a/sys/boot/arc/lib/arcdisk.c +++ b/sys/boot/arc/lib/arcdisk.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/boot/arc/lib/arch/alpha/copy.c b/sys/boot/arc/lib/arch/alpha/copy.c index 2ca139766815..2847812fed05 100644 --- a/sys/boot/arc/lib/arch/alpha/copy.c +++ b/sys/boot/arc/lib/arch/alpha/copy.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_copy.c,v 1.3 1998/09/20 21:46:19 dfr Exp $ + * $FreeBSD$ */ /* * MD primitives supporting placement of module data diff --git a/sys/boot/arc/lib/arch/alpha/rpb.c b/sys/boot/arc/lib/arch/alpha/rpb.c index ac56c824c1b5..492346155751 100644 --- a/sys/boot/arc/lib/arch/alpha/rpb.c +++ b/sys/boot/arc/lib/arch/alpha/rpb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/arch/alpha/setjmp.S b/sys/boot/arc/lib/arch/alpha/setjmp.S index 24502a4f0432..8e153f7ddd77 100644 --- a/sys/boot/arc/lib/arch/alpha/setjmp.S +++ b/sys/boot/arc/lib/arch/alpha/setjmp.S @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/boot/arc/lib/arch/alpha/start.S b/sys/boot/arc/lib/arch/alpha/start.S index af038e9f0e0f..1b4fc598d6ae 100644 --- a/sys/boot/arc/lib/arch/alpha/start.S +++ b/sys/boot/arc/lib/arch/alpha/start.S @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/boot/arc/lib/bootinfo.c b/sys/boot/arc/lib/bootinfo.c index 949a93c674d5..8b74e0d2c06e 100644 --- a/sys/boot/arc/lib/bootinfo.c +++ b/sys/boot/arc/lib/bootinfo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.3 1998/10/15 21:55:58 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/delay.c b/sys/boot/arc/lib/delay.c index 67b0bf61cb61..e897b4ec7497 100644 --- a/sys/boot/arc/lib/delay.c +++ b/sys/boot/arc/lib/delay.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/devicename.c b/sys/boot/arc/lib/devicename.c index 595c7d22ce20..56c8c43d510c 100644 --- a/sys/boot/arc/lib/devicename.c +++ b/sys/boot/arc/lib/devicename.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devicename.c,v 1.3 1998/09/26 10:51:37 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/elf_freebsd.c b/sys/boot/arc/lib/elf_freebsd.c index 84637592c67a..4e75820a88ca 100644 --- a/sys/boot/arc/lib/elf_freebsd.c +++ b/sys/boot/arc/lib/elf_freebsd.c @@ -1,4 +1,4 @@ -/* $Id: elf_freebsd.c,v 1.6 1998/10/15 21:55:58 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: loadfile.c,v 1.10 1998/06/25 06:45:46 ross Exp $ */ /*- diff --git a/sys/boot/arc/lib/module.c b/sys/boot/arc/lib/module.c index 367bf0cb073b..a6a39978eab8 100644 --- a/sys/boot/arc/lib/module.c +++ b/sys/boot/arc/lib/module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_module.c,v 1.2 1998/08/31 21:10:40 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/arc/lib/prom.c b/sys/boot/arc/lib/prom.c index abf2d3991998..5f13801a8213 100644 --- a/sys/boot/arc/lib/prom.c +++ b/sys/boot/arc/lib/prom.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/boot/arc/lib/setjmperr.c b/sys/boot/arc/lib/setjmperr.c index c68ca02e498a..9c005e1e9b3f 100644 --- a/sys/boot/arc/lib/setjmperr.c +++ b/sys/boot/arc/lib/setjmperr.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/lib/time.c b/sys/boot/arc/lib/time.c index 815897025198..bf0ba1ab23b5 100644 --- a/sys/boot/arc/lib/time.c +++ b/sys/boot/arc/lib/time.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/arc/loader/conf.c b/sys/boot/arc/loader/conf.c index 1b5384c63f42..d40ea46fe06a 100644 --- a/sys/boot/arc/loader/conf.c +++ b/sys/boot/arc/loader/conf.c @@ -1,5 +1,5 @@ /* - * $Id: conf.c,v 1.2 1998/08/31 21:10:36 msmith Exp $ + * $FreeBSD$ * From $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $ */ diff --git a/sys/boot/arc/loader/main.c b/sys/boot/arc/loader/main.c index d086a59d6fcf..ccee80fc4859 100644 --- a/sys/boot/arc/loader/main.c +++ b/sys/boot/arc/loader/main.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.1.1.1 1999/07/28 20:28:47 se Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/arc/loader/setdef0.c b/sys/boot/arc/loader/setdef0.c index 79874ea278dd..49f662ae1d6c 100644 --- a/sys/boot/arc/loader/setdef0.c +++ b/sys/boot/arc/loader/setdef0.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef0.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/boot/arc/loader/setdef1.c b/sys/boot/arc/loader/setdef1.c index 9fffaf7b1f7a..13668f08cefc 100644 --- a/sys/boot/arc/loader/setdef1.c +++ b/sys/boot/arc/loader/setdef1.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: setdef1.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ */ #ifdef __ELF__ diff --git a/sys/boot/arc/loader/version b/sys/boot/arc/loader/version index 23262b91677b..bc9aa00ed9ab 100644 --- a/sys/boot/arc/loader/version +++ b/sys/boot/arc/loader/version @@ -1,4 +1,4 @@ -$Id: version,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ +$FreeBSD$ NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this file is important. Make sure the current version number is on line 6. diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index c29494ba6aef..0d1dc1411c55 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.7 1998/11/02 23:28:10 msmith Exp $ +# $FreeBSD$ SRCS+= bcache.c boot.c commands.c console.c devopen.c interp.c SRCS+= interp_backslash.c interp_parse.c load_aout.c load_elf.c ls.c misc.c diff --git a/sys/boot/common/bcache.c b/sys/boot/common/bcache.c index d780038c07a3..c52854ece5ff 100644 --- a/sys/boot/common/bcache.c +++ b/sys/boot/common/bcache.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bcache.c,v 1.4 1998/11/19 18:12:03 paul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c index 70b467144636..f69d4302d16c 100644 --- a/sys/boot/common/boot.c +++ b/sys/boot/common/boot.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: boot.c,v 1.13 1999/07/15 20:40:52 n_hibma Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/common/bootstrap.h b/sys/boot/common/bootstrap.h index 1cabf7033457..9138b56e3265 100644 --- a/sys/boot/common/bootstrap.h +++ b/sys/boot/common/bootstrap.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootstrap.h,v 1.22 1999/06/26 12:26:54 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/commands.c b/sys/boot/common/commands.c index cc75032e72c0..aa81abcf15b1 100644 --- a/sys/boot/common/commands.c +++ b/sys/boot/common/commands.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: commands.c,v 1.10 1999/02/01 06:08:20 jkh Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/console.c b/sys/boot/common/console.c index 8c4377f2bcd4..3f2a8790118a 100644 --- a/sys/boot/common/console.c +++ b/sys/boot/common/console.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: console.c,v 1.3 1998/10/11 10:19:11 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/dev_net.c b/sys/boot/common/dev_net.c index a66523a08ac0..cf12680c3135 100644 --- a/sys/boot/common/dev_net.c +++ b/sys/boot/common/dev_net.c @@ -1,5 +1,5 @@ /* - * $Id: dev_net.c,v 1.3 1998/09/20 21:46:19 dfr Exp $ + * $FreeBSD$ * From: $NetBSD: dev_net.c,v 1.12 1997/12/10 20:38:37 gwr Exp $ */ diff --git a/sys/boot/common/dev_net.h b/sys/boot/common/dev_net.h index 7c256ffb2baa..3b3d10728a3d 100644 --- a/sys/boot/common/dev_net.h +++ b/sys/boot/common/dev_net.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ extern struct devsw netdev; diff --git a/sys/boot/common/devopen.c b/sys/boot/common/devopen.c index 83489c6dd24f..77d6ffac9851 100644 --- a/sys/boot/common/devopen.c +++ b/sys/boot/common/devopen.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devopen.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/common/gensetdefs.c b/sys/boot/common/gensetdefs.c index 9927e8ae4579..a78e456de16e 100644 --- a/sys/boot/common/gensetdefs.c +++ b/sys/boot/common/gensetdefs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: gensetdefs.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/interp.c b/sys/boot/common/interp.c index 897f1175d833..4f321bd31c49 100644 --- a/sys/boot/common/interp.c +++ b/sys/boot/common/interp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: interp.c,v 1.17 1999/03/08 10:32:38 dcs Exp $ + * $FreeBSD$ */ /* * Simple commandline interpreter, toplevel and misc. diff --git a/sys/boot/common/interp_backslash.c b/sys/boot/common/interp_backslash.c index 6de118ec63fc..6325e4ef3489 100644 --- a/sys/boot/common/interp_backslash.c +++ b/sys/boot/common/interp_backslash.c @@ -11,7 +11,7 @@ * Jordan K. Hubbard * 29 August 1998 * - * $Id: interp_backslash.c,v 1.2 1998/09/03 06:14:41 jkh Exp $ + * $FreeBSD$ * * Routine for doing backslash elimination. */ diff --git a/sys/boot/common/interp_forth.c b/sys/boot/common/interp_forth.c index 4f653275c78f..8b965ff86747 100644 --- a/sys/boot/common/interp_forth.c +++ b/sys/boot/common/interp_forth.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: interp_forth.c,v 1.12 1999/02/04 17:06:46 dcs Exp $ + * $FreeBSD$ */ #include /* to pick up __FreeBSD_version */ diff --git a/sys/boot/common/interp_parse.c b/sys/boot/common/interp_parse.c index 6c387106ab83..0f83c430766c 100644 --- a/sys/boot/common/interp_parse.c +++ b/sys/boot/common/interp_parse.c @@ -11,7 +11,7 @@ * Jordan K. Hubbard * 29 August 1998 * - * $Id: interp_parse.c,v 1.6 1999/01/13 08:11:41 msmith Exp $ + * $FreeBSD$ * * The meat of the simple parser. */ diff --git a/sys/boot/common/isapnp.c b/sys/boot/common/isapnp.c index 865e8f683e15..19417068601a 100644 --- a/sys/boot/common/isapnp.c +++ b/sys/boot/common/isapnp.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isapnp.c,v 1.3 1998/10/21 20:07:04 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/common/isapnp.h b/sys/boot/common/isapnp.h index d1311b27aa0a..3ebd66a0d230 100644 --- a/sys/boot/common/isapnp.h +++ b/sys/boot/common/isapnp.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isapnp.h,v 1.2 1998/10/21 20:07:04 msmith Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_PNP_H_ diff --git a/sys/boot/common/load.c b/sys/boot/common/load.c index d59fdf398c4c..e91c5fb8b569 100644 --- a/sys/boot/common/load.c +++ b/sys/boot/common/load.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/load_aout.c b/sys/boot/common/load_aout.c index 3e6aeced5d7f..8947a7384174 100644 --- a/sys/boot/common/load_aout.c +++ b/sys/boot/common/load_aout.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: load_aout.c,v 1.13 1999/01/22 23:50:14 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/load_elf.c b/sys/boot/common/load_elf.c index bc514b1bc3ac..024fece0718f 100644 --- a/sys/boot/common/load_elf.c +++ b/sys/boot/common/load_elf.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: load_elf.c,v 1.10 1999/01/04 18:37:41 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/loader.8 b/sys/boot/common/loader.8 index 27268bb59f7d..ef847c10e68f 100644 --- a/sys/boot/common/loader.8 +++ b/sys/boot/common/loader.8 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: loader.8,v 1.7 1999/06/23 09:06:18 ru Exp $ +.\" $FreeBSD$ .\" .\" Note: The date here should be updated whenever a non-trivial .\" change is made to the manual page. diff --git a/sys/boot/common/ls.c b/sys/boot/common/ls.c index 73f805700bf8..ef99d7067a9d 100644 --- a/sys/boot/common/ls.c +++ b/sys/boot/common/ls.c @@ -1,5 +1,5 @@ /* - * $Id: ls.c,v 1.6 1998/10/11 10:28:51 peter Exp $ + * $FreeBSD$ * From: $NetBSD: ls.c,v 1.3 1997/06/13 13:48:47 drochner Exp $ */ diff --git a/sys/boot/common/merge_help.awk b/sys/boot/common/merge_help.awk index 1376c53aee3c..9741ed3663e4 100644 --- a/sys/boot/common/merge_help.awk +++ b/sys/boot/common/merge_help.awk @@ -1,6 +1,6 @@ #!/usr/bin/awk -f # -# $Id: mergehelp.awk,v 1.3 1999/01/13 20:06:52 jabley Exp $ +# $FreeBSD$ # # Merge two boot loader help files for FreeBSD 3.0 # Joe Abley diff --git a/sys/boot/common/misc.c b/sys/boot/common/misc.c index 36600e76485c..819d4a46594c 100644 --- a/sys/boot/common/misc.c +++ b/sys/boot/common/misc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: misc.c,v 1.4 1998/09/26 10:51:38 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/common/module.c b/sys/boot/common/module.c index 01416596ce2b..d2adeab03e70 100644 --- a/sys/boot/common/module.c +++ b/sys/boot/common/module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: module.c,v 1.8 1999/02/22 13:12:37 dcs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/common/panic.c b/sys/boot/common/panic.c index bee6a0327df4..bad1e45c5dc1 100644 --- a/sys/boot/common/panic.c +++ b/sys/boot/common/panic.c @@ -1,5 +1,5 @@ /* - * $Id: panic.c,v 1.3 1998/09/18 02:01:38 msmith Exp $ + * $FreeBSD$ * From: $NetBSD: panic.c,v 1.2 1997/03/22 01:48:36 thorpej Exp $ */ diff --git a/sys/boot/common/pnpdata b/sys/boot/common/pnpdata index 62d35a819386..f2e262070d96 100644 --- a/sys/boot/common/pnpdata +++ b/sys/boot/common/pnpdata @@ -1,5 +1,5 @@ # -# $Id$ +# $FreeBSD$ # # This file contains the system default Plug-and-Play data. It is # derived from a number of sources, including: diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index ab1071620704..5f724bbcaf36 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1999/03/17 23:03:36 dcs Exp $ +# $FreeBSD$ # LIB= ficl NOPROFILE= yes diff --git a/sys/boot/ficl/softwords/freebsd.fr b/sys/boot/ficl/softwords/freebsd.fr index 9ebeacba01cd..96205c0808dd 100644 --- a/sys/boot/ficl/softwords/freebsd.fr +++ b/sys/boot/ficl/softwords/freebsd.fr @@ -22,7 +22,7 @@ \ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ ** SUCH DAMAGE. \ ** -\ ** $Id: freebsd.fr,v 1.2 1999/02/28 02:10:14 dcs Exp $ +\ ** $FreeBSD$ \ Words for use in scripts: \ % ignore errors here diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index e219b56f2952..9f40cb2053c1 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -22,7 +22,7 @@ \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ SUCH DAMAGE. \ -\ $Id: loader.4th,v 1.2 1999/04/24 17:25:25 dcs Exp $ +\ $FreeBSD$ include /boot/support.4th diff --git a/sys/boot/forth/loader.4th.8 b/sys/boot/forth/loader.4th.8 index 3a4213862093..3aedb666801a 100644 --- a/sys/boot/forth/loader.4th.8 +++ b/sys/boot/forth/loader.4th.8 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: loader.4th.8,v 1.2 1999/05/03 07:25:50 jkoshy Exp $ +.\" $FreeBSD$ .\" .\" Note: The date here should be updated whenever a non-trivial .\" change is made to the manual page. diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf index 8bc0ec5dff19..c860ae29c193 100644 --- a/sys/boot/forth/loader.conf +++ b/sys/boot/forth/loader.conf @@ -6,7 +6,7 @@ # # All arguments must be in double quotes. # -# $Id: loader.conf,v 1.9 1999/08/10 17:15:20 wpaul Exp $ +# $FreeBSD$ ############################################################## ### Basic configuration options ############################ diff --git a/sys/boot/forth/loader.conf.5 b/sys/boot/forth/loader.conf.5 index c4114ff7f395..8a76f8247e06 100644 --- a/sys/boot/forth/loader.conf.5 +++ b/sys/boot/forth/loader.conf.5 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: loader.conf.5,v 1.3 1999/05/13 14:53:13 brian Exp $ +.\" $FreeBSD$ .Dd April 18, 1999 .Dt LOADER.CONF 5 .Os diff --git a/sys/boot/forth/support.4th b/sys/boot/forth/support.4th index 20126ccfa0c3..5f594ef5612b 100644 --- a/sys/boot/forth/support.4th +++ b/sys/boot/forth/support.4th @@ -22,7 +22,7 @@ \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ SUCH DAMAGE. \ -\ $Id$ +\ $FreeBSD$ \ Loader.rc support functions: \ diff --git a/sys/boot/i386/Makefile b/sys/boot/i386/Makefile index 27b230656761..2ee6e63a5195 100644 --- a/sys/boot/i386/Makefile +++ b/sys/boot/i386/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1999/05/24 22:44:32 rnordier Exp $ +# $FreeBSD$ SUBDIR= mbr boot0 kgzldr btx boot2 libi386 loader diff --git a/sys/boot/i386/boot0/Makefile b/sys/boot/i386/boot0/Makefile index 7bbeb6573e1b..5ccddf250292 100644 --- a/sys/boot/i386/boot0/Makefile +++ b/sys/boot/i386/boot0/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/10/19 19:13:52 rnordier Exp $ +# $FreeBSD$ PROG= boot0 NOMAN= diff --git a/sys/boot/i386/boot0/boot0.m4 b/sys/boot/i386/boot0/boot0.m4 index 72be7ed475a6..d318d2a07e87 100644 --- a/sys/boot/i386/boot0/boot0.m4 +++ b/sys/boot/i386/boot0/boot0.m4 @@ -13,7 +13,7 @@ # purpose. # -# $Id: boot0.m4,v 1.3 1998/11/29 14:09:00 rnordier Exp $ +# $FreeBSD$ define(_al,0x0)dnl define(_cl,0x1)dnl diff --git a/sys/boot/i386/boot0/boot0.s b/sys/boot/i386/boot0/boot0.s index cc11f1929024..00c63914604a 100644 --- a/sys/boot/i386/boot0/boot0.s +++ b/sys/boot/i386/boot0/boot0.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: boot0.s,v 1.10 1999/06/19 21:40:55 rnordier Exp $ +# $FreeBSD$ # A 512-byte boot manager. diff --git a/sys/boot/i386/boot2/Makefile b/sys/boot/i386/boot2/Makefile index 25ec504a0acc..578b452c6051 100644 --- a/sys/boot/i386/boot2/Makefile +++ b/sys/boot/i386/boot2/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1999/04/05 07:24:51 rnordier Exp $ +# $FreeBSD$ PROG= boot2 NOMAN= diff --git a/sys/boot/i386/boot2/boot1.S b/sys/boot/i386/boot2/boot1.S index d1707efff732..d78aaf29b4a6 100644 --- a/sys/boot/i386/boot2/boot1.S +++ b/sys/boot/i386/boot2/boot1.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: boot1.s,v 1.8 1999/01/13 23:30:07 rnordier Exp $ +# $FreeBSD$ .set MEM_REL,0x700 # Relocation address .set MEM_ARG,0x900 # Arguments diff --git a/sys/boot/i386/boot2/boot1.m4 b/sys/boot/i386/boot2/boot1.m4 index 966d8c646c47..94dd13bd18b9 100644 --- a/sys/boot/i386/boot2/boot1.m4 +++ b/sys/boot/i386/boot2/boot1.m4 @@ -13,7 +13,7 @@ # purpose. # -# $Id: boot1.m4,v 1.3 1998/11/08 15:36:35 rnordier Exp $ +# $FreeBSD$ define(_al,0x0)dnl define(_cl,0x1)dnl diff --git a/sys/boot/i386/boot2/boot1.s b/sys/boot/i386/boot2/boot1.s index d1707efff732..d78aaf29b4a6 100644 --- a/sys/boot/i386/boot2/boot1.s +++ b/sys/boot/i386/boot2/boot1.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: boot1.s,v 1.8 1999/01/13 23:30:07 rnordier Exp $ +# $FreeBSD$ .set MEM_REL,0x700 # Relocation address .set MEM_ARG,0x900 # Arguments diff --git a/sys/boot/i386/boot2/boot2.c b/sys/boot/i386/boot2/boot2.c index 67c5ec85289e..eefcf086c5f2 100644 --- a/sys/boot/i386/boot2/boot2.c +++ b/sys/boot/i386/boot2/boot2.c @@ -14,7 +14,7 @@ */ /* - * $Id: boot2.c,v 1.23 1999/04/05 07:36:30 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/boot2/lib.h b/sys/boot/i386/boot2/lib.h index 493c4d8fda01..4bb93cfe9d3e 100644 --- a/sys/boot/i386/boot2/lib.h +++ b/sys/boot/i386/boot2/lib.h @@ -14,7 +14,7 @@ */ /* - * $Id:$ + * $FreeBSD$ */ void sio_init(void); diff --git a/sys/boot/i386/boot2/sio.S b/sys/boot/i386/boot2/sio.S index 92237b852b72..e29820586a3b 100644 --- a/sys/boot/i386/boot2/sio.S +++ b/sys/boot/i386/boot2/sio.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: sio.s,v 1.2 1998/10/20 20:20:48 rnordier Exp $ +# $FreeBSD$ .set SIO_PRT,SIOPRT # Base port .set SIO_FMT,SIOFMT # 8N1 diff --git a/sys/boot/i386/boot2/sio.s b/sys/boot/i386/boot2/sio.s index 92237b852b72..e29820586a3b 100644 --- a/sys/boot/i386/boot2/sio.s +++ b/sys/boot/i386/boot2/sio.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: sio.s,v 1.2 1998/10/20 20:20:48 rnordier Exp $ +# $FreeBSD$ .set SIO_PRT,SIOPRT # Base port .set SIO_FMT,SIOFMT # 8N1 diff --git a/sys/boot/i386/btx/Makefile b/sys/boot/i386/btx/Makefile index 75a170e53c7e..39f78ed639b9 100644 --- a/sys/boot/i386/btx/Makefile +++ b/sys/boot/i386/btx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1998/09/17 23:52:03 msmith Exp $ +# $FreeBSD$ SUBDIR= btx btxldr lib diff --git a/sys/boot/i386/btx/btx/Makefile b/sys/boot/i386/btx/btx/Makefile index 6657f6e266cb..c29339d569eb 100644 --- a/sys/boot/i386/btx/btx/Makefile +++ b/sys/boot/i386/btx/btx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1998/09/25 17:14:15 peter Exp $ +# $FreeBSD$ M4?= m4 diff --git a/sys/boot/i386/btx/btx/btx.S b/sys/boot/i386/btx/btx/btx.S index 29b97950a709..b3f3150e84af 100644 --- a/sys/boot/i386/btx/btx/btx.S +++ b/sys/boot/i386/btx/btx/btx.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: btx.s,v 1.9 1999/01/22 13:07:17 rnordier Exp $ +# $FreeBSD$ # # Memory layout. diff --git a/sys/boot/i386/btx/btx/btx.m4 b/sys/boot/i386/btx/btx/btx.m4 index 598db02a2039..70649bbb6c91 100644 --- a/sys/boot/i386/btx/btx/btx.m4 +++ b/sys/boot/i386/btx/btx/btx.m4 @@ -13,7 +13,7 @@ # purpose. # -# $Id:$ +# $FreeBSD$ define(_al,0x0)dnl define(_cl,0x1)dnl diff --git a/sys/boot/i386/btx/btx/btx.s b/sys/boot/i386/btx/btx/btx.s index 29b97950a709..b3f3150e84af 100644 --- a/sys/boot/i386/btx/btx/btx.s +++ b/sys/boot/i386/btx/btx/btx.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btx.s,v 1.9 1999/01/22 13:07:17 rnordier Exp $ +# $FreeBSD$ # # Memory layout. diff --git a/sys/boot/i386/btx/btxldr/Makefile b/sys/boot/i386/btx/btxldr/Makefile index 32cb4adb0b8e..33e6275360b7 100644 --- a/sys/boot/i386/btx/btxldr/Makefile +++ b/sys/boot/i386/btx/btxldr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/10/13 18:29:18 rnordier Exp $ +# $FreeBSD$ ORG=0x100000 AFLAGS+= --assembler-with-cpp diff --git a/sys/boot/i386/btx/btxldr/btxldr.S b/sys/boot/i386/btx/btxldr/btxldr.S index 5d3b301e0f5d..92748f1abafa 100644 --- a/sys/boot/i386/btx/btxldr/btxldr.S +++ b/sys/boot/i386/btx/btxldr/btxldr.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxldr.s,v 1.4 1998/10/30 00:11:35 msmith Exp $ +# $FreeBSD$ # # Prototype BTX loader program, written in a couple of hours. The diff --git a/sys/boot/i386/btx/btxldr/btxldr.s b/sys/boot/i386/btx/btxldr/btxldr.s index 5d3b301e0f5d..92748f1abafa 100644 --- a/sys/boot/i386/btx/btxldr/btxldr.s +++ b/sys/boot/i386/btx/btxldr/btxldr.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxldr.s,v 1.4 1998/10/30 00:11:35 msmith Exp $ +# $FreeBSD$ # # Prototype BTX loader program, written in a couple of hours. The diff --git a/sys/boot/i386/btx/lib/Makefile b/sys/boot/i386/btx/lib/Makefile index e6fb75818894..40c65657ea7a 100644 --- a/sys/boot/i386/btx/lib/Makefile +++ b/sys/boot/i386/btx/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1998/09/14 10:37:00 rnordier Exp $ +# $FreeBSD$ OBJS= btxcsu.o btxsys.o btxv86.o AFLAGS+= -elf diff --git a/sys/boot/i386/btx/lib/btxcsu.s b/sys/boot/i386/btx/lib/btxcsu.s index 9b3e4c24e19c..f08ae754f826 100644 --- a/sys/boot/i386/btx/lib/btxcsu.s +++ b/sys/boot/i386/btx/lib/btxcsu.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxcsu.s,v 1.1 1998/09/14 10:37:00 rnordier Exp $ +# $FreeBSD$ # # BTX C startup code (ELF). diff --git a/sys/boot/i386/btx/lib/btxsys.s b/sys/boot/i386/btx/lib/btxsys.s index 16e3228a50ec..9c77b4295e7c 100644 --- a/sys/boot/i386/btx/lib/btxsys.s +++ b/sys/boot/i386/btx/lib/btxsys.s @@ -13,7 +13,7 @@ # purpose. # -# $Id:$ +# $FreeBSD$ # # BTX system calls. diff --git a/sys/boot/i386/btx/lib/btxv86.h b/sys/boot/i386/btx/lib/btxv86.h index 1e7717f069c7..1152f8b1d963 100644 --- a/sys/boot/i386/btx/lib/btxv86.h +++ b/sys/boot/i386/btx/lib/btxv86.h @@ -14,7 +14,7 @@ */ /* - * $Id: btxv86.h,v 1.3 1998/10/02 16:22:54 msmith Exp $ + * $FreeBSD$ */ #ifndef _BTXV86_H_ diff --git a/sys/boot/i386/btx/lib/btxv86.s b/sys/boot/i386/btx/lib/btxv86.s index 46709a39540c..0d7d1116322d 100644 --- a/sys/boot/i386/btx/lib/btxv86.s +++ b/sys/boot/i386/btx/lib/btxv86.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxv86.s,v 1.1 1998/09/14 10:37:00 rnordier Exp $ +# $FreeBSD$ # # BTX V86 interface. diff --git a/sys/boot/i386/gptboot/Makefile b/sys/boot/i386/gptboot/Makefile index 25ec504a0acc..578b452c6051 100644 --- a/sys/boot/i386/gptboot/Makefile +++ b/sys/boot/i386/gptboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1999/04/05 07:24:51 rnordier Exp $ +# $FreeBSD$ PROG= boot2 NOMAN= diff --git a/sys/boot/i386/gptboot/gptboot.c b/sys/boot/i386/gptboot/gptboot.c index 67c5ec85289e..eefcf086c5f2 100644 --- a/sys/boot/i386/gptboot/gptboot.c +++ b/sys/boot/i386/gptboot/gptboot.c @@ -14,7 +14,7 @@ */ /* - * $Id: boot2.c,v 1.23 1999/04/05 07:36:30 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/kgzldr/Makefile b/sys/boot/i386/kgzldr/Makefile index 2d1e840f5a49..bb97590301d5 100644 --- a/sys/boot/i386/kgzldr/Makefile +++ b/sys/boot/i386/kgzldr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1999/07/19 18:07:44 rnordier Exp $ +# $FreeBSD$ PROG= kgzldr.o SRCS= start.s boot.c inflate.c lib.c crt.s sio.s diff --git a/sys/boot/i386/kgzldr/boot.c b/sys/boot/i386/kgzldr/boot.c index 0313be7b34c1..cbcd498fadd2 100644 --- a/sys/boot/i386/kgzldr/boot.c +++ b/sys/boot/i386/kgzldr/boot.c @@ -23,7 +23,7 @@ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/kgzldr/crt.s b/sys/boot/i386/kgzldr/crt.s index 4c0474755d47..cfb479fd2d84 100644 --- a/sys/boot/i386/kgzldr/crt.s +++ b/sys/boot/i386/kgzldr/crt.s @@ -24,7 +24,7 @@ # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # From: btx.s 1.10 1999/02/25 16:27:41 rnordier -# $Id:$ +# $FreeBSD$ # # Screen defaults and assumptions. diff --git a/sys/boot/i386/kgzldr/kgzldr.h b/sys/boot/i386/kgzldr/kgzldr.h index 7f18c7e0b5d3..5cd5b44b6005 100644 --- a/sys/boot/i386/kgzldr/kgzldr.h +++ b/sys/boot/i386/kgzldr/kgzldr.h @@ -23,7 +23,7 @@ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #define KGZ_CRT 0x1 /* Video console */ diff --git a/sys/boot/i386/kgzldr/lib.c b/sys/boot/i386/kgzldr/lib.c index f763f3119274..ebec384a0b27 100644 --- a/sys/boot/i386/kgzldr/lib.c +++ b/sys/boot/i386/kgzldr/lib.c @@ -23,7 +23,7 @@ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/kgzldr/sio.s b/sys/boot/i386/kgzldr/sio.s index 78fd6ca31373..bb354e297dd0 100644 --- a/sys/boot/i386/kgzldr/sio.s +++ b/sys/boot/i386/kgzldr/sio.s @@ -24,7 +24,7 @@ # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # From: sio.s 1.3 1999/01/10 14:48:03 rnordier -# $Id:$ +# $FreeBSD$ # .set SIO_PRT,SIOPRT # Base port diff --git a/sys/boot/i386/kgzldr/start.s b/sys/boot/i386/kgzldr/start.s index d565cecfbf51..550fa526d946 100644 --- a/sys/boot/i386/kgzldr/start.s +++ b/sys/boot/i386/kgzldr/start.s @@ -23,7 +23,7 @@ # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id:$ +# $FreeBSD$ # .set entry,0x10 # kgz.entry diff --git a/sys/boot/i386/libi386/Makefile b/sys/boot/i386/libi386/Makefile index 2cfd2e345956..e28ac4acc04a 100644 --- a/sys/boot/i386/libi386/Makefile +++ b/sys/boot/i386/libi386/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1998/12/22 11:51:25 abial Exp $ +# $FreeBSD$ # LIB= i386 NOPIC= diff --git a/sys/boot/i386/libi386/aout_freebsd.c b/sys/boot/i386/libi386/aout_freebsd.c index 96d74d81d00f..b81e55155389 100644 --- a/sys/boot/i386/libi386/aout_freebsd.c +++ b/sys/boot/i386/libi386/aout_freebsd.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aout_freebsd.c,v 1.10 1998/10/09 07:11:19 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/biosdisk.c b/sys/boot/i386/libi386/biosdisk.c index 00c38eeb4a6b..2b5ba095b086 100644 --- a/sys/boot/i386/libi386/biosdisk.c +++ b/sys/boot/i386/libi386/biosdisk.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: biosdisk.c,v 1.23 1999/01/25 23:07:02 rnordier Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/i386/libi386/biospci.c b/sys/boot/i386/libi386/biospci.c index 92f4fd28c297..483384c2c157 100644 --- a/sys/boot/i386/libi386/biospci.c +++ b/sys/boot/i386/libi386/biospci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/boot/i386/libi386/biospnp.c b/sys/boot/i386/libi386/biospnp.c index a6064ba27462..616a22cdc458 100644 --- a/sys/boot/i386/libi386/biospnp.c +++ b/sys/boot/i386/libi386/biospnp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: biospnp.c,v 1.2 1998/10/23 22:29:08 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/i386/libi386/bootinfo.c b/sys/boot/i386/libi386/bootinfo.c index a07012e061b9..8363b9fd25a1 100644 --- a/sys/boot/i386/libi386/bootinfo.c +++ b/sys/boot/i386/libi386/bootinfo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.20 1999/06/21 18:27:01 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/bootinfo32.c b/sys/boot/i386/libi386/bootinfo32.c index a07012e061b9..8363b9fd25a1 100644 --- a/sys/boot/i386/libi386/bootinfo32.c +++ b/sys/boot/i386/libi386/bootinfo32.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.20 1999/06/21 18:27:01 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/bootinfo64.c b/sys/boot/i386/libi386/bootinfo64.c index a07012e061b9..8363b9fd25a1 100644 --- a/sys/boot/i386/libi386/bootinfo64.c +++ b/sys/boot/i386/libi386/bootinfo64.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.20 1999/06/21 18:27:01 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/comconsole.c b/sys/boot/i386/libi386/comconsole.c index 7b35d1dce8c9..ee6fbc8f53a7 100644 --- a/sys/boot/i386/libi386/comconsole.c +++ b/sys/boot/i386/libi386/comconsole.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: comconsole.c,v 1.5 1998/11/22 07:59:16 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/devicename.c b/sys/boot/i386/libi386/devicename.c index 418163edeaee..dfa685eb1b87 100644 --- a/sys/boot/i386/libi386/devicename.c +++ b/sys/boot/i386/libi386/devicename.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devicename.c,v 1.2 1998/09/26 01:30:20 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/elf32_freebsd.c b/sys/boot/i386/libi386/elf32_freebsd.c index 130b0cab465b..a3d3ef9412d6 100644 --- a/sys/boot/i386/libi386/elf32_freebsd.c +++ b/sys/boot/i386/libi386/elf32_freebsd.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf_freebsd.c,v 1.5 1998/10/04 20:58:46 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/elf64_freebsd.c b/sys/boot/i386/libi386/elf64_freebsd.c index 130b0cab465b..a3d3ef9412d6 100644 --- a/sys/boot/i386/libi386/elf64_freebsd.c +++ b/sys/boot/i386/libi386/elf64_freebsd.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf_freebsd.c,v 1.5 1998/10/04 20:58:46 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/elf_freebsd.c b/sys/boot/i386/libi386/elf_freebsd.c index 130b0cab465b..a3d3ef9412d6 100644 --- a/sys/boot/i386/libi386/elf_freebsd.c +++ b/sys/boot/i386/libi386/elf_freebsd.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf_freebsd.c,v 1.5 1998/10/04 20:58:46 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/libi386/gatea20.c b/sys/boot/i386/libi386/gatea20.c index bb109dbe7cf2..b85265489e7d 100644 --- a/sys/boot/i386/libi386/gatea20.c +++ b/sys/boot/i386/libi386/gatea20.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: gatea20.c,v 1.2 1997/10/29 00:32:49 fvdl Exp $ */ diff --git a/sys/boot/i386/libi386/i386_module.c b/sys/boot/i386/libi386/i386_module.c index 3d75c760ed0a..7040e9fcd300 100644 --- a/sys/boot/i386/libi386/i386_module.c +++ b/sys/boot/i386/libi386/i386_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i386_module.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/i386/libi386/libi386.h b/sys/boot/i386/libi386/libi386.h index a7be85148303..1868faa9c2b6 100644 --- a/sys/boot/i386/libi386/libi386.h +++ b/sys/boot/i386/libi386/libi386.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: libi386.h,v 1.8 1998/10/02 20:53:17 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/i386/libi386/pread.c b/sys/boot/i386/libi386/pread.c index 36ffb014cdbf..fb73f042216f 100644 --- a/sys/boot/i386/libi386/pread.c +++ b/sys/boot/i386/libi386/pread.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * From: $NetBSD: pread.c,v 1.2 1997/03/22 01:48:38 thorpej Exp $ */ diff --git a/sys/boot/i386/libi386/vidconsole.c b/sys/boot/i386/libi386/vidconsole.c index 05e77110c2ef..a79bb05ce093 100644 --- a/sys/boot/i386/libi386/vidconsole.c +++ b/sys/boot/i386/libi386/vidconsole.c @@ -26,7 +26,7 @@ * * From Id: probe_keyboard.c,v 1.13 1997/06/09 05:10:55 bde Exp * - * $Id: vidconsole.c,v 1.10 1998/12/31 13:44:04 abial Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/loader/Makefile b/sys/boot/i386/loader/Makefile index 966d4369afe7..e74d16f974f2 100644 --- a/sys/boot/i386/loader/Makefile +++ b/sys/boot/i386/loader/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.34 1999/04/24 17:49:47 dcs Exp $ +# $FreeBSD$ BASE= loader PROG= ${BASE} diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c index 9b4d554bc1a0..6ffa49f6a43b 100644 --- a/sys/boot/i386/loader/conf.c +++ b/sys/boot/i386/loader/conf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: conf.c,v 1.9 1998/10/22 20:23:58 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/i386/loader/loader.8 b/sys/boot/i386/loader/loader.8 index 27268bb59f7d..ef847c10e68f 100644 --- a/sys/boot/i386/loader/loader.8 +++ b/sys/boot/i386/loader/loader.8 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: loader.8,v 1.7 1999/06/23 09:06:18 ru Exp $ +.\" $FreeBSD$ .\" .\" Note: The date here should be updated whenever a non-trivial .\" change is made to the manual page. diff --git a/sys/boot/i386/loader/main.c b/sys/boot/i386/loader/main.c index dfd1bfffbb98..327773820633 100644 --- a/sys/boot/i386/loader/main.c +++ b/sys/boot/i386/loader/main.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.13 1998/10/22 20:23:58 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/i386/loader/version b/sys/boot/i386/loader/version index ad310451c498..01f8500452c3 100644 --- a/sys/boot/i386/loader/version +++ b/sys/boot/i386/loader/version @@ -1,4 +1,4 @@ -$Id: version,v 1.3 1999/02/08 04:14:31 dcs Exp $ +$FreeBSD$ NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this file is important. Make sure the current version number is on line 6. diff --git a/sys/boot/i386/mbr/Makefile b/sys/boot/i386/mbr/Makefile index ef206e5374d4..1090ab02bb11 100644 --- a/sys/boot/i386/mbr/Makefile +++ b/sys/boot/i386/mbr/Makefile @@ -1,4 +1,4 @@ -# $Id: $ +# $FreeBSD$ PROG= mbr NOMAN= diff --git a/sys/boot/i386/mbr/mbr.m4 b/sys/boot/i386/mbr/mbr.m4 index 768e26281771..c8783b92059e 100644 --- a/sys/boot/i386/mbr/mbr.m4 +++ b/sys/boot/i386/mbr/mbr.m4 @@ -13,7 +13,7 @@ # purpose. # -# $Id: $ +# $FreeBSD$ define(_al,0x0)dnl define(_cl,0x1)dnl diff --git a/sys/boot/i386/mbr/mbr.s b/sys/boot/i386/mbr/mbr.s index f849fb2a0ab1..6c030de1c79b 100644 --- a/sys/boot/i386/mbr/mbr.s +++ b/sys/boot/i386/mbr/mbr.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: mbr.s,v 1.1.1.1 1999/05/24 22:36:24 rnordier Exp $ +# $FreeBSD$ # Master boot record diff --git a/sys/boot/ofw/libofw/devicename.c b/sys/boot/ofw/libofw/devicename.c index dcd07ede1fcb..d8ee1133299e 100644 --- a/sys/boot/ofw/libofw/devicename.c +++ b/sys/boot/ofw/libofw/devicename.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devicename.c,v 1.2 1998/08/22 10:31:01 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/ofw/libofw/ofw_console.c b/sys/boot/ofw/libofw/ofw_console.c index 380326ccd0ec..e32d43d3b66f 100644 --- a/sys/boot/ofw/libofw/ofw_console.c +++ b/sys/boot/ofw/libofw/ofw_console.c @@ -1,4 +1,4 @@ -/* $Id: prom.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: prom.c,v 1.3 1997/09/06 14:03:58 drochner Exp $ */ /* diff --git a/sys/boot/ofw/libofw/ofw_copy.c b/sys/boot/ofw/libofw/ofw_copy.c index 196915c1eb23..95b6cba677e4 100644 --- a/sys/boot/ofw/libofw/ofw_copy.c +++ b/sys/boot/ofw/libofw/ofw_copy.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_copy.c,v 1.2 1998/09/03 02:10:07 msmith Exp $ + * $FreeBSD$ */ /* * MD primitives supporting placement of module data diff --git a/sys/boot/ofw/libofw/ofw_module.c b/sys/boot/ofw/libofw/ofw_module.c index afa065f5bd04..4ac21d42242d 100644 --- a/sys/boot/ofw/libofw/ofw_module.c +++ b/sys/boot/ofw/libofw/ofw_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpha_module.c,v 1.1.1.1 1998/08/21 03:17:42 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/Makefile b/sys/boot/pc98/Makefile index 72ce2cebd711..5d013df2dce7 100644 --- a/sys/boot/pc98/Makefile +++ b/sys/boot/pc98/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/10/14 20:40:56 rnordier Exp $ +# $FreeBSD$ SUBDIR= btx boot2 libpc98 loader diff --git a/sys/boot/pc98/boot2/Makefile b/sys/boot/pc98/boot2/Makefile index c7434725ccc7..800306dde4db 100644 --- a/sys/boot/pc98/boot2/Makefile +++ b/sys/boot/pc98/boot2/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/02/03 08:39:08 kato Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/boot/pc98/boot2/asm.S b/sys/boot/pc98/boot2/asm.S index 01d47f20f01b..f14c7f55104c 100644 --- a/sys/boot/pc98/boot2/asm.S +++ b/sys/boot/pc98/boot2/asm.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:13 rpd - * $Id: asm.S,v 1.4 1997/09/01 10:38:24 kato Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/pc98/boot2/asm.h b/sys/boot/pc98/boot2/asm.h index 2e0fcac85abe..6f4bcc39e52d 100644 --- a/sys/boot/pc98/boot2/asm.h +++ b/sys/boot/pc98/boot2/asm.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.7 92/02/29 15:33:41 rpd - * $Id: asm.h,v 1.3 1997/02/22 09:43:04 peter Exp $ + * $FreeBSD$ */ #define S_ARG0 4(%esp) diff --git a/sys/boot/pc98/boot2/bios.S b/sys/boot/pc98/boot2/bios.S index 4c667444ac37..88d9506c46b4 100644 --- a/sys/boot/pc98/boot2/bios.S +++ b/sys/boot/pc98/boot2/bios.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: bios.S,v 1.9 1998/05/02 02:06:07 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/boot2/boot.c b/sys/boot/pc98/boot2/boot.c index df9d7fcb18e1..df8e755062a3 100644 --- a/sys/boot/pc98/boot2/boot.c +++ b/sys/boot/pc98/boot2/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.2 1999/03/04 10:45:06 kato Exp $ + * $FreeBSD$ */ diff --git a/sys/boot/pc98/boot2/boot.h b/sys/boot/pc98/boot2/boot.h index 2104071add6c..4e32192eebc6 100644 --- a/sys/boot/pc98/boot2/boot.h +++ b/sys/boot/pc98/boot2/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id: boot.h,v 1.14 1998/10/11 15:08:50 kato Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/pc98/boot2/disk.c b/sys/boot/pc98/boot2/disk.c index 7aa768c57208..ad9d3ff74d88 100644 --- a/sys/boot/pc98/boot2/disk.c +++ b/sys/boot/pc98/boot2/disk.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:49 rpd - * $Id: disk.c,v 1.9 1997/05/28 09:22:59 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/boot2/io.c b/sys/boot/pc98/boot2/io.c index 6047364469df..dc5fb00f94ce 100644 --- a/sys/boot/pc98/boot2/io.c +++ b/sys/boot/pc98/boot2/io.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:57 rpd - * $Id: io.c,v 1.13 1997/12/05 11:50:42 kato Exp $ + * $FreeBSD$ */ #include "boot.h" diff --git a/sys/boot/pc98/boot2/serial.S b/sys/boot/pc98/boot2/serial.S index fed109ebdc5b..166881517b1b 100644 --- a/sys/boot/pc98/boot2/serial.S +++ b/sys/boot/pc98/boot2/serial.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: serial.S,v 1.1 1999/02/03 08:39:08 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/boot2/start.S b/sys/boot/pc98/boot2/start.S index 24459cdf6d04..a7e69355d621 100644 --- a/sys/boot/pc98/boot2/start.S +++ b/sys/boot/pc98/boot2/start.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:29 rpd - * $Id: start.S,v 1.6 1998/07/30 02:27:41 alex Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/boot2/sys.c b/sys/boot/pc98/boot2/sys.c index 591d43214d9c..1b138b36d479 100644 --- a/sys/boot/pc98/boot2/sys.c +++ b/sys/boot/pc98/boot2/sys.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:34 rpd - * $Id: sys.c,v 1.15 1998/05/02 02:06:08 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/boot2/table.c b/sys/boot/pc98/boot2/table.c index 059ace23d035..b6e113a014a8 100644 --- a/sys/boot/pc98/boot2/table.c +++ b/sys/boot/pc98/boot2/table.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:43 rpd - * $Id: table.c,v 1.1 1999/02/03 08:39:08 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/btx/Makefile b/sys/boot/pc98/btx/Makefile index b4c19e54926e..39f78ed639b9 100644 --- a/sys/boot/pc98/btx/Makefile +++ b/sys/boot/pc98/btx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/02/03 08:39:08 kato Exp $ +# $FreeBSD$ SUBDIR= btx btxldr lib diff --git a/sys/boot/pc98/btx/btx/Makefile b/sys/boot/pc98/btx/btx/Makefile index b74deeaf18f1..a856eda53040 100644 --- a/sys/boot/pc98/btx/btx/Makefile +++ b/sys/boot/pc98/btx/btx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/10/13 18:29:18 rnordier Exp $ +# $FreeBSD$ M4?= m4 diff --git a/sys/boot/pc98/btx/btx/btx.S b/sys/boot/pc98/btx/btx/btx.S index d4e8d894ec06..eb191316c094 100644 --- a/sys/boot/pc98/btx/btx/btx.S +++ b/sys/boot/pc98/btx/btx/btx.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: btx.s,v 1.1 1999/02/03 08:39:08 kato Exp $ +# $FreeBSD$ # # Memory layout. diff --git a/sys/boot/pc98/btx/btx/btx.m4 b/sys/boot/pc98/btx/btx/btx.m4 index 6526c6b29c6e..70649bbb6c91 100644 --- a/sys/boot/pc98/btx/btx/btx.m4 +++ b/sys/boot/pc98/btx/btx/btx.m4 @@ -13,7 +13,7 @@ # purpose. # -# $Id: btx.m4,v 1.1.1.1 1998/09/12 04:29:23 rnordier Exp $ +# $FreeBSD$ define(_al,0x0)dnl define(_cl,0x1)dnl diff --git a/sys/boot/pc98/btx/btx/btx.s b/sys/boot/pc98/btx/btx/btx.s index d4e8d894ec06..eb191316c094 100644 --- a/sys/boot/pc98/btx/btx/btx.s +++ b/sys/boot/pc98/btx/btx/btx.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btx.s,v 1.1 1999/02/03 08:39:08 kato Exp $ +# $FreeBSD$ # # Memory layout. diff --git a/sys/boot/pc98/btx/btxldr/Makefile b/sys/boot/pc98/btx/btxldr/Makefile index 5bd155c83317..b6f40162d23a 100644 --- a/sys/boot/pc98/btx/btxldr/Makefile +++ b/sys/boot/pc98/btx/btxldr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/10/30 00:11:35 msmith Exp $ +# $FreeBSD$ ORG=0x100000 #AFLAGS+= -x assembler-with-cpp diff --git a/sys/boot/pc98/btx/btxldr/btxldr.S b/sys/boot/pc98/btx/btxldr/btxldr.S index 6217eb234e7d..cc8c6a1c06d3 100644 --- a/sys/boot/pc98/btx/btxldr/btxldr.S +++ b/sys/boot/pc98/btx/btxldr/btxldr.S @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxldr.s,v 1.5 1999/01/22 13:07:17 rnordier Exp $ +# $FreeBSD$ # # Prototype BTX loader program, written in a couple of hours. The diff --git a/sys/boot/pc98/btx/btxldr/btxldr.s b/sys/boot/pc98/btx/btxldr/btxldr.s index 6217eb234e7d..cc8c6a1c06d3 100644 --- a/sys/boot/pc98/btx/btxldr/btxldr.s +++ b/sys/boot/pc98/btx/btxldr/btxldr.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxldr.s,v 1.5 1999/01/22 13:07:17 rnordier Exp $ +# $FreeBSD$ # # Prototype BTX loader program, written in a couple of hours. The diff --git a/sys/boot/pc98/btx/lib/Makefile b/sys/boot/pc98/btx/lib/Makefile index e47e653872ec..40c65657ea7a 100644 --- a/sys/boot/pc98/btx/lib/Makefile +++ b/sys/boot/pc98/btx/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1998/10/11 11:27:48 rnordier Exp $ +# $FreeBSD$ OBJS= btxcsu.o btxsys.o btxv86.o AFLAGS+= -elf diff --git a/sys/boot/pc98/btx/lib/btxcsu.s b/sys/boot/pc98/btx/lib/btxcsu.s index 28b878be2416..f08ae754f826 100644 --- a/sys/boot/pc98/btx/lib/btxcsu.s +++ b/sys/boot/pc98/btx/lib/btxcsu.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxcsu.s,v 1.2 1998/10/04 21:15:45 rnordier Exp $ +# $FreeBSD$ # # BTX C startup code (ELF). diff --git a/sys/boot/pc98/btx/lib/btxsys.s b/sys/boot/pc98/btx/lib/btxsys.s index 6273bfa45e7d..9c77b4295e7c 100644 --- a/sys/boot/pc98/btx/lib/btxsys.s +++ b/sys/boot/pc98/btx/lib/btxsys.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxsys.s,v 1.1 1998/09/14 10:37:00 rnordier Exp $ +# $FreeBSD$ # # BTX system calls. diff --git a/sys/boot/pc98/btx/lib/btxv86.h b/sys/boot/pc98/btx/lib/btxv86.h index 05708f2a3f21..1152f8b1d963 100644 --- a/sys/boot/pc98/btx/lib/btxv86.h +++ b/sys/boot/pc98/btx/lib/btxv86.h @@ -14,7 +14,7 @@ */ /* - * $Id: btxv86.h,v 1.4 1998/10/02 20:52:26 msmith Exp $ + * $FreeBSD$ */ #ifndef _BTXV86_H_ diff --git a/sys/boot/pc98/btx/lib/btxv86.s b/sys/boot/pc98/btx/lib/btxv86.s index 14b77674f3a5..0d7d1116322d 100644 --- a/sys/boot/pc98/btx/lib/btxv86.s +++ b/sys/boot/pc98/btx/lib/btxv86.s @@ -13,7 +13,7 @@ # purpose. # -# $Id: btxv86.s,v 1.2 1998/10/22 20:22:07 msmith Exp $ +# $FreeBSD$ # # BTX V86 interface. diff --git a/sys/boot/pc98/libpc98/Makefile b/sys/boot/pc98/libpc98/Makefile index fad01497c9f3..cde163e3e382 100644 --- a/sys/boot/pc98/libpc98/Makefile +++ b/sys/boot/pc98/libpc98/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1999/01/10 14:48:04 rnordier Exp $ +# $FreeBSD$ # LIB= pc98 NOPIC= diff --git a/sys/boot/pc98/libpc98/biosdisk.c b/sys/boot/pc98/libpc98/biosdisk.c index 169452f8104f..a82ef4a2ec3f 100644 --- a/sys/boot/pc98/libpc98/biosdisk.c +++ b/sys/boot/pc98/libpc98/biosdisk.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: biosdisk.c,v 1.4 1999/08/05 03:12:20 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/boot/pc98/libpc98/bootinfo.c b/sys/boot/pc98/libpc98/bootinfo.c index 92bb219b0bad..6b780f1767ec 100644 --- a/sys/boot/pc98/libpc98/bootinfo.c +++ b/sys/boot/pc98/libpc98/bootinfo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.4 1999/06/06 12:46:40 kato Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/pc98/libpc98/comconsole.c b/sys/boot/pc98/libpc98/comconsole.c index 82e4642e7cc5..958b4e01942a 100644 --- a/sys/boot/pc98/libpc98/comconsole.c +++ b/sys/boot/pc98/libpc98/comconsole.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: comconsole.c,v 1.6 1999/01/10 14:48:05 rnordier Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/pc98/libpc98/gatea20.c b/sys/boot/pc98/libpc98/gatea20.c index 45e441012b55..cad48c1badc3 100644 --- a/sys/boot/pc98/libpc98/gatea20.c +++ b/sys/boot/pc98/libpc98/gatea20.c @@ -1,5 +1,5 @@ /* - * $Id: gatea20.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ + * $FreeBSD$ * From: $NetBSD: gatea20.c,v 1.2 1997/10/29 00:32:49 fvdl Exp $ */ diff --git a/sys/boot/pc98/libpc98/vidconsole.c b/sys/boot/pc98/libpc98/vidconsole.c index 7804b6666750..db62063a4328 100644 --- a/sys/boot/pc98/libpc98/vidconsole.c +++ b/sys/boot/pc98/libpc98/vidconsole.c @@ -26,7 +26,7 @@ * * From Id: probe_keyboard.c,v 1.13 1997/06/09 05:10:55 bde Exp * - * $Id: vidconsole.c,v 1.1 1999/02/03 08:39:09 kato Exp $ + * $FreeBSD$ */ #include diff --git a/sys/boot/pc98/loader/Makefile b/sys/boot/pc98/loader/Makefile index e51a952db86c..6d0af3895cdc 100644 --- a/sys/boot/pc98/loader/Makefile +++ b/sys/boot/pc98/loader/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1999/04/25 03:56:44 kato Exp $ +# $FreeBSD$ BASE= loader PROG= ${BASE} diff --git a/sys/boot/pc98/loader/main.c b/sys/boot/pc98/loader/main.c index 4b7aa2f010fb..0fabadfe5b8e 100644 --- a/sys/boot/pc98/loader/main.c +++ b/sys/boot/pc98/loader/main.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.2 1999/03/04 10:48:14 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/cam/cam.c b/sys/cam/cam.c index 4e11061752cd..4c28e42954fc 100644 --- a/sys/cam/cam.c +++ b/sys/cam/cam.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam.c,v 1.1 1998/09/15 06:33:23 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/cam.h b/sys/cam/cam.h index c182fd628287..7f656032eddc 100644 --- a/sys/cam/cam.h +++ b/sys/cam/cam.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam.h,v 1.1 1998/09/15 06:33:23 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_H diff --git a/sys/cam/cam_ccb.h b/sys/cam/cam_ccb.h index a44334568fb8..c58a0a1b277b 100644 --- a/sys/cam/cam_ccb.h +++ b/sys/cam/cam_ccb.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_ccb.h,v 1.8 1999/08/16 22:14:47 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_CCB_H diff --git a/sys/cam/cam_conf.h b/sys/cam/cam_conf.h index 080575c66c60..fc777c17d392 100644 --- a/sys/cam/cam_conf.h +++ b/sys/cam/cam_conf.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _CAM_CAM_CONF_H diff --git a/sys/cam/cam_debug.h b/sys/cam/cam_debug.h index 6fa6d5282910..aa1a50dec9b6 100644 --- a/sys/cam/cam_debug.h +++ b/sys/cam/cam_debug.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_debug.h,v 1.3 1998/12/05 23:55:48 mjacob Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_DEBUG_H #define _CAM_CAM_DEBUG_H 1 diff --git a/sys/cam/cam_extend.c b/sys/cam/cam_extend.c index 8570a35dd6c3..0802febac443 100644 --- a/sys/cam/cam_extend.c +++ b/sys/cam/cam_extend.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: cam_extend.c,v 1.1 1998/09/15 06:33:23 gibbs Exp $ + * $FreeBSD$ */ /* * XXX XXX XXX XXX We should get DEVFS working so that we diff --git a/sys/cam/cam_extend.h b/sys/cam/cam_extend.h index 8aec51d391fe..21ade23b40ac 100644 --- a/sys/cam/cam_extend.h +++ b/sys/cam/cam_extend.h @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id$ + * $FreeBSD$ */ #ifndef _CAM_CAM_EXTEND_H diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index a73972cf05f6..6ed5ddf76ef0 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_periph.c,v 1.18 1999/06/26 02:47:06 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/cam_periph.h b/sys/cam/cam_periph.h index 2efee41c4461..acb7bd643391 100644 --- a/sys/cam/cam_periph.h +++ b/sys/cam/cam_periph.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_periph.h,v 1.3 1998/10/22 22:16:48 ken Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_PERIPH_H diff --git a/sys/cam/cam_queue.c b/sys/cam/cam_queue.c index 3ec7ad2006f9..988a1a2f42e3 100644 --- a/sys/cam/cam_queue.c +++ b/sys/cam/cam_queue.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_queue.c,v 1.3 1999/04/19 21:26:08 gibbs Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/cam/cam_queue.h b/sys/cam/cam_queue.h index 36685259755a..d3459315a7c9 100644 --- a/sys/cam/cam_queue.h +++ b/sys/cam/cam_queue.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_queue.h,v 1.3 1999/04/07 22:57:48 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_QUEUE_H diff --git a/sys/cam/cam_sim.c b/sys/cam/cam_sim.c index feaf9ed69491..c8843e24c825 100644 --- a/sys/cam/cam_sim.c +++ b/sys/cam/cam_sim.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_sim.c,v 1.1 1998/09/15 06:33:23 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/cam_sim.h b/sys/cam/cam_sim.h index 53e7937b8570..532504911633 100644 --- a/sys/cam/cam_sim.h +++ b/sys/cam/cam_sim.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_sim.h,v 1.1 1998/09/15 06:33:23 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_SIM_H diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c index 0f92c6e3fac6..d203aa1e94ca 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_xpt.c,v 1.67 1999/08/16 22:22:41 gibbs Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/cam/cam_xpt.h b/sys/cam/cam_xpt.h index 0ed413d9dfa6..6d41f6c52f78 100644 --- a/sys/cam/cam_xpt.h +++ b/sys/cam/cam_xpt.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _CAM_CAM_XPT_H diff --git a/sys/cam/cam_xpt_periph.h b/sys/cam/cam_xpt_periph.h index ee64e213ae94..111402f04504 100644 --- a/sys/cam/cam_xpt_periph.h +++ b/sys/cam/cam_xpt_periph.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _CAM_CAM_XPT_PERIPH_H diff --git a/sys/cam/cam_xpt_sim.h b/sys/cam/cam_xpt_sim.h index 267deeb7e4f0..698e638dddb6 100644 --- a/sys/cam/cam_xpt_sim.h +++ b/sys/cam/cam_xpt_sim.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_xpt_sim.h,v 1.3 1999/03/05 23:18:56 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_CAM_XPT_SIM_H diff --git a/sys/cam/scsi/scsi_all.c b/sys/cam/scsi/scsi_all.c index 1203699e78d5..a1ea40251e2a 100644 --- a/sys/cam/scsi/scsi_all.c +++ b/sys/cam/scsi/scsi_all.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_all.c,v 1.8 1998/12/06 00:05:47 mjacob Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/scsi/scsi_all.h b/sys/cam/scsi/scsi_all.h index 9ced6c3c5fa6..d6d802bfceac 100644 --- a/sys/cam/scsi/scsi_all.h +++ b/sys/cam/scsi/scsi_all.h @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id: scsi_all.h,v 1.7 1999/05/09 01:25:22 ken Exp $ + * $FreeBSD$ */ /* diff --git a/sys/cam/scsi/scsi_cd.c b/sys/cam/scsi/scsi_cd.c index f57ef1a8e950..a6d4ac819af7 100644 --- a/sys/cam/scsi/scsi_cd.c +++ b/sys/cam/scsi/scsi_cd.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_cd.c,v 1.23 1999/05/31 11:23:58 phk Exp $ + * $FreeBSD$ */ /* * Portions of this driver taken from the original FreeBSD cd driver. diff --git a/sys/cam/scsi/scsi_ch.c b/sys/cam/scsi/scsi_ch.c index 537090037e8a..fd681a65f24c 100644 --- a/sys/cam/scsi/scsi_ch.c +++ b/sys/cam/scsi/scsi_ch.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_ch.c,v 1.14 1999/05/31 11:24:00 phk Exp $ + * $FreeBSD$ */ /* * Derived from the NetBSD SCSI changer driver. diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index ac0af545f637..bcd752dc8a32 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_da.c,v 1.34 1999/08/21 06:23:50 msmith Exp $ + * $FreeBSD$ */ #include "opt_hw_wdog.h" diff --git a/sys/cam/scsi/scsi_da.h b/sys/cam/scsi/scsi_da.h index d9b95e319e13..88a0fcd81bb9 100644 --- a/sys/cam/scsi/scsi_da.h +++ b/sys/cam/scsi/scsi_da.h @@ -46,7 +46,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id: scsi_da.h,v 1.1 1998/09/15 06:36:34 gibbs Exp $ + * $FreeBSD$ */ #ifndef _SCSI_SCSI_DA_H diff --git a/sys/cam/scsi/scsi_pass.c b/sys/cam/scsi/scsi_pass.c index b900c3b02f55..958e1664de18 100644 --- a/sys/cam/scsi/scsi_pass.c +++ b/sys/cam/scsi/scsi_pass.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_pass.c,v 1.12 1999/05/31 11:24:05 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/scsi/scsi_pass.h b/sys/cam/scsi/scsi_pass.h index 12ad2e207c8f..39e92c35227e 100644 --- a/sys/cam/scsi/scsi_pass.h +++ b/sys/cam/scsi/scsi_pass.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_pass.h,v 1.1 1998/09/15 06:36:34 gibbs Exp $ + * $FreeBSD$ */ #ifndef _SCSI_PASS_H diff --git a/sys/cam/scsi/scsi_pt.c b/sys/cam/scsi/scsi_pt.c index 92ed7b9b1053..72350cb15c3e 100644 --- a/sys/cam/scsi/scsi_pt.c +++ b/sys/cam/scsi/scsi_pt.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_pt.c,v 1.11 1999/08/17 20:25:47 billf Exp $ + * $FreeBSD$ */ #include diff --git a/sys/cam/scsi/scsi_pt.h b/sys/cam/scsi/scsi_pt.h index d965ee22b6e5..b5eea824fcf6 100644 --- a/sys/cam/scsi/scsi_pt.h +++ b/sys/cam/scsi/scsi_pt.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SCSI_SCSI_PT_H diff --git a/sys/cam/scsi/scsi_sa.c b/sys/cam/scsi/scsi_sa.c index d393884ddada..d1d152755f52 100644 --- a/sys/cam/scsi/scsi_sa.c +++ b/sys/cam/scsi/scsi_sa.c @@ -1,5 +1,5 @@ /* - * $Id: scsi_sa.c,v 1.29 1999/06/24 15:21:10 mjacob Exp $ + * $FreeBSD$ * * Implementation of SCSI Sequential Access Peripheral driver for CAM. * diff --git a/sys/cam/scsi/scsi_sa.h b/sys/cam/scsi/scsi_sa.h index ab2d1bc15a26..be52eca28567 100644 --- a/sys/cam/scsi/scsi_sa.h +++ b/sys/cam/scsi/scsi_sa.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_sa.h,v 1.4 1999/02/05 07:19:23 mjacob Exp $ + * $FreeBSD$ */ #ifndef _SCSI_SCSI_SA_H diff --git a/sys/cam/scsi/scsi_targ_bh.c b/sys/cam/scsi/scsi_targ_bh.c index 3775b4d62b41..c5a5ec5c22e0 100644 --- a/sys/cam/scsi/scsi_targ_bh.c +++ b/sys/cam/scsi/scsi_targ_bh.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_targ_bh.c,v 1.1 1999/01/14 06:00:29 gibbs Exp $ + * $FreeBSD$ */ #include /* For offsetof */ diff --git a/sys/cam/scsi/scsi_target.c b/sys/cam/scsi/scsi_target.c index 5e7afc5610ba..70a50ea52afc 100644 --- a/sys/cam/scsi/scsi_target.c +++ b/sys/cam/scsi/scsi_target.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_target.c,v 1.14 1999/05/31 11:24:11 phk Exp $ + * $FreeBSD$ */ #include /* For offsetof */ diff --git a/sys/cam/scsi/scsi_targetio.h b/sys/cam/scsi/scsi_targetio.h index 9c5c0595d184..d20c9b08fbc2 100644 --- a/sys/cam/scsi/scsi_targetio.h +++ b/sys/cam/scsi/scsi_targetio.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_targetio.h,v 1.2 1999/03/05 23:25:11 gibbs Exp $ + * $FreeBSD$ */ #ifndef _CAM_SCSI_SCSI_TARGETIO_H_ diff --git a/sys/coda/cnode.h b/sys/coda/cnode.h index ee4573d51020..75d29acc22ed 100644 --- a/sys/coda/cnode.h +++ b/sys/coda/cnode.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/cnode.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: cnode.h,v 1.5 1998/11/11 20:32:20 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda.h b/sys/coda/coda.h index db2ec539b003..5a25bc67f152 100644 --- a/sys/coda/coda.h +++ b/sys/coda/coda.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda.h,v 1.6 1998/11/11 20:32:20 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_fbsd.c b/sys/coda/coda_fbsd.c index 22a5963acd29..ea16d154b4f7 100644 --- a/sys/coda/coda_fbsd.c +++ b/sys/coda/coda_fbsd.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_fbsd.cr,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_fbsd.c,v 1.15 1999/05/31 11:24:16 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_io.h b/sys/coda/coda_io.h index e896ff0813b7..6620f4f0c32e 100644 --- a/sys/coda/coda_io.h +++ b/sys/coda/coda_io.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_io.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_io.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_kernel.h b/sys/coda/coda_kernel.h index 33b372f49b13..cc0fd957f81c 100644 --- a/sys/coda/coda_kernel.h +++ b/sys/coda/coda_kernel.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_kernel.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_kernel.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_namecache.c b/sys/coda/coda_namecache.c index 63ee9f9772f7..23425b5a13dd 100644 --- a/sys/coda/coda_namecache.c +++ b/sys/coda/coda_namecache.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_namecache.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_namecache.c,v 1.8 1998/10/28 19:33:50 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_namecache.h b/sys/coda/coda_namecache.h index e4739114c2c8..11f2e80b12b2 100644 --- a/sys/coda/coda_namecache.h +++ b/sys/coda/coda_namecache.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_namecache.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_namecache.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_opstats.h b/sys/coda/coda_opstats.h index e62c04d3db1f..8661a07ebfa0 100644 --- a/sys/coda/coda_opstats.h +++ b/sys/coda/coda_opstats.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_opstats.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_opstats.h,v 1.3 1998/09/11 18:50:17 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_pioctl.h b/sys/coda/coda_pioctl.h index 57bc67ed0021..2c2577ce57ee 100644 --- a/sys/coda/coda_pioctl.h +++ b/sys/coda/coda_pioctl.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_pioctl.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_pioctl.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_psdev.c b/sys/coda/coda_psdev.c index cde967f04c9b..520702ba48d2 100644 --- a/sys/coda/coda_psdev.c +++ b/sys/coda/coda_psdev.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_psdev.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_psdev.c,v 1.10 1999/01/17 21:04:53 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_psdev.h b/sys/coda/coda_psdev.h index 11922adfe02c..c6276f3e710c 100644 --- a/sys/coda/coda_psdev.h +++ b/sys/coda/coda_psdev.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_psdev.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_psdev.c,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_subr.c b/sys/coda/coda_subr.c index f64123321f3b..aaf805c54ad6 100644 --- a/sys/coda/coda_subr.c +++ b/sys/coda/coda_subr.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_subr.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_subr.c,v 1.9 1999/01/17 20:25:15 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_subr.h b/sys/coda/coda_subr.h index fe27bfda19ce..71c8a3de3812 100644 --- a/sys/coda/coda_subr.h +++ b/sys/coda/coda_subr.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_subr.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_subr.h,v 1.5 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_venus.c b/sys/coda/coda_venus.c index 9853c7e834bb..f27357498d45 100644 --- a/sys/coda/coda_venus.c +++ b/sys/coda/coda_venus.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_venus.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_venus.c,v 1.7 1999/05/11 19:53:51 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_venus.h b/sys/coda/coda_venus.h index 6fdd15c60fad..392a73f07114 100644 --- a/sys/coda/coda_venus.h +++ b/sys/coda/coda_venus.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_venus.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_venus.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index fda83939beb5..35959df04239 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.c,v 1.16 1999/07/21 12:51:36 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_vfsops.h b/sys/coda/coda_vfsops.h index ef23c3fd3828..13a006d1b1c7 100644 --- a/sys/coda/coda_vfsops.h +++ b/sys/coda/coda_vfsops.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_vnops.c b/sys/coda/coda_vnops.c index b0a9bedec0cb..6614b4b2c508 100644 --- a/sys/coda/coda_vnops.c +++ b/sys/coda/coda_vnops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_vnops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vnops.c,v 1.17 1999/08/08 13:22:05 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/coda/coda_vnops.h b/sys/coda/coda_vnops.h index d188eb6fe5ff..0fb598582d75 100644 --- a/sys/coda/coda_vnops.h +++ b/sys/coda/coda_vnops.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_vnops.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vnops.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index a5b051fd1be9..b0e8a367c83a 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_file.c,v 1.30 1999/08/14 18:20:44 marcel Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c index 53becd770429..56a0eda42066 100644 --- a/sys/compat/linux/linux_ioctl.c +++ b/sys/compat/linux/linux_ioctl.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_ioctl.c,v 1.40 1999/08/14 13:26:44 marcel Exp $ + * $FreeBSD$ */ #include diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c index 7315fa9c2386..5efee536adb3 100644 --- a/sys/compat/linux/linux_ipc.c +++ b/sys/compat/linux/linux_ipc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_ipc.c,v 1.13 1997/11/06 19:28:57 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 74fb7319be80..98348750170d 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_misc.c,v 1.67 1999/08/25 14:11:01 marcel Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/compat/linux/linux_signal.c b/sys/compat/linux/linux_signal.c index 29b5c4c3ebf0..9f2200e526a6 100644 --- a/sys/compat/linux/linux_signal.c +++ b/sys/compat/linux/linux_signal.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_signal.c,v 1.16 1999/07/06 06:54:00 cracauer Exp $ + * $FreeBSD$ */ #include diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index e757fc13c7f8..d29efb63d85d 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_socket.c,v 1.14 1998/12/30 21:20:00 sos Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/compat/linux/linux_stats.c b/sys/compat/linux/linux_stats.c index bfa11f642edb..b1fc1a4e5ee8 100644 --- a/sys/compat/linux/linux_stats.c +++ b/sys/compat/linux/linux_stats.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_stats.c,v 1.12 1999/05/11 19:54:20 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/compat/linux/linux_util.c b/sys/compat/linux/linux_util.c index 11739158917a..7c87174089a9 100644 --- a/sys/compat/linux/linux_util.c +++ b/sys/compat/linux/linux_util.c @@ -27,7 +27,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp - * $Id: linux_util.c,v 1.6 1997/03/24 11:24:31 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/compat/linux/linux_util.h b/sys/compat/linux/linux_util.h index 2905f00ca4ef..61a637171083 100644 --- a/sys/compat/linux/linux_util.h +++ b/sys/compat/linux/linux_util.h @@ -28,7 +28,7 @@ * * from: svr4_util.h,v 1.5 1994/11/18 02:54:31 christos Exp * from: linux_util.h,v 1.2 1995/03/05 23:23:50 fvdl Exp - * $Id: linux_util.h,v 1.7 1998/12/16 16:28:57 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/Makefile b/sys/compat/svr4/Makefile index d8fd59b7fb3c..670fccb6a668 100644 --- a/sys/compat/svr4/Makefile +++ b/sys/compat/svr4/Makefile @@ -1,6 +1,6 @@ # Makefile for syscall tables # -# $Id: Makefile,v 1.3 1997/03/29 11:17:26 peter Exp $ +# $FreeBSD$ all: @echo "make svr4_sysent.c only" diff --git a/sys/compat/svr4/imgact_svr4.c b/sys/compat/svr4/imgact_svr4.c index 5fcfcb5bafca..707e7e4d3ac4 100644 --- a/sys/compat/svr4/imgact_svr4.c +++ b/sys/compat/svr4/imgact_svr4.c @@ -29,7 +29,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4.h b/sys/compat/svr4/svr4.h index a42d49d4f9d4..52910bf349c3 100644 --- a/sys/compat/svr4/svr4.h +++ b/sys/compat/svr4/svr4.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if !defined(_SVR4_H) diff --git a/sys/compat/svr4/svr4_acl.h b/sys/compat/svr4/svr4_acl.h index f1a405f2fd6a..6d9454f65ecd 100644 --- a/sys/compat/svr4/svr4_acl.h +++ b/sys/compat/svr4/svr4_acl.h @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ACL_H_ #define _SVR4_ACL_H_ diff --git a/sys/compat/svr4/svr4_dirent.h b/sys/compat/svr4/svr4_dirent.h index 26ee8164aeb0..244078227888 100644 --- a/sys/compat/svr4/svr4_dirent.h +++ b/sys/compat/svr4/svr4_dirent.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_DIRENT_H_ diff --git a/sys/compat/svr4/svr4_errno.h b/sys/compat/svr4/svr4_errno.h index 50dd46a43127..cc39929acfd5 100644 --- a/sys/compat/svr4/svr4_errno.h +++ b/sys/compat/svr4/svr4_errno.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ERRNO_H_ diff --git a/sys/compat/svr4/svr4_exec.h b/sys/compat/svr4/svr4_exec.h index 301915940bd3..716dad18924a 100644 --- a/sys/compat/svr4/svr4_exec.h +++ b/sys/compat/svr4/svr4_exec.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_EXEC_H_ diff --git a/sys/compat/svr4/svr4_fcntl.c b/sys/compat/svr4/svr4_fcntl.c index add04e382f73..60b975966a4b 100644 --- a/sys/compat/svr4/svr4_fcntl.c +++ b/sys/compat/svr4/svr4_fcntl.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_fcntl.c,v 1.3 1999/07/30 12:45:15 newton Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/compat/svr4/svr4_fcntl.h b/sys/compat/svr4/svr4_fcntl.h index 6ee21fae8339..615e09c219fb 100644 --- a/sys/compat/svr4/svr4_fcntl.h +++ b/sys/compat/svr4/svr4_fcntl.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_FCNTL_H_ diff --git a/sys/compat/svr4/svr4_filio.c b/sys/compat/svr4/svr4_filio.c index 9dfeced92f6b..0be9f221c7bc 100644 --- a/sys/compat/svr4/svr4_filio.c +++ b/sys/compat/svr4/svr4_filio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_filio.h b/sys/compat/svr4/svr4_filio.h index 254e2da813c7..37184cb72610 100644 --- a/sys/compat/svr4/svr4_filio.h +++ b/sys/compat/svr4/svr4_filio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_FILIO_H_ diff --git a/sys/compat/svr4/svr4_fuser.h b/sys/compat/svr4/svr4_fuser.h index bc726c12cefa..25cdcf13e0be 100644 --- a/sys/compat/svr4/svr4_fuser.h +++ b/sys/compat/svr4/svr4_fuser.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Derived from: * $NetBSD: svr4_fuser.h,v 1.4 1998/09/04 19:54:38 christos Exp $ */ diff --git a/sys/compat/svr4/svr4_hrt.h b/sys/compat/svr4/svr4_hrt.h index 8fc0231f4645..c160b8eeb6e9 100644 --- a/sys/compat/svr4/svr4_hrt.h +++ b/sys/compat/svr4/svr4_hrt.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_HRT_H_ diff --git a/sys/compat/svr4/svr4_ioctl.c b/sys/compat/svr4/svr4_ioctl.c index 02c120217636..401c58b2a960 100644 --- a/sys/compat/svr4/svr4_ioctl.c +++ b/sys/compat/svr4/svr4_ioctl.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_ioctl.h b/sys/compat/svr4/svr4_ioctl.h index f95e5ee53453..a5c6a5324181 100644 --- a/sys/compat/svr4/svr4_ioctl.h +++ b/sys/compat/svr4/svr4_ioctl.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_IOCTL_H_ diff --git a/sys/compat/svr4/svr4_ipc.c b/sys/compat/svr4/svr4_ipc.c index 1f9b7573cc72..f884fa16c4ed 100644 --- a/sys/compat/svr4/svr4_ipc.c +++ b/sys/compat/svr4/svr4_ipc.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Derived from: * $NetBSD: svr4_ipc.c,v 1.7 1998/10/19 22:43:00 tron Exp $ */ diff --git a/sys/compat/svr4/svr4_ipc.h b/sys/compat/svr4/svr4_ipc.h index 56d7f5572be7..6aadb7e050ec 100644 --- a/sys/compat/svr4/svr4_ipc.h +++ b/sys/compat/svr4/svr4_ipc.h @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_IPC_H_ diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c index 35aa8e603e6e..9535cba8972b 100644 --- a/sys/compat/svr4/svr4_misc.c +++ b/sys/compat/svr4/svr4_misc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_misc.c,v 1.4 1999/07/30 12:45:16 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/svr4_mman.h b/sys/compat/svr4/svr4_mman.h index 77500fad8a3d..db7c3dacef5f 100644 --- a/sys/compat/svr4/svr4_mman.h +++ b/sys/compat/svr4/svr4_mman.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_MMAN_H_ diff --git a/sys/compat/svr4/svr4_resource.c b/sys/compat/svr4/svr4_resource.c index 32717998d72e..7c39f44b3a1e 100644 --- a/sys/compat/svr4/svr4_resource.c +++ b/sys/compat/svr4/svr4_resource.c @@ -39,7 +39,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/svr4_resource.h b/sys/compat/svr4/svr4_resource.h index caab421cd6c6..3512df387674 100644 --- a/sys/compat/svr4/svr4_resource.h +++ b/sys/compat/svr4/svr4_resource.h @@ -38,7 +38,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/svr4_siginfo.h b/sys/compat/svr4/svr4_siginfo.h index 0f4c3e28f7cc..be898374dc2b 100644 --- a/sys/compat/svr4/svr4_siginfo.h +++ b/sys/compat/svr4/svr4_siginfo.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SIGINFO_H_ diff --git a/sys/compat/svr4/svr4_signal.c b/sys/compat/svr4/svr4_signal.c index 2e1e088f902f..b1239871942d 100644 --- a/sys/compat/svr4/svr4_signal.c +++ b/sys/compat/svr4/svr4_signal.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_signal.h b/sys/compat/svr4/svr4_signal.h index 0b02985068d4..8fb861d20147 100644 --- a/sys/compat/svr4/svr4_signal.h +++ b/sys/compat/svr4/svr4_signal.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SIGNAL_H_ diff --git a/sys/compat/svr4/svr4_socket.c b/sys/compat/svr4/svr4_socket.c index f42690071599..e2eafa304e5d 100644 --- a/sys/compat/svr4/svr4_socket.c +++ b/sys/compat/svr4/svr4_socket.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_socket.c,v 1.2 1999/07/30 12:45:17 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/svr4_socket.h b/sys/compat/svr4/svr4_socket.h index e7ee86b9b5f8..96e3582738fb 100644 --- a/sys/compat/svr4/svr4_socket.h +++ b/sys/compat/svr4/svr4_socket.h @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_socket.h,v 1.2 1999/07/30 12:45:18 newton Exp $ + * $FreeBSD$ */ #ifndef _SVR4_SOCKET_H_ diff --git a/sys/compat/svr4/svr4_sockio.c b/sys/compat/svr4/svr4_sockio.c index c0c9767bc6d6..7d6184612762 100644 --- a/sys/compat/svr4/svr4_sockio.c +++ b/sys/compat/svr4/svr4_sockio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_sockio.h b/sys/compat/svr4/svr4_sockio.h index f363caaddcbb..dd4e220c9f48 100644 --- a/sys/compat/svr4/svr4_sockio.h +++ b/sys/compat/svr4/svr4_sockio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SOCKIO_H_ diff --git a/sys/compat/svr4/svr4_sockmod.h b/sys/compat/svr4/svr4_sockmod.h index 36e0a8a24b60..927ba0d28367 100644 --- a/sys/compat/svr4/svr4_sockmod.h +++ b/sys/compat/svr4/svr4_sockmod.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SOCKMOD_H_ diff --git a/sys/compat/svr4/svr4_stat.c b/sys/compat/svr4/svr4_stat.c index 2b6755127dd0..9ffcbc58d754 100644 --- a/sys/compat/svr4/svr4_stat.c +++ b/sys/compat/svr4/svr4_stat.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_stat.h b/sys/compat/svr4/svr4_stat.h index 082cb409f786..7eeff44f30ac 100644 --- a/sys/compat/svr4/svr4_stat.h +++ b/sys/compat/svr4/svr4_stat.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STAT_H_ diff --git a/sys/compat/svr4/svr4_statvfs.h b/sys/compat/svr4/svr4_statvfs.h index cc904abb89e3..b3bf473a1b52 100644 --- a/sys/compat/svr4/svr4_statvfs.h +++ b/sys/compat/svr4/svr4_statvfs.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STATVFS_H_ diff --git a/sys/compat/svr4/svr4_stream.c b/sys/compat/svr4/svr4_stream.c index 41709258bd8c..4ced1bc07f3a 100644 --- a/sys/compat/svr4/svr4_stream.c +++ b/sys/compat/svr4/svr4_stream.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_stream.c,v 1.2 1999/07/30 12:45:18 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/compat/svr4/svr4_stropts.h b/sys/compat/svr4/svr4_stropts.h index 52badbb502ef..2fa14a1e988a 100644 --- a/sys/compat/svr4/svr4_stropts.h +++ b/sys/compat/svr4/svr4_stropts.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STROPTS_H_ diff --git a/sys/compat/svr4/svr4_sysconfig.h b/sys/compat/svr4/svr4_sysconfig.h index 331fa7ebaa0f..874c5653e634 100644 --- a/sys/compat/svr4/svr4_sysconfig.h +++ b/sys/compat/svr4/svr4_sysconfig.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SYSCONFIG_H_ diff --git a/sys/compat/svr4/svr4_systeminfo.h b/sys/compat/svr4/svr4_systeminfo.h index 0e05a658d0b7..40bc2b85d757 100644 --- a/sys/compat/svr4/svr4_systeminfo.h +++ b/sys/compat/svr4/svr4_systeminfo.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SYSTEMINFO_H_ diff --git a/sys/compat/svr4/svr4_sysvec.c b/sys/compat/svr4/svr4_sysvec.c index 95427ec67a94..099bb9c4dfa9 100644 --- a/sys/compat/svr4/svr4_sysvec.c +++ b/sys/compat/svr4/svr4_sysvec.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_sysvec.c,v 1.4 1999/07/30 12:45:19 newton Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/compat/svr4/svr4_termios.c b/sys/compat/svr4/svr4_termios.c index 45525a230607..450c0847a99e 100644 --- a/sys/compat/svr4/svr4_termios.c +++ b/sys/compat/svr4/svr4_termios.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_termios.h b/sys/compat/svr4/svr4_termios.h index f7eddd443667..8afa4f321bc3 100644 --- a/sys/compat/svr4/svr4_termios.h +++ b/sys/compat/svr4/svr4_termios.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TERMIOS_H_ diff --git a/sys/compat/svr4/svr4_time.h b/sys/compat/svr4/svr4_time.h index cc9d7a7a1865..3d61771fc904 100644 --- a/sys/compat/svr4/svr4_time.h +++ b/sys/compat/svr4/svr4_time.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TIME_H_ diff --git a/sys/compat/svr4/svr4_timod.h b/sys/compat/svr4/svr4_timod.h index 7d98e05d782c..f0c508f511b8 100644 --- a/sys/compat/svr4/svr4_timod.h +++ b/sys/compat/svr4/svr4_timod.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TIMOD_H_ diff --git a/sys/compat/svr4/svr4_ttold.c b/sys/compat/svr4/svr4_ttold.c index ac4c1d62c8ef..d597691cc699 100644 --- a/sys/compat/svr4/svr4_ttold.c +++ b/sys/compat/svr4/svr4_ttold.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/compat/svr4/svr4_ttold.h b/sys/compat/svr4/svr4_ttold.h index 81ea51448fd5..c578170a1ef9 100644 --- a/sys/compat/svr4/svr4_ttold.h +++ b/sys/compat/svr4/svr4_ttold.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TTOLD_H_ diff --git a/sys/compat/svr4/svr4_types.h b/sys/compat/svr4/svr4_types.h index 2aed74e4ff84..410746b6adc9 100644 --- a/sys/compat/svr4/svr4_types.h +++ b/sys/compat/svr4/svr4_types.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TYPES_H_ diff --git a/sys/compat/svr4/svr4_ucontext.h b/sys/compat/svr4/svr4_ucontext.h index c37865283da6..04bebe6eb81e 100644 --- a/sys/compat/svr4/svr4_ucontext.h +++ b/sys/compat/svr4/svr4_ucontext.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_UCONTEXT_H_ diff --git a/sys/compat/svr4/svr4_ulimit.h b/sys/compat/svr4/svr4_ulimit.h index bd83d721abbd..0735d42f722f 100644 --- a/sys/compat/svr4/svr4_ulimit.h +++ b/sys/compat/svr4/svr4_ulimit.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ULIMIT_H_ diff --git a/sys/compat/svr4/svr4_ustat.h b/sys/compat/svr4/svr4_ustat.h index 3c805a4feb43..0033c96bae0d 100644 --- a/sys/compat/svr4/svr4_ustat.h +++ b/sys/compat/svr4/svr4_ustat.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_USTAT_H_ diff --git a/sys/compat/svr4/svr4_util.h b/sys/compat/svr4/svr4_util.h index a2f28e340416..629edd69cd4a 100644 --- a/sys/compat/svr4/svr4_util.h +++ b/sys/compat/svr4/svr4_util.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_util.h,v 1.2 1999/07/30 12:45:21 newton Exp $ + * $FreeBSD$ */ #ifndef _SVR4_UTIL_H_ diff --git a/sys/compat/svr4/svr4_utsname.h b/sys/compat/svr4/svr4_utsname.h index e104778c9d17..a3714c9b1c10 100644 --- a/sys/compat/svr4/svr4_utsname.h +++ b/sys/compat/svr4/svr4_utsname.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_UTSNAME_H_ diff --git a/sys/compat/svr4/svr4_wait.h b/sys/compat/svr4/svr4_wait.h index 2945c1948275..9a92c0114c1c 100644 --- a/sys/compat/svr4/svr4_wait.h +++ b/sys/compat/svr4/svr4_wait.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_WAIT_H_ diff --git a/sys/compat/svr4/syscalls.conf b/sys/compat/svr4/syscalls.conf index 5c01a85cad74..46f7bd3df7be 100644 --- a/sys/compat/svr4/syscalls.conf +++ b/sys/compat/svr4/syscalls.conf @@ -1,4 +1,4 @@ -# $Id: syscalls.conf,v 1.4 1998/03/13 19:13:54 jb Exp $ +# $FreeBSD$ sysnames="svr4_syscallnames.c" sysproto="svr4_proto.h" sysproto_h=_SVR4_SYSPROTO_H_ diff --git a/sys/compat/svr4/syscalls.master b/sys/compat/svr4/syscalls.master index 703120d7d236..43e8f4886c68 100644 --- a/sys/compat/svr4/syscalls.master +++ b/sys/compat/svr4/syscalls.master @@ -20,7 +20,7 @@ ; OBSOL obsolete, not included in system, only specifies name ; UNIMPL not implemented, placeholder only ; -; $Id: syscalls.master,v 1.2 1999/07/30 12:45:21 newton Exp $ +; $FreeBSD$ ; #include #include diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index d6d3c1a063b7..dfd267a69063 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -1,7 +1,7 @@ # Makefile.alpha -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.alpha 7.1 5/10/91 -# $Id: Makefile.alpha,v 1.28 1999/07/02 04:16:57 mjacob Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 66873d0cc1e9..0d82e7971baa 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.157 1999/07/02 04:00:01 jkh Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 8740d2398e81..48492d5fc6ea 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.66 1999/07/03 08:17:40 kato Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index 66873d0cc1e9..0d82e7971baa 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.157 1999/07/02 04:00:01 jkh Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 80ecf1a81a2b..6c0f0cf935d3 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.629 1999/08/21 17:40:37 wpaul Exp $ +# $FreeBSD$ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from diff --git a/sys/conf/files.alpha b/sys/conf/files.alpha index 52ef13c794ff..73d380047bc5 100644 --- a/sys/conf/files.alpha +++ b/sys/conf/files.alpha @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.alpha,v 1.23 1999/07/03 19:19:30 peter Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index 72349659ad1d..e6a940c18e11 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.259 1999/08/18 04:08:14 alc Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/conf/files.pc98 b/sys/conf/files.pc98 index 359b379f4030..84d3f62a989b 100644 --- a/sys/conf/files.pc98 +++ b/sys/conf/files.pc98 @@ -3,7 +3,7 @@ # # modified for PC-9801 # -# $Id: files.pc98,v 1.105 1999/08/09 10:34:59 phk Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/conf/majors b/sys/conf/majors index 60feb64f5cf1..e4fda55c344f 100644 --- a/sys/conf/majors +++ b/sys/conf/majors @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.81 1999/08/04 19:55:37 jkh Exp $ +$FreeBSD$ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh index 0bde01437475..4c9db90cab19 100644 --- a/sys/conf/newvers.sh +++ b/sys/conf/newvers.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)newvers.sh 8.1 (Berkeley) 4/20/94 -# $Id: newvers.sh,v 1.42 1999/01/21 03:07:33 jkh Exp $ +# $FreeBSD$ TYPE="FreeBSD" REVISION="4.0" diff --git a/sys/conf/nfsswapkernel.c b/sys/conf/nfsswapkernel.c index 12722fff6457..8f8a67e2f130 100644 --- a/sys/conf/nfsswapkernel.c +++ b/sys/conf/nfsswapkernel.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)nfsswapvmunix.c 8.1 (Berkeley) 6/10/93 - * $Id: nfsswapkernel.c,v 1.4 1997/09/07 12:56:37 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/conf/options b/sys/conf/options index f54689afd6b8..ba04359ad8f8 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -1,4 +1,4 @@ -# $Id: options,v 1.146 1999/08/16 22:39:53 gibbs Exp $ +# $FreeBSD$ # # On the handling of kernel options # diff --git a/sys/conf/options.alpha b/sys/conf/options.alpha index d78c2205e96e..fdc5b7d75249 100644 --- a/sys/conf/options.alpha +++ b/sys/conf/options.alpha @@ -1,4 +1,4 @@ -# $Id: options.alpha,v 1.11 1999/05/27 22:03:31 gallatin Exp $ +# $FreeBSD$ EV5 opt_global.h EV4 opt_global.h diff --git a/sys/conf/options.i386 b/sys/conf/options.i386 index bd3ac0e5ddbe..f0adfd96ab8f 100644 --- a/sys/conf/options.i386 +++ b/sys/conf/options.i386 @@ -1,4 +1,4 @@ -# $Id: options.i386,v 1.119 1999/08/06 14:01:55 hm Exp $ +# $FreeBSD$ DISABLE_PSE IDE_DELAY diff --git a/sys/conf/options.pc98 b/sys/conf/options.pc98 index 3c46c2decce3..9906c9b413eb 100644 --- a/sys/conf/options.pc98 +++ b/sys/conf/options.pc98 @@ -1,4 +1,4 @@ -# $Id: options.pc98,v 1.92 1999/08/08 11:13:47 kato Exp $ +# $FreeBSD$ DISABLE_PSE IDE_DELAY diff --git a/sys/conf/param.c b/sys/conf/param.c index b9a906281f18..9a0a85f08a0a 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)param.c 8.3 (Berkeley) 8/20/94 - * $Id: param.c,v 1.33 1999/04/09 16:28:11 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/conf/systags.sh b/sys/conf/systags.sh index 179df30d73f7..a8e0e4df4945 100644 --- a/sys/conf/systags.sh +++ b/sys/conf/systags.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)systags.sh 8.1 (Berkeley) 6/10/93 -# $Id$ +# $FreeBSD$ # # systags.sh - construct a system tags file using dependence relations # in a .depend file diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c index 511f978280c7..04de1083bb92 100644 --- a/sys/ddb/db_access.c +++ b/sys/ddb/db_access.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_access.c,v 1.13 1997/02/22 09:28:18 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_access.h b/sys/ddb/db_access.h index ca1b7f9e43cf..715c1cb002c3 100644 --- a/sys/ddb/db_access.h +++ b/sys/ddb/db_access.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ #ifndef _DDB_DB_ACCESS_H_ diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c index 3daba33b7214..21d13be68b71 100644 --- a/sys/ddb/db_aout.c +++ b/sys/ddb/db_aout.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_aout.c,v 1.25 1999/02/12 12:15:07 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c index e2abb6585516..9ac0001255f8 100644 --- a/sys/ddb/db_break.c +++ b/sys/ddb/db_break.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_break.c,v 1.16 1998/06/08 02:11:19 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_break.h b/sys/ddb/db_break.h index 003ff8aec8b1..008acab85b1e 100644 --- a/sys/ddb/db_break.h +++ b/sys/ddb/db_break.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_break.h,v 1.10 1998/06/07 17:09:36 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 53c79c638008..201d1f1bbb09 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.c,v 1.32 1999/07/01 19:42:55 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_command.h b/sys/ddb/db_command.h index 89e3bc4a5838..a95f5b3aaee3 100644 --- a/sys/ddb/db_command.h +++ b/sys/ddb/db_command.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ #ifndef _DDB_DB_COMMAND_H_ diff --git a/sys/ddb/db_elf.c b/sys/ddb/db_elf.c index 1eb9fa5095e8..b4fd53dd118d 100644 --- a/sys/ddb/db_elf.c +++ b/sys/ddb/db_elf.c @@ -1,4 +1,4 @@ -/* $Id: db_elf.c,v 1.5 1999/01/27 19:00:49 dillon Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: db_elf.c,v 1.4 1998/05/03 18:49:54 thorpej Exp $ */ /*- diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index 190c107e40db..87143e11a835 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_examine.c,v 1.25 1999/05/13 06:07:43 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 0603d9d91857..61f7fc13b94c 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_expr.c,v 1.11 1997/02/22 09:28:23 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c index b17bdff88356..b8f407f7c99d 100644 --- a/sys/ddb/db_input.c +++ b/sys/ddb/db_input.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_input.c,v 1.24 1999/07/14 10:53:41 yokota Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_kld.c b/sys/ddb/db_kld.c index 09246c79b3bb..8bb1b6b6ed72 100644 --- a/sys/ddb/db_kld.c +++ b/sys/ddb/db_kld.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_kld.c,v 1.5 1999/01/27 19:00:49 dillon Exp $ + * $FreeBSD$ * from db_aout.c,v 1.20 1998/06/07 17:09:36 dfr Exp */ diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c index e66d43d64088..392b8b07cb30 100644 --- a/sys/ddb/db_lex.c +++ b/sys/ddb/db_lex.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_lex.c,v 1.16 1998/06/27 15:40:56 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_lex.h b/sys/ddb/db_lex.h index 726eaa4310f9..c4e0ee2a6ba4 100644 --- a/sys/ddb/db_lex.h +++ b/sys/ddb/db_lex.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_lex.h,v 1.10 1998/06/27 15:40:56 dfr Exp $ + * $FreeBSD$ */ #ifndef _DDB_DB_LEX_H_ diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index 33183229964c..9192c183c6ae 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_output.c,v 1.24 1998/07/08 09:11:36 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_output.h b/sys/ddb/db_output.h index 73305d5e31d1..8172bbba6d83 100644 --- a/sys/ddb/db_output.h +++ b/sys/ddb/db_output.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ #ifndef _DDB_DB_OUTPUT_H_ diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index a02f9922de36..06e9f43da659 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_print.c,v 1.24 1999/01/27 23:45:37 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c index 806032210783..f005fd832473 100644 --- a/sys/ddb/db_ps.c +++ b/sys/ddb/db_ps.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: db_ps.c,v 1.18 1999/05/13 13:01:46 bde Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index 3d16d130c783..be780e378249 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_run.c,v 1.16 1998/07/05 10:12:18 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 293f3ec954a3..7cba6883426b 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_sym.c,v 1.30 1999/02/12 12:44:19 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h index 51d579bdeac8..e4decf403701 100644 --- a/sys/ddb/db_sym.h +++ b/sys/ddb/db_sym.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_sym.h,v 1.17 1999/01/27 23:45:37 dillon Exp $ + * $FreeBSD$ */ #ifndef _DDB_DB_SYM_H_ diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c index f4da0f8eaff1..2111957ec456 100644 --- a/sys/ddb/db_trap.c +++ b/sys/ddb/db_trap.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_trap.c,v 1.12 1997/03/28 12:39:43 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c index dff4093b6930..8c0eb98fe743 100644 --- a/sys/ddb/db_variables.c +++ b/sys/ddb/db_variables.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_variables.c,v 1.16 1998/07/08 09:11:39 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_variables.h b/sys/ddb/db_variables.h index 20d33388712d..f430f0d8c94d 100644 --- a/sys/ddb/db_variables.h +++ b/sys/ddb/db_variables.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_variables.h,v 1.9 1998/06/07 17:09:38 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index f85362035f4e..6ba85c03995b 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_watch.c,v 1.17 1998/07/08 06:43:57 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_watch.h b/sys/ddb/db_watch.h index 58f4f6a2792c..18943f43942d 100644 --- a/sys/ddb/db_watch.h +++ b/sys/ddb/db_watch.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c index d745100d924a..3da61d35dd9d 100644 --- a/sys/ddb/db_write_cmd.c +++ b/sys/ddb/db_write_cmd.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_write_cmd.c,v 1.11 1998/07/08 10:53:52 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/ddb/ddb.h b/sys/ddb/ddb.h index 38bf3cb8a142..46fb2b5e2505 100644 --- a/sys/ddb/ddb.h +++ b/sys/ddb/ddb.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ddb.h,v 1.21 1999/01/27 19:00:49 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/advansys/adv_eisa.c b/sys/dev/advansys/adv_eisa.c index 4b475d3d1193..ad9604e69626 100644 --- a/sys/dev/advansys/adv_eisa.c +++ b/sys/dev/advansys/adv_eisa.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_eisa.c,v 1.5 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/advansys/adv_isa.c b/sys/dev/advansys/adv_isa.c index 5cc06c5801b2..7390939cb9c5 100644 --- a/sys/dev/advansys/adv_isa.c +++ b/sys/dev/advansys/adv_isa.c @@ -44,7 +44,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_isa.c,v 1.11 1999/05/08 18:20:57 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/advansys/adv_pci.c b/sys/dev/advansys/adv_pci.c index 1ca2cee1e597..8f8fc58f374b 100644 --- a/sys/dev/advansys/adv_pci.c +++ b/sys/dev/advansys/adv_pci.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_pci.c,v 1.7 1999/07/03 20:16:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/advansys/advansys.c b/sys/dev/advansys/advansys.c index c05604cedb6e..19cb21ad6fb5 100644 --- a/sys/dev/advansys/advansys.c +++ b/sys/dev/advansys/advansys.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: advansys.c,v 1.10 1999/05/06 20:16:09 ken Exp $ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/advansys.h b/sys/dev/advansys/advansys.h index 51519238d582..9108e2d2ff86 100644 --- a/sys/dev/advansys/advansys.h +++ b/sys/dev/advansys/advansys.h @@ -30,7 +30,7 @@ * SUCH DAMAGE. * All rights reserved. * - * $Id: advansys.h,v 1.3 1997/02/22 09:38:38 peter Exp $ + * $FreeBSD$ */ #ifndef _ADVANSYS_H_ diff --git a/sys/dev/advansys/advlib.c b/sys/dev/advansys/advlib.c index 568bf9112f0b..ad5469f31978 100644 --- a/sys/dev/advansys/advlib.c +++ b/sys/dev/advansys/advlib.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: advlib.c,v 1.12 1999/04/19 21:27:36 gibbs Exp $ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/advlib.h b/sys/dev/advansys/advlib.h index b7684cca594d..7f59a852413c 100644 --- a/sys/dev/advansys/advlib.h +++ b/sys/dev/advansys/advlib.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: advlib.h,v 1.4 1998/09/15 07:03:33 gibbs Exp $ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/advmcode.c b/sys/dev/advansys/advmcode.c index d49eb328a035..22491297f6cb 100644 --- a/sys/dev/advansys/advmcode.c +++ b/sys/dev/advansys/advmcode.c @@ -1,7 +1,7 @@ /* * Downloadable microcode for Advanced Systems Inc. SCSI controllers * - * $Id: advmcode.c,v 1.4 1998/09/15 07:03:33 gibbs Exp $ + * $FreeBSD$ * * Obtained from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters diff --git a/sys/dev/advansys/advmcode.h b/sys/dev/advansys/advmcode.h index c3794693e6ad..666bb774e0eb 100644 --- a/sys/dev/advansys/advmcode.h +++ b/sys/dev/advansys/advmcode.h @@ -1,7 +1,7 @@ /* * Exported interface to downloadable microcode for AdvanSys SCSI Adapters * - * $Id: advmcode.h,v 1.3 1997/02/22 09:28:48 peter Exp $ + * $FreeBSD$ * * Obtained from: * diff --git a/sys/dev/advansys/adw_pci.c b/sys/dev/advansys/adw_pci.c index 650978630545..10eda815814a 100644 --- a/sys/dev/advansys/adw_pci.c +++ b/sys/dev/advansys/adw_pci.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adw_pci.c,v 1.6 1999/07/03 20:16:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/advansys/adwcam.c b/sys/dev/advansys/adwcam.c index 0b6bc7e1a897..b30f16c8e933 100644 --- a/sys/dev/advansys/adwcam.c +++ b/sys/dev/advansys/adwcam.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adwcam.c,v 1.3 1999/05/06 20:16:12 ken Exp $ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/adwlib.c b/sys/dev/advansys/adwlib.c index c727ca633b75..289c3c67b1ee 100644 --- a/sys/dev/advansys/adwlib.c +++ b/sys/dev/advansys/adwlib.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adwlib.c,v 1.1 1998/10/07 03:20:46 gibbs Exp $ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/adwlib.h b/sys/dev/advansys/adwlib.h index 5b9e5535b86f..3773cf14eaa2 100644 --- a/sys/dev/advansys/adwlib.h +++ b/sys/dev/advansys/adwlib.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* * Ported from: diff --git a/sys/dev/advansys/adwmcode.c b/sys/dev/advansys/adwmcode.c index 61c856bf6d53..84f77e541d14 100644 --- a/sys/dev/advansys/adwmcode.c +++ b/sys/dev/advansys/adwmcode.c @@ -2,7 +2,7 @@ * Downloadable microcode for Second Generation * Advanced Systems Inc. SCSI controllers * - * $Id$ + * $FreeBSD$ * * Obtained from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters diff --git a/sys/dev/advansys/adwmcode.h b/sys/dev/advansys/adwmcode.h index 41abbf8a9caf..99d2d6fa8c5c 100644 --- a/sys/dev/advansys/adwmcode.h +++ b/sys/dev/advansys/adwmcode.h @@ -1,7 +1,7 @@ /* * Exported interface to downloadable microcode for AdvanSys SCSI Adapters * - * $Id: advmcode.h,v 1.4 1998/09/15 07:03:34 gibbs Exp $ + * $FreeBSD$ * * Obtained from: * diff --git a/sys/dev/advansys/adwvar.h b/sys/dev/advansys/adwvar.h index c679123de185..1820b8a68ade 100644 --- a/sys/dev/advansys/adwvar.h +++ b/sys/dev/advansys/adwvar.h @@ -30,7 +30,7 @@ * SUCH DAMAGE. * All rights reserved. * - * $Id$ + * $FreeBSD$ */ #ifndef _ADWVAR_H_ diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index fe9d7b987876..50cec6fba0dc 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -55,7 +55,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha.c,v 1.26 1999/05/25 20:15:19 gibbs Exp $ + * $FreeBSD$ */ #include "pnp.h" diff --git a/sys/dev/aha/aha_isa.c b/sys/dev/aha/aha_isa.c index b6e0cb08e523..6484eacb225c 100644 --- a/sys/dev/aha/aha_isa.c +++ b/sys/dev/aha/aha_isa.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha_isa.c,v 1.8 1999/05/08 18:20:55 peter Exp $ + * $FreeBSD$ */ #include "pnp.h" diff --git a/sys/dev/aha/ahareg.h b/sys/dev/aha/ahareg.h index ba3a1c3ddac3..0e2ce77c9cf3 100644 --- a/sys/dev/aha/ahareg.h +++ b/sys/dev/aha/ahareg.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahareg.h,v 1.5 1999/01/20 06:21:27 imp Exp $ + * $FreeBSD$ */ #ifndef _AHAREG_H_ diff --git a/sys/dev/ahb/ahb.c b/sys/dev/ahb/ahb.c index a1dc84ac5e7a..67eead4dd7e2 100644 --- a/sys/dev/ahb/ahb.c +++ b/sys/dev/ahb/ahb.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahb.c,v 1.13 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/ahb/ahbreg.h b/sys/dev/ahb/ahbreg.h index 1bed89ebff4a..c72f068aa3b9 100644 --- a/sys/dev/ahb/ahbreg.h +++ b/sys/dev/ahb/ahbreg.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* Resource Constatns */ diff --git a/sys/dev/aic7xxx/93cx6.c b/sys/dev/aic7xxx/93cx6.c index 19d64a9f330c..49d7952c4497 100644 --- a/sys/dev/aic7xxx/93cx6.c +++ b/sys/dev/aic7xxx/93cx6.c @@ -18,7 +18,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 93cx6.c,v 1.2 1999/04/07 23:02:45 gibbs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/aic7xxx/93cx6.h b/sys/dev/aic7xxx/93cx6.h index 32645e1096ef..b1694834a06b 100644 --- a/sys/dev/aic7xxx/93cx6.h +++ b/sys/dev/aic7xxx/93cx6.h @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/Makefile b/sys/dev/aic7xxx/Makefile index b47dab352081..aa478151de4e 100644 --- a/sys/dev/aic7xxx/Makefile +++ b/sys/dev/aic7xxx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/09/27 19:37:22 gibbs Exp $ +# $FreeBSD$ PROG= aicasm diff --git a/sys/dev/aic7xxx/ahc_eisa.c b/sys/dev/aic7xxx/ahc_eisa.c index 39450187d3a6..e98be7d3a3d5 100644 --- a/sys/dev/aic7xxx/ahc_eisa.c +++ b/sys/dev/aic7xxx/ahc_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_eisa.c,v 1.11 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/aic7xxx/ahc_pci.c b/sys/dev/aic7xxx/ahc_pci.c index 54f429f9bab5..64fcbd53c8f6 100644 --- a/sys/dev/aic7xxx/ahc_pci.c +++ b/sys/dev/aic7xxx/ahc_pci.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_pci.c,v 1.17 1999/08/16 02:33:46 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c index 9a1cd69a146c..af30729e86dd 100644 --- a/sys/dev/aic7xxx/aic7xxx.c +++ b/sys/dev/aic7xxx/aic7xxx.c @@ -36,7 +36,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.33 1999/08/21 06:23:59 msmith Exp $ + * $FreeBSD$ */ /* * A few notes on features of the driver. diff --git a/sys/dev/aic7xxx/aic7xxx.h b/sys/dev/aic7xxx/aic7xxx.h index a4a1cf5ac298..fca4aeaf965f 100644 --- a/sys/dev/aic7xxx/aic7xxx.h +++ b/sys/dev/aic7xxx/aic7xxx.h @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.h,v 1.10 1999/05/22 22:04:10 gibbs Exp $ + * $FreeBSD$ */ #ifndef _AIC7XXX_H_ diff --git a/sys/dev/aic7xxx/aic7xxx.reg b/sys/dev/aic7xxx/aic7xxx.reg index 848c04ae7d4f..341b56c752e0 100644 --- a/sys/dev/aic7xxx/aic7xxx.reg +++ b/sys/dev/aic7xxx/aic7xxx.reg @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.reg,v 1.15 1999/05/14 05:07:24 gibbs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/aic7xxx/aic7xxx.seq b/sys/dev/aic7xxx/aic7xxx.seq index bc333f4d8262..f8c5381fe7ec 100644 --- a/sys/dev/aic7xxx/aic7xxx.seq +++ b/sys/dev/aic7xxx/aic7xxx.seq @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.seq,v 1.88 1999/05/14 05:07:25 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aic7xxx_93cx6.c b/sys/dev/aic7xxx/aic7xxx_93cx6.c index 19d64a9f330c..49d7952c4497 100644 --- a/sys/dev/aic7xxx/aic7xxx_93cx6.c +++ b/sys/dev/aic7xxx/aic7xxx_93cx6.c @@ -18,7 +18,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 93cx6.c,v 1.2 1999/04/07 23:02:45 gibbs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/aic7xxx/aic7xxx_93cx6.h b/sys/dev/aic7xxx/aic7xxx_93cx6.h index 32645e1096ef..b1694834a06b 100644 --- a/sys/dev/aic7xxx/aic7xxx_93cx6.h +++ b/sys/dev/aic7xxx/aic7xxx_93cx6.h @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm.c b/sys/dev/aic7xxx/aicasm.c index f6a1a191e316..9af5c8343274 100644 --- a/sys/dev/aic7xxx/aicasm.c +++ b/sys/dev/aic7xxx/aicasm.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm.c,v 1.21 1999/03/23 07:24:29 gibbs Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/dev/aic7xxx/aicasm.h b/sys/dev/aic7xxx/aicasm.h index 50806757c166..02ee4647e1e3 100644 --- a/sys/dev/aic7xxx/aicasm.h +++ b/sys/dev/aic7xxx/aicasm.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm.h,v 1.3 1997/06/27 19:38:47 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm/Makefile b/sys/dev/aic7xxx/aicasm/Makefile index b47dab352081..aa478151de4e 100644 --- a/sys/dev/aic7xxx/aicasm/Makefile +++ b/sys/dev/aic7xxx/aicasm/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/09/27 19:37:22 gibbs Exp $ +# $FreeBSD$ PROG= aicasm diff --git a/sys/dev/aic7xxx/aicasm/aicasm.c b/sys/dev/aic7xxx/aicasm/aicasm.c index f6a1a191e316..9af5c8343274 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm.c +++ b/sys/dev/aic7xxx/aicasm/aicasm.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm.c,v 1.21 1999/03/23 07:24:29 gibbs Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/dev/aic7xxx/aicasm/aicasm.h b/sys/dev/aic7xxx/aicasm/aicasm.h index 50806757c166..02ee4647e1e3 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm.h +++ b/sys/dev/aic7xxx/aicasm/aicasm.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm.h,v 1.3 1997/06/27 19:38:47 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm/aicasm_gram.y b/sys/dev/aic7xxx/aicasm/aicasm_gram.y index fdf352249ab8..105da24de57d 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_gram.y +++ b/sys/dev/aic7xxx/aicasm/aicasm_gram.y @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_gram.y,v 1.5 1998/09/15 07:24:17 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm/aicasm_scan.l b/sys/dev/aic7xxx/aicasm/aicasm_scan.l index 44bc8345d479..e5f497942b40 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_scan.l +++ b/sys/dev/aic7xxx/aicasm/aicasm_scan.l @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_scan.l,v 1.5 1997/09/27 19:37:29 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c index 0704baa0942e..5b05d6d4e138 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c +++ b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_symbol.c,v 1.5 1998/09/15 07:24:17 gibbs Exp $ + * $FreeBSD$ */ diff --git a/sys/dev/aic7xxx/aicasm/aicasm_symbol.h b/sys/dev/aic7xxx/aicasm/aicasm_symbol.h index ba98b435edaf..ac8f9b8ab162 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_symbol.h +++ b/sys/dev/aic7xxx/aicasm/aicasm_symbol.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_symbol.h,v 1.3 1997/09/27 19:37:30 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm_gram.y b/sys/dev/aic7xxx/aicasm_gram.y index fdf352249ab8..105da24de57d 100644 --- a/sys/dev/aic7xxx/aicasm_gram.y +++ b/sys/dev/aic7xxx/aicasm_gram.y @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_gram.y,v 1.5 1998/09/15 07:24:17 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm_scan.l b/sys/dev/aic7xxx/aicasm_scan.l index 44bc8345d479..e5f497942b40 100644 --- a/sys/dev/aic7xxx/aicasm_scan.l +++ b/sys/dev/aic7xxx/aicasm_scan.l @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_scan.l,v 1.5 1997/09/27 19:37:29 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/aicasm_symbol.c b/sys/dev/aic7xxx/aicasm_symbol.c index 0704baa0942e..5b05d6d4e138 100644 --- a/sys/dev/aic7xxx/aicasm_symbol.c +++ b/sys/dev/aic7xxx/aicasm_symbol.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_symbol.c,v 1.5 1998/09/15 07:24:17 gibbs Exp $ + * $FreeBSD$ */ diff --git a/sys/dev/aic7xxx/aicasm_symbol.h b/sys/dev/aic7xxx/aicasm_symbol.h index ba98b435edaf..ac8f9b8ab162 100644 --- a/sys/dev/aic7xxx/aicasm_symbol.h +++ b/sys/dev/aic7xxx/aicasm_symbol.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm_symbol.h,v 1.3 1997/09/27 19:37:30 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/aic7xxx/sequencer.h b/sys/dev/aic7xxx/sequencer.h index 0fe929ba2986..c84b39b4c04b 100644 --- a/sys/dev/aic7xxx/sequencer.h +++ b/sys/dev/aic7xxx/sequencer.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sequencer.h,v 1.3 1997/09/27 19:37:31 gibbs Exp $ + * $FreeBSD$ */ struct ins_format1 { diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c index 66771534bbf0..342cba495952 100644 --- a/sys/dev/ar/if_ar.c +++ b/sys/dev/ar/if_ar.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ar.c,v 1.26 1999/05/06 18:58:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c index 66771534bbf0..342cba495952 100644 --- a/sys/dev/ar/if_ar_isa.c +++ b/sys/dev/ar/if_ar_isa.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ar.c,v 1.26 1999/05/06 18:58:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ar/if_arregs.h b/sys/dev/ar/if_arregs.h index 974b76127962..6c5b020908e2 100644 --- a/sys/dev/ar/if_arregs.h +++ b/sys/dev/ar/if_arregs.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IF_ARREGS_H_ #define _IF_ARREGS_H_ diff --git a/sys/dev/ata/ata-all.c b/sys/dev/ata/ata-all.c index bc4e199faabb..d0ef616318a5 100644 --- a/sys/dev/ata/ata-all.c +++ b/sys/dev/ata/ata-all.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ata-all.c,v 1.15 1999/06/25 09:02:56 sos Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/ata-all.h b/sys/dev/ata/ata-all.h index 5bcbed0e485e..183ae7263448 100644 --- a/sys/dev/ata/ata-all.h +++ b/sys/dev/ata/ata-all.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ata-all.h,v 1.7 1999/06/25 09:02:57 sos Exp $ + * $FreeBSD$ */ /* ATA register defines */ diff --git a/sys/dev/ata/ata-disk.c b/sys/dev/ata/ata-disk.c index 854650127919..d8196a4833b0 100644 --- a/sys/dev/ata/ata-disk.c +++ b/sys/dev/ata/ata-disk.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ata-disk.c,v 1.17 1999/08/14 11:40:33 phk Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/ata-disk.h b/sys/dev/ata/ata-disk.h index db4147bd1c83..70af5ce632ee 100644 --- a/sys/dev/ata/ata-disk.h +++ b/sys/dev/ata/ata-disk.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ata-disk.h,v 1.7 1999/06/25 09:03:00 sos Exp $ + * $FreeBSD$ */ /* ATA device parameter information */ diff --git a/sys/dev/ata/ata-dma.c b/sys/dev/ata/ata-dma.c index 8e0ab97480fb..04157008cf0f 100644 --- a/sys/dev/ata/ata-dma.c +++ b/sys/dev/ata/ata-dma.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ata-dma.c,v 1.9 1999/08/06 17:39:38 sos Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/atapi-all.c b/sys/dev/ata/atapi-all.c index ff13d462fcb9..45f7087644eb 100644 --- a/sys/dev/ata/atapi-all.c +++ b/sys/dev/ata/atapi-all.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-all.c,v 1.11 1999/08/10 21:59:58 sos Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/atapi-all.h b/sys/dev/ata/atapi-all.h index 82f51a84e380..f259b87a536c 100644 --- a/sys/dev/ata/atapi-all.h +++ b/sys/dev/ata/atapi-all.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-all.h,v 1.6 1999/05/20 09:12:04 sos Exp $ + * $FreeBSD$ */ /* ATAPI misc defines */ diff --git a/sys/dev/ata/atapi-cd.c b/sys/dev/ata/atapi-cd.c index 439c4d69e75d..bd804b4979a1 100644 --- a/sys/dev/ata/atapi-cd.c +++ b/sys/dev/ata/atapi-cd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.c,v 1.11 1999/06/25 09:03:04 sos Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/atapi-cd.h b/sys/dev/ata/atapi-cd.h index 95a0af6323cd..6afa00d10ac8 100644 --- a/sys/dev/ata/atapi-cd.h +++ b/sys/dev/ata/atapi-cd.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.h,v 1.2 1999/03/03 21:10:29 sos Exp $ + * $FreeBSD$ */ /* CDROM Table Of Contents */ diff --git a/sys/dev/ata/atapi-fd.c b/sys/dev/ata/atapi-fd.c index f8c386598a1d..5a2fd18f0185 100644 --- a/sys/dev/ata/atapi-fd.c +++ b/sys/dev/ata/atapi-fd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-fd.c,v 1.12 1999/08/14 11:40:33 phk Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/atapi-fd.h b/sys/dev/ata/atapi-fd.h index 59babb0d0035..02b60eb61091 100644 --- a/sys/dev/ata/atapi-fd.h +++ b/sys/dev/ata/atapi-fd.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-fd.h,v 1.2 1999/05/20 09:12:06 sos Exp $ + * $FreeBSD$ */ /* MODE SENSE parameter header */ diff --git a/sys/dev/ata/atapi-tape.c b/sys/dev/ata/atapi-tape.c index 8dc2044d6607..ce3d6ff347f1 100644 --- a/sys/dev/ata/atapi-tape.c +++ b/sys/dev/ata/atapi-tape.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-tape.c,v 1.11 1999/06/25 09:03:06 sos Exp $ + * $FreeBSD$ */ #include "ata.h" diff --git a/sys/dev/ata/atapi-tape.h b/sys/dev/ata/atapi-tape.h index 9c6122597357..209f79dec070 100644 --- a/sys/dev/ata/atapi-tape.h +++ b/sys/dev/ata/atapi-tape.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-tape.h,v 1.4 1999/06/25 09:03:07 sos Exp $ + * $FreeBSD$ */ /* MODE SENSE parameter header */ diff --git a/sys/dev/atkbdc/atkbd.c b/sys/dev/atkbdc/atkbd.c index 3786ee9a0b98..3094c60140df 100644 --- a/sys/dev/atkbdc/atkbd.c +++ b/sys/dev/atkbdc/atkbd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbd.c,v 1.14 1999/08/22 09:52:32 yokota Exp $ + * $FreeBSD$ */ #include "atkbd.h" diff --git a/sys/dev/atkbdc/atkbd_atkbdc.c b/sys/dev/atkbdc/atkbd_atkbdc.c index a8d638121b1d..f686170ec949 100644 --- a/sys/dev/atkbdc/atkbd_atkbdc.c +++ b/sys/dev/atkbdc/atkbd_atkbdc.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbd_isa.c,v 1.4 1999/05/08 21:59:28 dfr Exp $ + * $FreeBSD$ */ #include "atkbd.h" diff --git a/sys/dev/atkbdc/atkbd_isa.c b/sys/dev/atkbdc/atkbd_isa.c index a8d638121b1d..f686170ec949 100644 --- a/sys/dev/atkbdc/atkbd_isa.c +++ b/sys/dev/atkbdc/atkbd_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbd_isa.c,v 1.4 1999/05/08 21:59:28 dfr Exp $ + * $FreeBSD$ */ #include "atkbd.h" diff --git a/sys/dev/atkbdc/atkbdc.c b/sys/dev/atkbdc/atkbdc.c index ded635795b0d..68fcffc29334 100644 --- a/sys/dev/atkbdc/atkbdc.c +++ b/sys/dev/atkbdc/atkbdc.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atkbdc.c,v 1.2 1999/05/18 11:33:04 yokota Exp $ + * $FreeBSD$ * from kbdio.c,v 1.13 1998/09/25 11:55:46 yokota Exp */ diff --git a/sys/dev/atkbdc/atkbdc_isa.c b/sys/dev/atkbdc/atkbdc_isa.c index 387f9a534153..eae6e14fec84 100644 --- a/sys/dev/atkbdc/atkbdc_isa.c +++ b/sys/dev/atkbdc/atkbdc_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbdc_isa.c,v 1.9 1999/06/29 17:35:09 yokota Exp $ + * $FreeBSD$ */ #include "atkbdc.h" diff --git a/sys/dev/atkbdc/atkbdc_subr.c b/sys/dev/atkbdc/atkbdc_subr.c index 387f9a534153..eae6e14fec84 100644 --- a/sys/dev/atkbdc/atkbdc_subr.c +++ b/sys/dev/atkbdc/atkbdc_subr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbdc_isa.c,v 1.9 1999/06/29 17:35:09 yokota Exp $ + * $FreeBSD$ */ #include "atkbdc.h" diff --git a/sys/dev/atkbdc/atkbdcreg.h b/sys/dev/atkbdc/atkbdcreg.h index ccf64e4032c7..2085bb67bb92 100644 --- a/sys/dev/atkbdc/atkbdcreg.h +++ b/sys/dev/atkbdc/atkbdcreg.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atkbdcreg.h,v 1.1 1999/01/09 02:44:50 yokota Exp $ + * $FreeBSD$ * from kbdio.h,v 1.8 1998/09/25 11:55:46 yokota Exp */ diff --git a/sys/dev/atkbdc/atkbdreg.h b/sys/dev/atkbdc/atkbdreg.h index 04401520b759..bda6afb8582d 100644 --- a/sys/dev/atkbdc/atkbdreg.h +++ b/sys/dev/atkbdc/atkbdreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbdreg.h,v 1.2 1999/03/10 10:36:52 yokota Exp $ + * $FreeBSD$ */ #ifndef _DEV_KBD_ATKBDREG_H_ diff --git a/sys/dev/atkbdc/psm.c b/sys/dev/atkbdc/psm.c index e7c82c97dd47..6e861ccdba9c 100644 --- a/sys/dev/atkbdc/psm.c +++ b/sys/dev/atkbdc/psm.c @@ -20,7 +20,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: psm.c,v 1.16 1999/08/22 06:11:52 yokota Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/bktr/bktr_core.c b/sys/dev/bktr/bktr_core.c index 27b73d013a7d..46cf72e121e6 100644 --- a/sys/dev/bktr/bktr_core.c +++ b/sys/dev/bktr/bktr_core.c @@ -1,4 +1,4 @@ -/* $Id: brooktree848.c,v 1.89 1999/07/12 15:51:48 roger Exp $ */ +/* $FreeBSD$ */ /* BT848 Driver for Brooktree's Bt848, Bt848A, Bt849A, Bt878, Bt879 based cards. The Brooktree BT848 Driver driver is based upon Mark Tinguely and Jim Lowe's driver for the Matrox Meteor PCI card . The diff --git a/sys/dev/bktr/bktr_i2c.c b/sys/dev/bktr/bktr_i2c.c index a3a1fdd737da..5e4ecc9a8f29 100644 --- a/sys/dev/bktr/bktr_i2c.c +++ b/sys/dev/bktr/bktr_i2c.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt848_i2c.c,v 1.5 1999/07/03 20:17:01 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/bktr/bktr_i2c.h b/sys/dev/bktr/bktr_i2c.h index c7d22c50484e..075e9885ae5d 100644 --- a/sys/dev/bktr/bktr_i2c.h +++ b/sys/dev/bktr/bktr_i2c.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #ifndef _BT848_I2C_H diff --git a/sys/dev/bktr/bktr_reg.h b/sys/dev/bktr/bktr_reg.h index ab34cec12cd6..643d3f353f58 100644 --- a/sys/dev/bktr/bktr_reg.h +++ b/sys/dev/bktr/bktr_reg.h @@ -30,7 +30,7 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: brktree_reg.h,v 1.29 1999/06/12 14:54:56 roger Exp $ + * $FreeBSD$ */ #ifndef PCI_LATENCY_TIMER #define PCI_LATENCY_TIMER 0x0c /* pci timer register */ diff --git a/sys/dev/bktr/ioctl_bt848.h b/sys/dev/bktr/ioctl_bt848.h index 0767abddb684..30e18d156da3 100644 --- a/sys/dev/bktr/ioctl_bt848.h +++ b/sys/dev/bktr/ioctl_bt848.h @@ -1,7 +1,7 @@ /* * extensions to ioctl_meteor.h for the bt848 cards * - * $Id: ioctl_bt848.h,v 1.22 1999/02/15 11:04:36 roger Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index abedc4869915..23a30d39841d 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt.c,v 1.22 1999/05/23 18:54:34 gibbs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/buslogic/bt_eisa.c b/sys/dev/buslogic/bt_eisa.c index d9cb5840438c..400b42b046f7 100644 --- a/sys/dev/buslogic/bt_eisa.c +++ b/sys/dev/buslogic/bt_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_eisa.c,v 1.8 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/buslogic/bt_isa.c b/sys/dev/buslogic/bt_isa.c index 6a45d50a2de5..b51fe8eb9ed8 100644 --- a/sys/dev/buslogic/bt_isa.c +++ b/sys/dev/buslogic/bt_isa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_isa.c,v 1.15 1999/06/28 09:19:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/buslogic/bt_pci.c b/sys/dev/buslogic/bt_pci.c index 5aa884444497..154a2f2febc3 100644 --- a/sys/dev/buslogic/bt_pci.c +++ b/sys/dev/buslogic/bt_pci.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_pci.c,v 1.8 1999/07/03 20:17:01 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/buslogic/btreg.h b/sys/dev/buslogic/btreg.h index 00660e0ce81a..23b322861306 100644 --- a/sys/dev/buslogic/btreg.h +++ b/sys/dev/buslogic/btreg.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: btreg.h,v 1.7 1999/04/23 23:28:20 gibbs Exp $ + * $FreeBSD$ */ #ifndef _BTREG_H_ diff --git a/sys/dev/ccd/ccd.c b/sys/dev/ccd/ccd.c index e4faa3f4b8a6..7badacb7d7c0 100644 --- a/sys/dev/ccd/ccd.c +++ b/sys/dev/ccd/ccd.c @@ -1,4 +1,4 @@ -/* $Id: ccd.c,v 1.52 1999/08/14 11:40:34 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $ */ diff --git a/sys/dev/cs/if_cs.c b/sys/dev/cs/if_cs.c index 4863ffe3c7ff..aa7e06c788fd 100644 --- a/sys/dev/cs/if_cs.c +++ b/sys/dev/cs/if_cs.c @@ -27,7 +27,7 @@ */ /* - * $Id: if_cs.c,v 1.10 1999/04/16 21:22:20 peter Exp $ + * $FreeBSD$ * * Device driver for Crystal Semiconductor CS8920 based ethernet * adapters. By Maxim Bolotin and Oleg Sharoiko, 27-April-1997 diff --git a/sys/dev/cs/if_csreg.h b/sys/dev/cs/if_csreg.h index 3d53f01db753..56d9fcd595af 100644 --- a/sys/dev/cs/if_csreg.h +++ b/sys/dev/cs/if_csreg.h @@ -27,7 +27,7 @@ */ /* - * $Id: if_csreg.h,v 1.7 1998/07/19 16:13:39 root Exp root $ + * $FreeBSD$ */ #define PP_ChipID 0x0000 /* offset 0h -> Corp -ID */ diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c index 56b0bbc3621f..4181c44e2b4e 100644 --- a/sys/dev/cy/cy.c +++ b/sys/dev/cy/cy.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.91 1999/06/04 18:13:25 bde Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index 56b0bbc3621f..4181c44e2b4e 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.91 1999/06/04 18:13:25 bde Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index 61848c3213de..71e16953af7a 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cy_pci.c,v 1.15 1999/05/10 10:23:38 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/cy/cyreg.h b/sys/dev/cy/cyreg.h index baedda4175b2..88a36eb4a65e 100644 --- a/sys/dev/cy/cyreg.h +++ b/sys/dev/cy/cyreg.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cyreg.h,v 1.7 1998/08/13 19:03:22 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/dec/mcclock.c b/sys/dev/dec/mcclock.c index fc06f829e3d9..a8a94be5e3d0 100644 --- a/sys/dev/dec/mcclock.c +++ b/sys/dev/dec/mcclock.c @@ -1,4 +1,4 @@ -/* $Id: mcclock.c,v 1.2 1998/06/14 13:45:41 dfr Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: mcclock.c,v 1.11 1998/04/19 07:50:25 jonathan Exp $ */ /* diff --git a/sys/dev/dec/mcclock_if.m b/sys/dev/dec/mcclock_if.m index 79686237ed57..01b8a64dc6a2 100644 --- a/sys/dev/dec/mcclock_if.m +++ b/sys/dev/dec/mcclock_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: mcclock_if.m,v 1.1 1998/06/14 13:52:55 dfr Exp $ +# $FreeBSD$ # INTERFACE mcclock; diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c index 3e7e14e5f24c..60008abe5133 100644 --- a/sys/dev/dgb/dgb.c +++ b/sys/dev/dgb/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.50 1999/05/31 11:25:31 phk Exp $ + * dgb.c $FreeBSD$ * * Digiboard driver. * diff --git a/sys/dev/dgb/dgm.c b/sys/dev/dgb/dgm.c index b289be432d50..5deb61df9681 100644 --- a/sys/dev/dgb/dgm.c +++ b/sys/dev/dgb/dgm.c @@ -1,5 +1,5 @@ /*- - * $Id: dgm.c,v 1.15 1999/05/31 11:25:33 phk Exp $ + * $FreeBSD$ * * This driver and the associated header files support the ISA PC/Xem * Digiboards. Its evolutionary roots are described below. diff --git a/sys/dev/dgb/dgmbios.h b/sys/dev/dgb/dgmbios.h index 3193c9dafb2b..498bced5358a 100644 --- a/sys/dev/dgb/dgmbios.h +++ b/sys/dev/dgb/dgmbios.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * * This file is an ascii copy of the file sxbios.bin included in the * Digiboard PC/Xem driver for Linux. It is copyright 1992, DIGI diff --git a/sys/dev/dgb/dgmfep.h b/sys/dev/dgb/dgmfep.h index ed30e4a2fe6f..7921fa3b058f 100644 --- a/sys/dev/dgb/dgmfep.h +++ b/sys/dev/dgb/dgmfep.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * * This file is an ascii copy of the file sxbios.bin included in the * Digiboard PC/Xem driver for Linux. It is copyright 1992, DIGI diff --git a/sys/dev/dgb/dgmreg.h b/sys/dev/dgb/dgmreg.h index 95fddf846d24..2f052b530c11 100644 --- a/sys/dev/dgb/dgmreg.h +++ b/sys/dev/dgb/dgmreg.h @@ -1,5 +1,5 @@ /*- - * dgmreg.h $Id: dgreg.h,v 1.4.2.1 1996/12/19 14:57:36 davidg Exp $ + * dgmreg.h $FreeBSD$ * * Digiboard driver. * diff --git a/sys/dev/dgb/dgreg.h b/sys/dev/dgb/dgreg.h index 8b520fb687ed..73c29624294e 100644 --- a/sys/dev/dgb/dgreg.h +++ b/sys/dev/dgb/dgreg.h @@ -1,5 +1,5 @@ /*- - * dgreg.h $Id: dgreg.h,v 1.7 1997/02/22 09:29:43 peter Exp $ + * dgreg.h $FreeBSD$ * * Digiboard driver. * diff --git a/sys/dev/dpt/dpt.h b/sys/dev/dpt/dpt.h index 298f1326b819..6202f5ac8c0a 100644 --- a/sys/dev/dpt/dpt.h +++ b/sys/dev/dpt/dpt.h @@ -40,7 +40,7 @@ */ -#ident "$Id: dpt.h,v 1.4 1998/09/22 04:55:07 gibbs Exp $" +#ident "$FreeBSD$" #ifndef _DPT_H #define _DPT_H diff --git a/sys/dev/dpt/dpt_control.c b/sys/dev/dpt/dpt_control.c index 93a4b39b6b2a..c676d8165b67 100644 --- a/sys/dev/dpt/dpt_control.c +++ b/sys/dev/dpt/dpt_control.c @@ -36,7 +36,7 @@ * future. */ -#ident "$Id: dpt_control.c,v 1.13 1999/05/30 16:51:20 phk Exp $" +#ident "$FreeBSD$" #include "opt_dpt.h" diff --git a/sys/dev/dpt/dpt_eisa.c b/sys/dev/dpt/dpt_eisa.c index caeab91f3028..8518214db90b 100644 --- a/sys/dev/dpt/dpt_eisa.c +++ b/sys/dev/dpt/dpt_eisa.c @@ -33,7 +33,7 @@ */ /* - * $Id: dpt_eisa.c,v 1.7 1999/08/01 22:57:09 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/dpt/dpt_eisa.h b/sys/dev/dpt/dpt_eisa.h index 0731911d36cb..683ff655953c 100644 --- a/sys/dev/dpt/dpt_eisa.h +++ b/sys/dev/dpt/dpt_eisa.h @@ -32,7 +32,7 @@ */ /* - * $Id: dpt_eisa.h,v 1.2 1998/09/15 08:33:35 gibbs Exp $ + * $FreeBSD$ */ #define DPT_EISA_SLOT_OFFSET 0xc00 diff --git a/sys/dev/dpt/dpt_pci.c b/sys/dev/dpt/dpt_pci.c index 3828d08b6cb0..9df90db97c00 100644 --- a/sys/dev/dpt/dpt_pci.c +++ b/sys/dev/dpt/dpt_pci.c @@ -32,7 +32,7 @@ * dptpci.c: PCI Bus Attachment for DPT SCSI HBAs */ -#ident "$Id: dpt_pci.c,v 1.14 1999/08/16 01:52:20 gibbs Exp $" +#ident "$FreeBSD$" #include "opt_dpt.h" diff --git a/sys/dev/dpt/dpt_pci.h b/sys/dev/dpt/dpt_pci.h index 4db7bf985f57..fe7206a1882d 100644 --- a/sys/dev/dpt/dpt_pci.h +++ b/sys/dev/dpt/dpt_pci.h @@ -28,7 +28,7 @@ * */ -#ident "$Id: dpt_pci.h,v 1.3 1997/10/02 04:25:30 ShimonR Exp $" +#ident "$FreeBSD$" #define DPT_VENDOR_ID 0x00001044 #define DPT_DEVICE_ID 0x0000a400 diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c index c42f171e2a43..5858ee2cbcbc 100644 --- a/sys/dev/dpt/dpt_scsi.c +++ b/sys/dev/dpt/dpt_scsi.c @@ -43,7 +43,7 @@ * arrays that span controllers (Wow!). */ -#ident "$Id: dpt_scsi.c,v 1.25 1999/08/21 06:24:02 msmith Exp $" +#ident "$FreeBSD$" #define _DPT_C_ diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c index d65ac48c3d38..fed261abfe59 100644 --- a/sys/dev/ed/if_ed.c +++ b/sys/dev/ed/if_ed.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ed.c,v 1.152 1999/05/09 23:24:45 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c index 5f9d2682061a..023457e37c33 100644 --- a/sys/dev/ed/if_ed_pci.c +++ b/sys/dev/ed/if_ed_pci.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: if_ed_p.c,v 1.16 1999/05/09 17:06:52 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/ed/if_edreg.h b/sys/dev/ed/if_edreg.h index 20a14ed8d86e..db1a89d9f7ec 100644 --- a/sys/dev/ed/if_edreg.h +++ b/sys/dev/ed/if_edreg.h @@ -6,7 +6,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: if_edreg.h,v 1.24 1998/10/08 17:04:47 kato Exp $ + * $FreeBSD$ */ /* * National Semiconductor DS8390 NIC register definitions diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index 1aeb1df1af97..869ebbe6cabc 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.c,v 1.50 1999/08/01 22:57:09 mdodd Exp $ + * $FreeBSD$ */ #include "opt_eisa.h" diff --git a/sys/dev/eisa/eisaconf.h b/sys/dev/eisa/eisaconf.h index 6174b6b36926..8330bb4a7353 100644 --- a/sys/dev/eisa/eisaconf.h +++ b/sys/dev/eisa/eisaconf.h @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.h,v 1.18 1999/04/18 15:50:33 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_EISA_EISACONF_H_ diff --git a/sys/dev/ep/if_ep.c b/sys/dev/ep/if_ep.c index d1f3460aa545..a4027a6ae37a 100644 --- a/sys/dev/ep/if_ep.c +++ b/sys/dev/ep/if_ep.c @@ -38,7 +38,7 @@ */ /* - * $Id: if_ep.c,v 1.83 1999/08/18 22:14:20 mdodd Exp $ + * $FreeBSD$ * * Promiscuous mode added and interrupt logic slightly changed * to reduce the number of adapter failures. Transceiver select diff --git a/sys/dev/ep/if_ep_eisa.c b/sys/dev/ep/if_ep_eisa.c index b6ccff13af41..663409d4b75a 100644 --- a/sys/dev/ep/if_ep_eisa.c +++ b/sys/dev/ep/if_ep_eisa.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 3c5x9.c,v 1.12 1999/05/08 21:59:15 dfr Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/dev/ep/if_epreg.h b/sys/dev/ep/if_epreg.h index 997b228d01f7..08ff37be4fc7 100644 --- a/sys/dev/ep/if_epreg.h +++ b/sys/dev/ep/if_epreg.h @@ -31,7 +31,7 @@ */ /* - * $Id: if_epreg.h,v 1.23 1998/04/17 22:36:35 des Exp $ + * $FreeBSD$ * * Promiscuous mode added and interrupt logic slightly changed * to reduce the number of adapter failures. Transceiver select diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c index 2aef5b290ac4..bd8103e8bb7c 100644 --- a/sys/dev/ex/if_ex.c +++ b/sys/dev/ex/if_ex.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ex.c,v 1.17 1999/08/18 06:11:58 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/fb/fb.c b/sys/dev/fb/fb.c index ba697cfbe193..86628aaaa361 100644 --- a/sys/dev/fb/fb.c +++ b/sys/dev/fb/fb.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fb.c,v 1.7 1999/07/04 14:58:15 phk Exp $ + * $FreeBSD$ */ #include "fb.h" diff --git a/sys/dev/fb/fbreg.h b/sys/dev/fb/fbreg.h index ff13bd8ae47d..0dc20165c496 100644 --- a/sys/dev/fb/fbreg.h +++ b/sys/dev/fb/fbreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fbreg.h,v 1.3 1999/04/12 13:34:56 des Exp $ + * $FreeBSD$ */ #ifndef _DEV_FB_FBREG_H_ diff --git a/sys/dev/fb/splash.c b/sys/dev/fb/splash.c index 6a6dce0fc4f3..c75557083dc0 100644 --- a/sys/dev/fb/splash.c +++ b/sys/dev/fb/splash.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: splash.c,v 1.4 1999/06/22 14:13:24 yokota Exp $ + * $FreeBSD$ */ #include "splash.h" diff --git a/sys/dev/fb/splash_bmp.c b/sys/dev/fb/splash_bmp.c index 6de5a28274d2..71a53b9c38a4 100644 --- a/sys/dev/fb/splash_bmp.c +++ b/sys/dev/fb/splash_bmp.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: splash_bmp.c,v 1.8 1999/06/16 14:04:45 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/fb/splash_pcx.c b/sys/dev/fb/splash_pcx.c index 9b81c3f7ae7d..544e8c795785 100644 --- a/sys/dev/fb/splash_pcx.c +++ b/sys/dev/fb/splash_pcx.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: splash_pcx.c,v 1.2 1999/06/22 14:14:06 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/fb/splashreg.h b/sys/dev/fb/splashreg.h index a34a3b953b3e..b0c761562350 100644 --- a/sys/dev/fb/splashreg.h +++ b/sys/dev/fb/splashreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: splashreg.h,v 1.2 1999/01/11 03:06:28 yokota Exp $ + * $FreeBSD$ */ #ifndef _DEV_FB_SPLASHREG_H_ diff --git a/sys/dev/fb/vga.c b/sys/dev/fb/vga.c index d6cddaa22d7e..6c96dae439a7 100644 --- a/sys/dev/fb/vga.c +++ b/sys/dev/fb/vga.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: vga.c,v 1.2 1999/06/26 10:52:54 peter Exp $ + * $FreeBSD$ */ #include "vga.h" diff --git a/sys/dev/fb/vgareg.h b/sys/dev/fb/vgareg.h index e9e9eb24a35f..94c65e0976fe 100644 --- a/sys/dev/fb/vgareg.h +++ b/sys/dev/fb/vgareg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: vgareg.h,v 1.1 1999/01/09 02:44:49 yokota Exp $ + * $FreeBSD$ */ #ifndef _DEV_FB_VGAREG_H_ diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index c2670fdea655..ce2ea33bc405 100644 --- a/sys/dev/fdc/fdc.c +++ b/sys/dev/fdc/fdc.c @@ -47,7 +47,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.153 1999/08/23 20:58:59 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/fdc/fdcreg.h b/sys/dev/fdc/fdcreg.h index 7fef8ad098d4..4d01c4121cea 100644 --- a/sys/dev/fdc/fdcreg.h +++ b/sys/dev/fdc/fdcreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fdreg.h 7.1 (Berkeley) 5/9/91 - * $Id: fdreg.h,v 1.10 1997/02/22 09:36:11 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 00b793420dd1..9e3dd65ac396 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -21,7 +21,7 @@ */ /* - * $Id: if_fe.c,v 1.53 1999/08/18 22:14:21 mdodd Exp $ + * $FreeBSD$ * * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards. * To be used with FreeBSD 3.x diff --git a/sys/dev/fe/if_fereg.h b/sys/dev/fe/if_fereg.h index d9b943c5febf..7e28201f6987 100644 --- a/sys/dev/fe/if_fereg.h +++ b/sys/dev/fe/if_fereg.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: if_fereg.h,v 1.5 1997/02/22 09:36:28 peter Exp $ */ +/* $FreeBSD$ */ /* * Registers on FMV-180 series' ISA bus interface ASIC. diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 724668c1a328..ee97515fc158 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/if_fxp.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxp.c,v 1.69 1999/05/09 10:45:54 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/fxp/if_fxpreg.h b/sys/dev/fxp/if_fxpreg.h index d6db196244d7..e593608f0c3b 100644 --- a/sys/dev/fxp/if_fxpreg.h +++ b/sys/dev/fxp/if_fxpreg.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxpreg.h,v 1.14 1999/02/11 21:47:10 julian Exp $ + * $FreeBSD$ */ #define FXP_VENDORID_INTEL 0x8086 diff --git a/sys/dev/fxp/if_fxpvar.h b/sys/dev/fxp/if_fxpvar.h index 042d2df96284..7c4717db941e 100644 --- a/sys/dev/fxp/if_fxpvar.h +++ b/sys/dev/fxp/if_fxpvar.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxpvar.h,v 1.6 1998/08/02 00:29:15 dg Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/hea/eni.c b/sys/dev/hea/eni.c index 70776809f0d1..ca7e2a3aad73 100644 --- a/sys/dev/hea/eni.c +++ b/sys/dev/hea/eni.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni.c,v 1.8 1999/05/10 22:53:41 mks Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni.c,v 1.8 1999/05/10 22:53:41 mks Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/dev/hea/eni.h b/sys/dev/hea/eni.h index ff4a81b0c2c4..e44a2a9f43e6 100644 --- a/sys/dev/hea/eni.h +++ b/sys/dev/hea/eni.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni.h,v 1.7 1998/06/29 19:45:14 jpt Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hea/eni_buffer.c b/sys/dev/hea/eni_buffer.c index 509818d68f1d..1051dd499350 100644 --- a/sys/dev/hea/eni_buffer.c +++ b/sys/dev/hea/eni_buffer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_buffer.c,v 1.3 1999/04/11 02:55:51 eivind Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_buffer.c,v 1.3 1999/04/11 02:55:51 eivind Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif static int eni_test_memory __P((Eni_unit *)); diff --git a/sys/dev/hea/eni_globals.c b/sys/dev/hea/eni_globals.c index 2f84e0b9da29..0c7d5207e81b 100644 --- a/sys/dev/hea/eni_globals.c +++ b/sys/dev/hea/eni_globals.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_globals.c,v 1.2 1998/10/31 20:06:45 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_globals.c,v 1.2 1998/10/31 20:06:45 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/dev/hea/eni_if.c b/sys/dev/hea/eni_if.c index 00f92337a221..08ce89a63ce2 100644 --- a/sys/dev/hea/eni_if.c +++ b/sys/dev/hea/eni_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_if.c,v 1.3 1998/12/04 22:54:45 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_if.c,v 1.3 1998/12/04 22:54:45 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif static void eni_get_stats __P((Eni_unit *)); diff --git a/sys/dev/hea/eni_init.c b/sys/dev/hea/eni_init.c index 5706c65adb32..996c0eccb9a1 100644 --- a/sys/dev/hea/eni_init.c +++ b/sys/dev/hea/eni_init.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_init.c,v 1.1 1998/09/15 08:22:53 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_init.c,v 1.1 1998/09/15 08:22:53 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/dev/hea/eni_intr.c b/sys/dev/hea/eni_intr.c index ccc0d6bbc547..cbf7ef02eaa8 100644 --- a/sys/dev/hea/eni_intr.c +++ b/sys/dev/hea/eni_intr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_intr.c,v 1.2 1998/09/17 09:34:58 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_intr.c,v 1.2 1998/09/17 09:34:58 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif static void eni_suni_intr __P((Eni_unit *)); diff --git a/sys/dev/hea/eni_receive.c b/sys/dev/hea/eni_receive.c index 883602bb065a..2722233afd8a 100644 --- a/sys/dev/hea/eni_receive.c +++ b/sys/dev/hea/eni_receive.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_receive.c,v 1.3 1998/10/31 20:06:45 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_receive.c,v 1.3 1998/10/31 20:06:45 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif static void eni_recv_stack __P((void *, KBuffer *)); diff --git a/sys/dev/hea/eni_stats.h b/sys/dev/hea/eni_stats.h index 1f2a4139f5fb..ddcc55ff775c 100644 --- a/sys/dev/hea/eni_stats.h +++ b/sys/dev/hea/eni_stats.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_stats.h,v 1.6 1998/08/26 23:28:54 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hea/eni_suni.h b/sys/dev/hea/eni_suni.h index 3a0b0f74bec0..3ebce6030679 100644 --- a/sys/dev/hea/eni_suni.h +++ b/sys/dev/hea/eni_suni.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_suni.h,v 1.2 1997/05/06 22:08:17 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hea/eni_transmit.c b/sys/dev/hea/eni_transmit.c index f44ec41223e4..c80438374673 100644 --- a/sys/dev/hea/eni_transmit.c +++ b/sys/dev/hea/eni_transmit.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_transmit.c,v 1.3 1998/10/31 20:06:45 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_transmit.c,v 1.3 1998/10/31 20:06:45 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/dev/hea/eni_var.h b/sys/dev/hea/eni_var.h index cc83a122dbdc..f13a99d94fab 100644 --- a/sys/dev/hea/eni_var.h +++ b/sys/dev/hea/eni_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_var.h,v 1.4 1998/06/29 19:55:26 jpt Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hea/eni_vcm.c b/sys/dev/hea/eni_vcm.c index a88fc01bc67a..d552ddf89a18 100644 --- a/sys/dev/hea/eni_vcm.c +++ b/sys/dev/hea/eni_vcm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_vcm.c,v 1.1 1998/09/15 08:22:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: eni_vcm.c,v 1.1 1998/09/15 08:22:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore.h b/sys/dev/hfa/fore.h index 42f44f0665b1..04099824075e 100644 --- a/sys/dev/hfa/fore.h +++ b/sys/dev/hfa/fore.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore.h,v 1.8 1998/08/26 23:28:57 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_aali.h b/sys/dev/hfa/fore_aali.h index d59dcfce3b10..c5bf8038f1a3 100644 --- a/sys/dev/hfa/fore_aali.h +++ b/sys/dev/hfa/fore_aali.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_aali.h,v 1.5 1997/05/09 00:42:25 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_buffer.c b/sys/dev/hfa/fore_buffer.c index ccf91b372e28..ff3396d972e7 100644 --- a/sys/dev/hfa/fore_buffer.c +++ b/sys/dev/hfa/fore_buffer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_buffer.c,v 1.2 1998/10/31 20:06:52 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_buffer.c,v 1.2 1998/10/31 20:06:52 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_command.c b/sys/dev/hfa/fore_command.c index bb4187f4fc36..5823a3623c5d 100644 --- a/sys/dev/hfa/fore_command.c +++ b/sys/dev/hfa/fore_command.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_command.c,v 1.4 1998/12/04 22:54:45 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_command.c,v 1.4 1998/12/04 22:54:45 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/dev/hfa/fore_globals.c b/sys/dev/hfa/fore_globals.c index dae4c34371d2..ff8cc6c2e949 100644 --- a/sys/dev/hfa/fore_globals.c +++ b/sys/dev/hfa/fore_globals.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_globals.c,v 1.2 1998/10/31 20:06:52 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_globals.c,v 1.2 1998/10/31 20:06:52 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_if.c b/sys/dev/hfa/fore_if.c index 2c4a9de21964..930e0f9f0ec9 100644 --- a/sys/dev/hfa/fore_if.c +++ b/sys/dev/hfa/fore_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_if.c,v 1.3 1998/12/04 22:54:45 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_if.c,v 1.3 1998/12/04 22:54:45 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_include.h b/sys/dev/hfa/fore_include.h index b146a3cc7d41..4ffe4ce424c6 100644 --- a/sys/dev/hfa/fore_include.h +++ b/sys/dev/hfa/fore_include.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_include.h,v 1.8 1998/02/19 20:10:18 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_init.c b/sys/dev/hfa/fore_init.c index 7c1ee96dd905..1594f3e6b06e 100644 --- a/sys/dev/hfa/fore_init.c +++ b/sys/dev/hfa/fore_init.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_init.c,v 1.3 1998/10/31 20:06:53 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_init.c,v 1.3 1998/10/31 20:06:53 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_intr.c b/sys/dev/hfa/fore_intr.c index 6fba5f224a7c..aa7f05cce99a 100644 --- a/sys/dev/hfa/fore_intr.c +++ b/sys/dev/hfa/fore_intr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_intr.c,v 1.1 1998/09/15 08:22:55 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_intr.c,v 1.1 1998/09/15 08:22:55 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif #if defined(sun) diff --git a/sys/dev/hfa/fore_load.c b/sys/dev/hfa/fore_load.c index f7eeeeced31f..bdb42cabfb30 100644 --- a/sys/dev/hfa/fore_load.c +++ b/sys/dev/hfa/fore_load.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_load.c,v 1.9 1999/05/30 16:51:25 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_load.c,v 1.9 1999/05/30 16:51:25 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_output.c b/sys/dev/hfa/fore_output.c index 0a5bcd2ca86c..e67874c4b584 100644 --- a/sys/dev/hfa/fore_output.c +++ b/sys/dev/hfa/fore_output.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_output.c,v 1.2 1998/10/31 20:06:53 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_output.c,v 1.2 1998/10/31 20:06:53 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_receive.c b/sys/dev/hfa/fore_receive.c index a86545c6db7a..be07791aae6e 100644 --- a/sys/dev/hfa/fore_receive.c +++ b/sys/dev/hfa/fore_receive.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_receive.c,v 1.3 1998/10/31 20:06:53 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_receive.c,v 1.3 1998/10/31 20:06:53 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_slave.h b/sys/dev/hfa/fore_slave.h index 05e7b5be8cfe..9f7d3224fcb4 100644 --- a/sys/dev/hfa/fore_slave.h +++ b/sys/dev/hfa/fore_slave.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_slave.h,v 1.5 1997/08/22 19:45:50 jpt Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_stats.c b/sys/dev/hfa/fore_stats.c index c1a1fab14e81..a01c5e50f6a7 100644 --- a/sys/dev/hfa/fore_stats.c +++ b/sys/dev/hfa/fore_stats.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_stats.c,v 1.2 1998/09/17 09:34:59 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_stats.c,v 1.2 1998/09/17 09:34:59 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_stats.h b/sys/dev/hfa/fore_stats.h index 3803ddd20ef8..53b568f69ebd 100644 --- a/sys/dev/hfa/fore_stats.h +++ b/sys/dev/hfa/fore_stats.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_stats.h,v 1.3 1997/05/06 22:10:21 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_timer.c b/sys/dev/hfa/fore_timer.c index 15cb02efbe65..df5cff86b42a 100644 --- a/sys/dev/hfa/fore_timer.c +++ b/sys/dev/hfa/fore_timer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_timer.c,v 1.1 1998/09/15 08:22:56 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_timer.c,v 1.1 1998/09/15 08:22:56 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_transmit.c b/sys/dev/hfa/fore_transmit.c index 4be4a8984892..45445d420313 100644 --- a/sys/dev/hfa/fore_transmit.c +++ b/sys/dev/hfa/fore_transmit.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_transmit.c,v 1.2 1998/10/31 20:06:53 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_transmit.c,v 1.2 1998/10/31 20:06:53 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/hfa/fore_var.h b/sys/dev/hfa/fore_var.h index 25d21319ecc6..5a1533f3c2c6 100644 --- a/sys/dev/hfa/fore_var.h +++ b/sys/dev/hfa/fore_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_var.h,v 1.8 1998/02/19 20:10:53 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/dev/hfa/fore_vcm.c b/sys/dev/hfa/fore_vcm.c index 325883b31b6e..e2bc530ef5e3 100644 --- a/sys/dev/hfa/fore_vcm.c +++ b/sys/dev/hfa/fore_vcm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: fore_vcm.c,v 1.2 1998/09/17 09:34:59 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: fore_vcm.c,v 1.2 1998/09/17 09:34:59 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/dev/ic/cd1400.h b/sys/dev/ic/cd1400.h index ee9b9f27a4dd..90672c4ee7e6 100644 --- a/sys/dev/ic/cd1400.h +++ b/sys/dev/ic/cd1400.h @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cd1400.h,v 1.4 1997/02/22 09:37:59 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ic/esp.h b/sys/dev/ic/esp.h index 6621e6503917..a381ee7d22aa 100644 --- a/sys/dev/ic/esp.h +++ b/sys/dev/ic/esp.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IC_ESP_H_ diff --git a/sys/dev/ic/hd64570.h b/sys/dev/ic/hd64570.h index e26e89fb789c..b676e25a9cd5 100644 --- a/sys/dev/ic/hd64570.h +++ b/sys/dev/ic/hd64570.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _HD64570_H_ #define _HD64570_H_ diff --git a/sys/dev/ic/i8237.h b/sys/dev/ic/i8237.h index e955a33b833d..2bc8a08317c6 100644 --- a/sys/dev/ic/i8237.h +++ b/sys/dev/ic/i8237.h @@ -1,7 +1,7 @@ /* * Intel 8237 DMA Controller * - * $Id$ + * $FreeBSD$ */ #define DMA37MD_SINGLE 0x40 /* single pass mode */ diff --git a/sys/dev/ic/i82586.h b/sys/dev/ic/i82586.h index 704d624b77ae..964621bd3677 100644 --- a/sys/dev/ic/i82586.h +++ b/sys/dev/ic/i82586.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i82586.h,v 1.7 1998/08/10 17:21:48 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ic/nec765.h b/sys/dev/ic/nec765.h index 3a5561888e87..c08b73b7d600 100644 --- a/sys/dev/ic/nec765.h +++ b/sys/dev/ic/nec765.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)nec765.h 7.1 (Berkeley) 5/9/91 - * $Id: nec765.h,v 1.6 1997/02/22 09:38:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ic/ns16550.h b/sys/dev/ic/ns16550.h index ba338886c764..e8fad7da832e 100644 --- a/sys/dev/ic/ns16550.h +++ b/sys/dev/ic/ns16550.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ns16550.h 7.1 (Berkeley) 5/9/91 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/dev/ida/ida.c b/sys/dev/ida/ida.c index b7fca561cf41..509d0465e908 100644 --- a/sys/dev/ida/ida.c +++ b/sys/dev/ida/ida.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ida.c,v 1.1 1999/06/24 03:31:57 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ida/ida_disk.c b/sys/dev/ida/ida_disk.c index 456491623e4e..24be38be7e3a 100644 --- a/sys/dev/ida/ida_disk.c +++ b/sys/dev/ida/ida_disk.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ida_disk.c,v 1.2 1999/07/04 14:58:16 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ida/ida_pci.c b/sys/dev/ida/ida_pci.c index 330ce7ca1941..70007fb87d43 100644 --- a/sys/dev/ida/ida_pci.c +++ b/sys/dev/ida/ida_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ida_pci.c,v 1.3 1999/07/29 01:03:02 mdodd Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/ida/idareg.h b/sys/dev/ida/idareg.h index 69c39650b80f..506c495cd779 100644 --- a/sys/dev/ida/idareg.h +++ b/sys/dev/ida/idareg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/dev/ida/idavar.h b/sys/dev/ida/idavar.h index 7b8012a8e3b2..75401b476d8a 100644 --- a/sys/dev/ida/idavar.h +++ b/sys/dev/ida/idavar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index d6c928b98f9c..83142b44bde7 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.66 1999/08/21 06:24:14 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ie/if_ie507.h b/sys/dev/ie/if_ie507.h index 7583ffd0a037..9be1396cf49e 100644 --- a/sys/dev/ie/if_ie507.h +++ b/sys/dev/ie/if_ie507.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Definitions for 3C507 */ diff --git a/sys/dev/ie/if_iereg.h b/sys/dev/ie/if_iereg.h index 3588b8414058..875f63ca9dbb 100644 --- a/sys/dev/ie/if_iereg.h +++ b/sys/dev/ie/if_iereg.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * definitions for AT&T StarLAN 10 etc... */ diff --git a/sys/dev/iicbus/if_ic.c b/sys/dev/iicbus/if_ic.c index 58144d052d77..a9649ea357c5 100644 --- a/sys/dev/iicbus/if_ic.c +++ b/sys/dev/iicbus/if_ic.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ic.c,v 1.4 1999/05/08 21:59:03 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/iicbus/iic.c b/sys/dev/iicbus/iic.c index bb4ee16e5098..158449e9bf14 100644 --- a/sys/dev/iicbus/iic.c +++ b/sys/dev/iicbus/iic.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iic.c,v 1.12 1999/05/31 11:24:43 phk Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/iicbus/iic.h b/sys/dev/iicbus/iic.h index 6649821e0240..5d362c1a2dd4 100644 --- a/sys/dev/iicbus/iic.h +++ b/sys/dev/iicbus/iic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iic.h,v 1.1 1998/09/03 21:00:08 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __IIC_H diff --git a/sys/dev/iicbus/iicbb.c b/sys/dev/iicbus/iicbb.c index df46c1ad859e..b4e4f63276d2 100644 --- a/sys/dev/iicbus/iicbb.c +++ b/sys/dev/iicbus/iicbb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iicbb.c,v 1.4 1999/05/08 21:59:04 dfr Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/iicbus/iicbb_if.m b/sys/dev/iicbus/iicbb_if.m index bdf1108fac95..a99bfe86b888 100644 --- a/sys/dev/iicbus/iicbb_if.m +++ b/sys/dev/iicbus/iicbb_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: iicbb_if.m,v 1.1 1998/10/31 11:31:07 nsouch Exp $ +# $FreeBSD$ # INTERFACE iicbb; diff --git a/sys/dev/iicbus/iicbus.c b/sys/dev/iicbus/iicbus.c index e97cbfb0cde6..e4b6f8d45e39 100644 --- a/sys/dev/iicbus/iicbus.c +++ b/sys/dev/iicbus/iicbus.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iicbus.c,v 1.9 1999/05/08 21:59:04 dfr Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/iicbus/iicbus.h b/sys/dev/iicbus/iicbus.h index 3c230955bbc1..59bbaef4d3fe 100644 --- a/sys/dev/iicbus/iicbus.h +++ b/sys/dev/iicbus/iicbus.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iicbus.h,v 1.2 1998/10/31 11:31:07 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __IICBUS_H diff --git a/sys/dev/iicbus/iicbus_if.m b/sys/dev/iicbus/iicbus_if.m index 7e29333db495..ba30c61e0b9f 100644 --- a/sys/dev/iicbus/iicbus_if.m +++ b/sys/dev/iicbus/iicbus_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: iicbus_if.m,v 1.2 1998/10/31 11:31:07 nsouch Exp $ +# $FreeBSD$ # INTERFACE iicbus; diff --git a/sys/dev/iicbus/iiconf.c b/sys/dev/iicbus/iiconf.c index 5727c0580157..42d3a9621c08 100644 --- a/sys/dev/iicbus/iiconf.c +++ b/sys/dev/iicbus/iiconf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iiconf.c,v 1.6 1999/02/06 10:56:09 roger Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/iicbus/iiconf.h b/sys/dev/iicbus/iiconf.h index 4c2376251f1d..03a4a762efd5 100644 --- a/sys/dev/iicbus/iiconf.h +++ b/sys/dev/iicbus/iiconf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iiconf.h,v 1.4 1999/01/27 21:49:53 dillon Exp $ + * $FreeBSD$ */ #ifndef __IICONF_H #define __IICONF_H diff --git a/sys/dev/iicbus/iicsmb.c b/sys/dev/iicbus/iicsmb.c index 4cea0b5dc2a7..f967551a9d4d 100644 --- a/sys/dev/iicbus/iicsmb.c +++ b/sys/dev/iicbus/iicsmb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iicsmb.c,v 1.3 1999/05/08 21:59:05 dfr Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/isp/asm_pci.h b/sys/dev/isp/asm_pci.h index 513cd54a4327..96c4ca797200 100644 --- a/sys/dev/isp/asm_pci.h +++ b/sys/dev/isp/asm_pci.h @@ -1,4 +1,4 @@ -/* $Id: asm_pci.h,v 1.12 1999/07/05 20:42:03 mjacob Exp $ */ +/* $FreeBSD$ */ /* release_6_5_99 */ /* * Copyright (c) 1995, 1996, 1997, 1998 by Qlogic Corporation diff --git a/sys/dev/isp/asm_sbus.h b/sys/dev/isp/asm_sbus.h index b521b934d2fe..8165fe1489cf 100644 --- a/sys/dev/isp/asm_sbus.h +++ b/sys/dev/isp/asm_sbus.h @@ -1,4 +1,4 @@ -/* $Id: asm_sbus.h,v 1.6 1999/03/17 05:04:38 mjacob Exp $ */ +/* $FreeBSD$ */ /* release_03_25_99 */ /* * SBus Qlogic Host Adapter Firmware Tables diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index e69eb1a8bef3..377632e2a39b 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1,4 +1,4 @@ -/* $Id: isp.c,v 1.22 1999/07/05 20:42:06 mjacob Exp $ */ +/* $FreeBSD$ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c index dd368dedce2a..5e6c84c5b9d9 100644 --- a/sys/dev/isp/isp_freebsd.c +++ b/sys/dev/isp/isp_freebsd.c @@ -1,4 +1,4 @@ -/* $Id: isp_freebsd.c,v 1.22 1999/07/05 20:42:07 mjacob Exp $ */ +/* $FreeBSD$ */ /* * Platform (FreeBSD) dependent common attachment code for Qlogic adapters. * diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index 552808d6584f..12bc9f2593b7 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -1,4 +1,4 @@ -/* $Id: isp_freebsd.h,v 1.17 1999/07/05 20:42:07 mjacob Exp $ */ +/* $FreeBSD$ */ /* * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions (CAM version) *--------------------------------------- diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c index 8fd49bbfd562..1aa31953b36b 100644 --- a/sys/dev/isp/isp_pci.c +++ b/sys/dev/isp/isp_pci.c @@ -1,4 +1,4 @@ -/* $Id: isp_pci.c,v 1.30 1999/08/16 19:52:29 mjacob Exp $ */ +/* $FreeBSD$ */ /* * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. * FreeBSD Version. diff --git a/sys/dev/isp/ispmbox.h b/sys/dev/isp/ispmbox.h index 62c815f0d98b..c4efab2f81ba 100644 --- a/sys/dev/isp/ispmbox.h +++ b/sys/dev/isp/ispmbox.h @@ -1,4 +1,4 @@ -/* $Id: ispmbox.h,v 1.12 1999/07/05 20:42:07 mjacob Exp $ */ +/* $FreeBSD$ */ /* * Mailbox and Queue Entry Definitions for for Qlogic ISP SCSI adapters. * diff --git a/sys/dev/isp/ispreg.h b/sys/dev/isp/ispreg.h index 26e1c37488c4..893f69784672 100644 --- a/sys/dev/isp/ispreg.h +++ b/sys/dev/isp/ispreg.h @@ -1,4 +1,4 @@ -/* $Id: ispreg.h,v 1.8 1999/03/25 22:52:45 mjacob Exp $ */ +/* $FreeBSD$ */ /* release_5_11_99 */ /* * Machine Independent (well, as best as possible) register diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index 5596934e8971..7a70c137575d 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -1,4 +1,4 @@ -/* $Id: ispvar.h,v 1.17 1999/07/05 20:42:08 mjacob Exp $ */ +/* $FreeBSD$ */ /* * Soft Definitions for for Qlogic ISP SCSI adapters. * diff --git a/sys/dev/kbd/atkbd.c b/sys/dev/kbd/atkbd.c index 3786ee9a0b98..3094c60140df 100644 --- a/sys/dev/kbd/atkbd.c +++ b/sys/dev/kbd/atkbd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbd.c,v 1.14 1999/08/22 09:52:32 yokota Exp $ + * $FreeBSD$ */ #include "atkbd.h" diff --git a/sys/dev/kbd/atkbdc.c b/sys/dev/kbd/atkbdc.c index ded635795b0d..68fcffc29334 100644 --- a/sys/dev/kbd/atkbdc.c +++ b/sys/dev/kbd/atkbdc.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atkbdc.c,v 1.2 1999/05/18 11:33:04 yokota Exp $ + * $FreeBSD$ * from kbdio.c,v 1.13 1998/09/25 11:55:46 yokota Exp */ diff --git a/sys/dev/kbd/atkbdcreg.h b/sys/dev/kbd/atkbdcreg.h index ccf64e4032c7..2085bb67bb92 100644 --- a/sys/dev/kbd/atkbdcreg.h +++ b/sys/dev/kbd/atkbdcreg.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atkbdcreg.h,v 1.1 1999/01/09 02:44:50 yokota Exp $ + * $FreeBSD$ * from kbdio.h,v 1.8 1998/09/25 11:55:46 yokota Exp */ diff --git a/sys/dev/kbd/atkbdreg.h b/sys/dev/kbd/atkbdreg.h index 04401520b759..bda6afb8582d 100644 --- a/sys/dev/kbd/atkbdreg.h +++ b/sys/dev/kbd/atkbdreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbdreg.h,v 1.2 1999/03/10 10:36:52 yokota Exp $ + * $FreeBSD$ */ #ifndef _DEV_KBD_ATKBDREG_H_ diff --git a/sys/dev/kbd/kbd.c b/sys/dev/kbd/kbd.c index 869a8ffa2982..945df72e2050 100644 --- a/sys/dev/kbd/kbd.c +++ b/sys/dev/kbd/kbd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: kbd.c,v 1.9 1999/05/31 11:24:48 phk Exp $ + * $FreeBSD$ */ #include "kbd.h" diff --git a/sys/dev/kbd/kbdreg.h b/sys/dev/kbd/kbdreg.h index b074e11a7d5a..4fc5fd63ec97 100644 --- a/sys/dev/kbd/kbdreg.h +++ b/sys/dev/kbd/kbdreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: kbdreg.h,v 1.3 1999/03/10 10:36:52 yokota Exp $ + * $FreeBSD$ */ #ifndef _DEV_KBD_KBDREG_H_ diff --git a/sys/dev/kbd/kbdtables.h b/sys/dev/kbd/kbdtables.h index f262ec6ca17e..68ef5e2fa377 100644 --- a/sys/dev/kbd/kbdtables.h +++ b/sys/dev/kbd/kbdtables.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: kbdtables.h,v 1.44 1999/01/28 10:55:55 yokota Exp $ + * $FreeBSD$ */ #ifndef KBD_DFLT_KEYMAP diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c index 058ca3f57426..6345dffd1131 100644 --- a/sys/dev/lnc/if_lnc.c +++ b/sys/dev/lnc/if_lnc.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_lnc.c,v 1.64 1999/08/18 22:14:23 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/lnc/if_lnc_pci.c b/sys/dev/lnc/if_lnc_pci.c index c92ffc083bc7..33c7212295ee 100644 --- a/sys/dev/lnc/if_lnc_pci.c +++ b/sys/dev/lnc/if_lnc_pci.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: if_lnc_p.c,v 1.11 1999/07/03 20:17:04 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/lnc/if_lncvar.h b/sys/dev/lnc/if_lncvar.h index aeff426d5e17..f3d37f44654c 100644 --- a/sys/dev/lnc/if_lncvar.h +++ b/sys/dev/lnc/if_lncvar.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_lnc.h,v 1.11 1999/07/06 19:22:51 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/mcd/mcd.c b/sys/dev/mcd/mcd.c index 0f5001715722..5ab40ef0761c 100644 --- a/sys/dev/mcd/mcd.c +++ b/sys/dev/mcd/mcd.c @@ -40,7 +40,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mcd.c,v 1.108 1999/05/31 11:26:15 phk Exp $ + * $FreeBSD$ */ static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore"; diff --git a/sys/dev/mcd/mcdreg.h b/sys/dev/mcd/mcdreg.h index 219e119d5a87..f0f75f7b2254 100644 --- a/sys/dev/mcd/mcdreg.h +++ b/sys/dev/mcd/mcdreg.h @@ -41,7 +41,7 @@ * the manufacturer or anyone else might provide better documentation, * so this file (and the driver) will then have a better quality. * - * $Id$ + * $FreeBSD$ */ #ifndef MCD_H diff --git a/sys/dev/mii/Makefile.miidevs b/sys/dev/mii/Makefile.miidevs index 440af1d34922..964ecf3839b5 100644 --- a/sys/dev/mii/Makefile.miidevs +++ b/sys/dev/mii/Makefile.miidevs @@ -1,5 +1,5 @@ # $NetBSD: Makefile.miidevs,v 1.1 1998/08/10 23:55:17 thorpej Exp $ -# $Id$ +# $FreeBSD$ AWK= awk diff --git a/sys/dev/mii/devlist2h.awk b/sys/dev/mii/devlist2h.awk index c6872bc5a8e7..1863a227ab7f 100644 --- a/sys/dev/mii/devlist2h.awk +++ b/sys/dev/mii/devlist2h.awk @@ -64,7 +64,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # function collectline(f, line) { oparen = 0 diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c index 86c624b1321c..9284c7ae11be 100644 --- a/sys/dev/mii/exphy.c +++ b/sys/dev/mii/exphy.c @@ -89,7 +89,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif static int exphy_probe __P((device_t)); diff --git a/sys/dev/mii/mii.c b/sys/dev/mii/mii.c index 833c3a24064e..e64488fa0a59 100644 --- a/sys/dev/mii/mii.c +++ b/sys/dev/mii/mii.c @@ -60,7 +60,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: mii.c,v 1.1 1999/08/21 17:40:41 wpaul Exp $"; + "$FreeBSD$"; #endif static int miibus_readreg __P((device_t, int, int)); diff --git a/sys/dev/mii/mii.h b/sys/dev/mii/mii.h index 6c94671c371b..c21fe0377085 100644 --- a/sys/dev/mii/mii.h +++ b/sys/dev/mii/mii.h @@ -31,7 +31,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _DEV_MII_MII_H_ diff --git a/sys/dev/mii/mii_physubr.c b/sys/dev/mii/mii_physubr.c index 408fa12b03ab..ff4719050930 100644 --- a/sys/dev/mii/mii_physubr.c +++ b/sys/dev/mii/mii_physubr.c @@ -61,7 +61,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif void mii_phy_auto_timeout __P((void *)); diff --git a/sys/dev/mii/miibus_if.m b/sys/dev/mii/miibus_if.m index 2bf1dd1daa70..d540964cb102 100644 --- a/sys/dev/mii/miibus_if.m +++ b/sys/dev/mii/miibus_if.m @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ INTERFACE miibus; diff --git a/sys/dev/mii/miidevs b/sys/dev/mii/miidevs index 9fcb55cec150..ed86e437b560 100644 --- a/sys/dev/mii/miidevs +++ b/sys/dev/mii/miidevs @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ /*$NetBSD: miidevs,v 1.6 1999/05/14 11:37:30 drochner Exp $*/ /*- diff --git a/sys/dev/mii/miidevs.h b/sys/dev/mii/miidevs.h index 0177c202045d..11689a42bc3c 100644 --- a/sys/dev/mii/miidevs.h +++ b/sys/dev/mii/miidevs.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. diff --git a/sys/dev/mii/miivar.h b/sys/dev/mii/miivar.h index bd5121e711cb..52380fa946e3 100644 --- a/sys/dev/mii/miivar.h +++ b/sys/dev/mii/miivar.h @@ -36,7 +36,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _DEV_MII_MIIVAR_H_ diff --git a/sys/dev/mii/nsphy.c b/sys/dev/mii/nsphy.c index ac4cc7ab1333..4c58a4e5d1e9 100644 --- a/sys/dev/mii/nsphy.c +++ b/sys/dev/mii/nsphy.c @@ -93,7 +93,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif static int nsphy_probe __P((device_t)); diff --git a/sys/dev/mii/nsphyreg.h b/sys/dev/mii/nsphyreg.h index 9d9614286eb4..5ff0490b1dfe 100644 --- a/sys/dev/mii/nsphyreg.h +++ b/sys/dev/mii/nsphyreg.h @@ -36,7 +36,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _DEV_MII_NSPHYREG_H_ diff --git a/sys/dev/mii/ukphy.c b/sys/dev/mii/ukphy.c index 2efd30588526..cb22eab1cefe 100644 --- a/sys/dev/mii/ukphy.c +++ b/sys/dev/mii/ukphy.c @@ -91,7 +91,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif static int ukphy_probe __P((device_t)); diff --git a/sys/dev/mii/ukphy_subr.c b/sys/dev/mii/ukphy_subr.c index 11904a21601d..d39ef4651b93 100644 --- a/sys/dev/mii/ukphy_subr.c +++ b/sys/dev/mii/ukphy_subr.c @@ -59,7 +59,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c index ddc41a8215f5..f6d6c663652b 100644 --- a/sys/dev/mse/mse.c +++ b/sys/dev/mse/mse.c @@ -11,7 +11,7 @@ * this software for any purpose. It is provided "as is" * without express or implied warranty. * - * $Id: mse.c,v 1.44 1999/05/31 11:26:17 phk Exp $ + * $FreeBSD$ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and diff --git a/sys/dev/pccard/if_xe.c b/sys/dev/pccard/if_xe.c index 4d67a35a54dc..d8351f09f730 100644 --- a/sys/dev/pccard/if_xe.c +++ b/sys/dev/pccard/if_xe.c @@ -23,8 +23,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_xe.c,v 1.20 1999/06/13 19:17:40 scott Exp $ - * $FreeBSD$ + * $FreeBSD$ + * $FreeBSD$ */ /* diff --git a/sys/dev/pccard/if_xereg.h b/sys/dev/pccard/if_xereg.h index a4ecb35da19c..9eb7d3138288 100644 --- a/sys/dev/pccard/if_xereg.h +++ b/sys/dev/pccard/if_xereg.h @@ -23,8 +23,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_xereg.h,v 1.5 1999/05/20 21:53:58 scott Exp $ - * $FreeBSD$ + * $FreeBSD$ + * $FreeBSD$ */ /* diff --git a/sys/dev/pcf/pcf.c b/sys/dev/pcf/pcf.c index e5498b40b5fd..8cebfb004c0d 100644 --- a/sys/dev/pcf/pcf.c +++ b/sys/dev/pcf/pcf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pcf.c,v 1.9 1999/05/08 21:59:27 dfr Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 75f41e87c72b..214d6f96b80f 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pci.c,v 1.114 1999/07/29 01:03:03 mdodd Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pci/pci_if.m b/sys/dev/pci/pci_if.m index b2fa6758fef6..95b0081ca32b 100644 --- a/sys/dev/pci/pci_if.m +++ b/sys/dev/pci/pci_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # INTERFACE pci; diff --git a/sys/dev/pci/pcireg.h b/sys/dev/pci/pcireg.h index 9c0dba09331d..f90df10e14de 100644 --- a/sys/dev/pci/pcireg.h +++ b/sys/dev/pci/pcireg.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcireg.h,v 1.20 1998/10/07 03:40:51 gibbs Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h index f1c6f5e4d744..ae4958dbf265 100644 --- a/sys/dev/pci/pcivar.h +++ b/sys/dev/pci/pcivar.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcivar.h,v 1.33 1999/05/20 15:33:33 gallatin Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pdq/if_fea.c b/sys/dev/pdq/if_fea.c index c98eb4bf96af..21c90d4a7dd6 100644 --- a/sys/dev/pdq/if_fea.c +++ b/sys/dev/pdq/if_fea.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fea.c,v 1.16 1999/07/31 00:43:48 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/pdq/if_fpa.c b/sys/dev/pdq/if_fpa.c index 7d816b8c8075..d70628a9e708 100644 --- a/sys/dev/pdq/if_fpa.c +++ b/sys/dev/pdq/if_fpa.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fpa.c,v 1.11 1999/08/21 06:24:34 msmith Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pdq/pdq.c b/sys/dev/pdq/pdq.c index cb0e531221d5..055bdc2f9d28 100644 --- a/sys/dev/pdq/pdq.c +++ b/sys/dev/pdq/pdq.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pdq.c,v 1.3 1999/01/27 19:35:33 dillon Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pdq/pdq_ifsubr.c b/sys/dev/pdq/pdq_ifsubr.c index 6bcb5c7b29c2..545d66ccf3f6 100644 --- a/sys/dev/pdq/pdq_ifsubr.c +++ b/sys/dev/pdq/pdq_ifsubr.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pdq_ifsubr.c,v 1.7 1998/02/20 13:11:45 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pdq/pdqreg.h b/sys/dev/pdq/pdqreg.h index 6c4d51a1dfad..f3cfa84fdcb5 100644 --- a/sys/dev/pdq/pdqreg.h +++ b/sys/dev/pdq/pdqreg.h @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pdqreg.h,v 1.9 1996/05/16 14:25:26 thomas Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/pdq/pdqvar.h b/sys/dev/pdq/pdqvar.h index 5587d188931e..8320eaec69f9 100644 --- a/sys/dev/pdq/pdqvar.h +++ b/sys/dev/pdq/pdqvar.h @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pdqvar.h,v 1.1.1.1 1997/01/17 23:19:49 joerg Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/if_plip.c b/sys/dev/ppbus/if_plip.c index 6d60a78196f6..e82f49f23858 100644 --- a/sys/dev/ppbus/if_plip.c +++ b/sys/dev/ppbus/if_plip.c @@ -24,7 +24,7 @@ * SUCH DAMAGE. * * From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp - * $Id: if_plip.c,v 1.12 1999/02/14 16:19:16 nsouch Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ppbus/immio.c b/sys/dev/ppbus/immio.c index 50b9c06a707e..a744dc86651e 100644 --- a/sys/dev/ppbus/immio.c +++ b/sys/dev/ppbus/immio.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: immio.c,v 1.6 1999/01/30 15:35:39 nsouch Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/lpbb.c b/sys/dev/ppbus/lpbb.c index 08f454045821..bf2880798ebe 100644 --- a/sys/dev/ppbus/lpbb.c +++ b/sys/dev/ppbus/lpbb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lpbb.c,v 1.5 1999/05/08 21:59:06 dfr Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/lpt.c b/sys/dev/ppbus/lpt.c index 956c6a7c8d6f..56312b4002ac 100644 --- a/sys/dev/ppbus/lpt.c +++ b/sys/dev/ppbus/lpt.c @@ -48,7 +48,7 @@ * from: unknown origin, 386BSD 0.1 * From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp * From Id: nlpt.c,v 1.14 1999/02/08 13:55:43 des Exp - * $Id: lpt.c,v 1.6 1999/06/03 22:03:35 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ppbus/lpt.h b/sys/dev/ppbus/lpt.h index 3ca268d081fe..9075b4ec6e5a 100644 --- a/sys/dev/ppbus/lpt.h +++ b/sys/dev/ppbus/lpt.h @@ -34,7 +34,7 @@ * Id: lptreg.h,v 1.6 1997/02/22 09:36:52 peter Exp * From Id: nlpt.h,v 1.3 1999/01/10 12:04:54 nsouch Exp * - * $Id: lpt.h,v 1.2 1999/02/14 16:19:16 nsouch Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ppbus/lptio.h b/sys/dev/ppbus/lptio.h index 2d70d7ee3397..56d196a62fef 100644 --- a/sys/dev/ppbus/lptio.h +++ b/sys/dev/ppbus/lptio.h @@ -11,7 +11,7 @@ * * Geoff Rehmet, Rhodes University, South Africa * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_LPT_H_ diff --git a/sys/dev/ppbus/ppb_1284.c b/sys/dev/ppbus/ppb_1284.c index 5da5fa3eac3a..30221747dddf 100644 --- a/sys/dev/ppbus/ppb_1284.c +++ b/sys/dev/ppbus/ppb_1284.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppb_1284.c,v 1.7 1999/01/10 12:04:54 nsouch Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/ppb_1284.h b/sys/dev/ppbus/ppb_1284.h index ea009b7d381d..f975c26e2475 100644 --- a/sys/dev/ppbus/ppb_1284.h +++ b/sys/dev/ppbus/ppb_1284.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppb_1284.h,v 1.3 1998/09/13 18:26:26 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __1284_H diff --git a/sys/dev/ppbus/ppb_base.c b/sys/dev/ppbus/ppb_base.c index fed87304e182..250999be814f 100644 --- a/sys/dev/ppbus/ppb_base.c +++ b/sys/dev/ppbus/ppb_base.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppb_base.c,v 1.7 1999/01/27 20:09:19 dillon Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/ppbus/ppb_msq.c b/sys/dev/ppbus/ppb_msq.c index e0893e702f19..d5b729a18476 100644 --- a/sys/dev/ppbus/ppb_msq.c +++ b/sys/dev/ppbus/ppb_msq.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppb_msq.c,v 1.4 1999/01/10 12:04:54 nsouch Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/ppbus/ppb_msq.h b/sys/dev/ppbus/ppb_msq.h index 3ddf434c657a..25b55fd798b9 100644 --- a/sys/dev/ppbus/ppb_msq.h +++ b/sys/dev/ppbus/ppb_msq.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppb_msq.h,v 1.5 1999/01/30 15:35:39 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __PPB_MSQ_H diff --git a/sys/dev/ppbus/ppbconf.c b/sys/dev/ppbus/ppbconf.c index a11260ec5c24..f98fcf27aad1 100644 --- a/sys/dev/ppbus/ppbconf.c +++ b/sys/dev/ppbus/ppbconf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppbconf.c,v 1.13 1999/01/14 06:22:02 jdp Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/ppbus/ppbconf.h b/sys/dev/ppbus/ppbconf.h index 62bd99cea7ce..4160f0ca2e91 100644 --- a/sys/dev/ppbus/ppbconf.h +++ b/sys/dev/ppbus/ppbconf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppbconf.h,v 1.14 1999/04/05 15:43:11 peter Exp $ + * $FreeBSD$ * */ #ifndef __PPBCONF_H diff --git a/sys/dev/ppbus/ppi.c b/sys/dev/ppbus/ppi.c index e19be8c3a91b..0d8c97006a7f 100644 --- a/sys/dev/ppbus/ppi.c +++ b/sys/dev/ppbus/ppi.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppi.c,v 1.14 1999/05/30 16:51:35 phk Exp $ + * $FreeBSD$ * */ #include "ppi.h" diff --git a/sys/dev/ppbus/ppi.h b/sys/dev/ppbus/ppi.h index 243c87fa63c7..7d854e3bfb7f 100644 --- a/sys/dev/ppbus/ppi.h +++ b/sys/dev/ppbus/ppi.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppi.h,v 1.2 1998/01/02 09:30:39 msmith Exp $ + * $FreeBSD$ * */ #ifndef __PPI_H diff --git a/sys/dev/ppbus/pps.c b/sys/dev/ppbus/pps.c index 5279f113e8b9..14204b18e085 100644 --- a/sys/dev/ppbus/pps.c +++ b/sys/dev/ppbus/pps.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: pps.c,v 1.19 1999/05/31 11:25:00 phk Exp $ + * $FreeBSD$ * * This driver implements a draft-mogul-pps-api-02.txt PPS source. * diff --git a/sys/dev/ppbus/vpo.c b/sys/dev/ppbus/vpo.c index 11b5530f68e4..f589ecfee36a 100644 --- a/sys/dev/ppbus/vpo.c +++ b/sys/dev/ppbus/vpo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vpo.c,v 1.14 1999/05/06 21:14:49 ken Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/vpoio.c b/sys/dev/ppbus/vpoio.c index 4b9ff52fba31..b1582293d825 100644 --- a/sys/dev/ppbus/vpoio.c +++ b/sys/dev/ppbus/vpoio.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vpoio.c,v 1.6 1999/01/30 15:35:39 nsouch Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/ppbus/vpoio.h b/sys/dev/ppbus/vpoio.h index 1bd7d11adb1f..e007d3e8e422 100644 --- a/sys/dev/ppbus/vpoio.h +++ b/sys/dev/ppbus/vpoio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vpoio.h,v 1.1.2.2 1998/06/14 14:37:43 son Exp $ + * $FreeBSD$ * */ #ifndef __VP0IO_H diff --git a/sys/dev/ppc/ppc.c b/sys/dev/ppc/ppc.c index 073eab558d8f..436caebf84a2 100644 --- a/sys/dev/ppc/ppc.c +++ b/sys/dev/ppc/ppc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppc.c,v 1.20 1999/02/14 22:02:47 nsouch Exp $ + * $FreeBSD$ * */ #include "ppc.h" diff --git a/sys/dev/ppc/ppcreg.h b/sys/dev/ppc/ppcreg.h index 3a61ae7675a9..faecb9771ff8 100644 --- a/sys/dev/ppc/ppcreg.h +++ b/sys/dev/ppc/ppcreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppcreg.h,v 1.7 1999/01/10 16:41:13 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __PPCREG_H diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index b16f6e4f9131..a3a4db2be574 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rp.c,v 1.28 1999/05/31 11:26:24 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/scd/scd.c b/sys/dev/scd/scd.c index a9e39f13fdc2..5ec3eadead22 100644 --- a/sys/dev/scd/scd.c +++ b/sys/dev/scd/scd.c @@ -41,7 +41,7 @@ */ -/* $Id: scd.c,v 1.47 1999/05/31 11:26:26 phk Exp $ */ +/* $FreeBSD$ */ /* Please send any comments to micke@dynas.se */ diff --git a/sys/dev/scd/scdreg.h b/sys/dev/scd/scdreg.h index d04dc6919e2e..e9ce3b15a23f 100644 --- a/sys/dev/scd/scdreg.h +++ b/sys/dev/scd/scdreg.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index e4de7e6956db..9a79c2635291 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $ + * $FreeBSD$ */ /* @@ -119,7 +119,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $"; + "$FreeBSD$"; #endif static struct sf_type sf_devs[] = { diff --git a/sys/dev/sf/if_sfreg.h b/sys/dev/sf/if_sfreg.h index 4ead87013a32..e5149aef95b2 100644 --- a/sys/dev/sf/if_sfreg.h +++ b/sys/dev/sf/if_sfreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sfreg.h,v 1.4 1999/07/21 03:44:25 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 34b19d467495..4186f4be232b 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.90 1999/08/27 06:53:34 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/sys/dev/si/si.h b/sys/dev/si/si.h index 416486c039b0..29d709bb3284 100644 --- a/sys/dev/si/si.h +++ b/sys/dev/si/si.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.h,v 1.12 1998/03/23 16:27:43 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/si/sireg.h b/sys/dev/si/sireg.h index 4697a7fe236d..711bf92e7ea0 100644 --- a/sys/dev/si/sireg.h +++ b/sys/dev/si/sireg.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: sireg.h,v 1.6 1998/03/23 16:27:40 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 7a8c247fe2a8..962074416053 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sio.c,v 1.255 1999/08/09 11:02:38 phk Exp $ + * $FreeBSD$ * from: @(#)com.c 7.5 (Berkeley) 5/16/91 * from: i386/isa sio.c,v 1.234 */ diff --git a/sys/dev/sio/sioreg.h b/sys/dev/sio/sioreg.h index cb7aa5fbd198..052106525998 100644 --- a/sys/dev/sio/sioreg.h +++ b/sys/dev/sio/sioreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)comreg.h 7.2 (Berkeley) 5/9/91 - * $Id: sioreg.h,v 1.11 1998/09/26 14:00:29 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c index aee546f554bb..4038967091a8 100644 --- a/sys/dev/sk/if_sk.c +++ b/sys/dev/sk/if_sk.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $ + * $FreeBSD$ */ /* @@ -102,7 +102,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $"; + "$FreeBSD$"; #endif static struct sk_type sk_devs[] = { diff --git a/sys/dev/sk/if_skreg.h b/sys/dev/sk/if_skreg.h index f03aeff36705..b0eaa90fce6c 100644 --- a/sys/dev/sk/if_skreg.h +++ b/sys/dev/sk/if_skreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_skreg.h,v 1.5 1999/07/23 02:06:56 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/sk/xmaciireg.h b/sys/dev/sk/xmaciireg.h index fe8946bdabdb..f649e93a044e 100644 --- a/sys/dev/sk/xmaciireg.h +++ b/sys/dev/sk/xmaciireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: xmaciireg.h,v 1.10 1999/07/09 03:35:12 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/smbus/smb.c b/sys/dev/smbus/smb.c index 06e5246552ef..b08943569a55 100644 --- a/sys/dev/smbus/smb.c +++ b/sys/dev/smbus/smb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smb.c,v 1.14 1999/07/04 14:58:21 phk Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/smbus/smb.h b/sys/dev/smbus/smb.h index e0ebef8b2dd4..7ed0a82f58fa 100644 --- a/sys/dev/smbus/smb.h +++ b/sys/dev/smbus/smb.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smb.h,v 1.1 1998/09/03 21:00:08 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __SMB_H diff --git a/sys/dev/smbus/smbconf.c b/sys/dev/smbus/smbconf.c index 59c105c325c7..d97305c1c553 100644 --- a/sys/dev/smbus/smbconf.c +++ b/sys/dev/smbus/smbconf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smbconf.c,v 1.5 1999/02/13 17:57:19 nsouch Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/smbus/smbconf.h b/sys/dev/smbus/smbconf.h index c260de4f8625..40289f76a552 100644 --- a/sys/dev/smbus/smbconf.h +++ b/sys/dev/smbus/smbconf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smbconf.h,v 1.4 1999/02/13 17:57:19 nsouch Exp $ + * $FreeBSD$ */ #ifndef __SMBONF_H #define __SMBONF_H diff --git a/sys/dev/smbus/smbus.c b/sys/dev/smbus/smbus.c index 2f2632ed3fc9..1107992f467b 100644 --- a/sys/dev/smbus/smbus.c +++ b/sys/dev/smbus/smbus.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smbus.c,v 1.9 1999/05/08 21:59:08 dfr Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/dev/smbus/smbus.h b/sys/dev/smbus/smbus.h index c89cde1856d9..9f96b9dfe172 100644 --- a/sys/dev/smbus/smbus.h +++ b/sys/dev/smbus/smbus.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smbus.h,v 1.1.1.1 1998/08/10 18:26:05 son Exp $ + * $FreeBSD$ * */ #ifndef __SMBUS_H diff --git a/sys/dev/smbus/smbus_if.m b/sys/dev/smbus/smbus_if.m index 3e118811b5b0..d520c2b35709 100644 --- a/sys/dev/smbus/smbus_if.m +++ b/sys/dev/smbus/smbus_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: smbus_if.m,v 1.3 1998/11/07 14:56:04 nsouch Exp $ +# $FreeBSD$ # INTERFACE smbus; diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index 0e7bf1afd7a8..756368655884 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -12,7 +12,7 @@ * * Snoop stuff. * - * $Id: tty_snoop.c,v 1.40 1999/06/17 23:42:44 gpalmer Exp $ + * $FreeBSD$ */ #include "snp.h" diff --git a/sys/dev/speaker/speaker.h b/sys/dev/speaker/speaker.h index 0d204bfe2f07..78b55b6135e3 100644 --- a/sys/dev/speaker/speaker.h +++ b/sys/dev/speaker/speaker.h @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_SPEAKER_H_ diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c index 29f82055c98a..39d50c4c923a 100644 --- a/sys/dev/speaker/spkr.c +++ b/sys/dev/speaker/spkr.c @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov * - * $Id: spkr.c,v 1.39 1999/08/23 20:35:17 bde Exp $ + * $FreeBSD$ */ #include "speaker.h" diff --git a/sys/dev/sr/if_sr.c b/sys/dev/sr/if_sr.c index ba883f7fecc9..6d56ab42712f 100644 --- a/sys/dev/sr/if_sr.c +++ b/sys/dev/sr/if_sr.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_sr.c,v 1.23 1999/05/06 22:14:46 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/sr/if_sr_isa.c b/sys/dev/sr/if_sr_isa.c index ba883f7fecc9..6d56ab42712f 100644 --- a/sys/dev/sr/if_sr_isa.c +++ b/sys/dev/sr/if_sr_isa.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_sr.c,v 1.23 1999/05/06 22:14:46 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/sr/if_sr_pci.c b/sys/dev/sr/if_sr_pci.c index 260f5ef0c5d0..04d0db82c418 100644 --- a/sys/dev/sr/if_sr_pci.c +++ b/sys/dev/sr/if_sr_pci.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_sr_p.c,v 1.9 1999/05/09 17:06:59 peter Exp $ + * $FreeBSD$ */ #include "sr.h" diff --git a/sys/dev/sr/if_srregs.h b/sys/dev/sr/if_srregs.h index 689b6abecf2d..64d9ba11c50e 100644 --- a/sys/dev/sr/if_srregs.h +++ b/sys/dev/sr/if_srregs.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IF_SRREGS_H_ #define _IF_SRREGS_H_ diff --git a/sys/dev/streams/streams.c b/sys/dev/streams/streams.c index 685d724fb5cd..f8e134851ab3 100644 --- a/sys/dev/streams/streams.c +++ b/sys/dev/streams/streams.c @@ -30,7 +30,7 @@ * skeleton produced from /usr/share/examples/drivers/make_pseudo_driver.sh * in 3.0-980524-SNAP then hacked a bit (but probably not enough :-). * - * $Id: streams.c,v 1.9 1999/08/04 18:53:37 green Exp $ + * $FreeBSD$ */ #include "streams.h" /* generated file.. defines NSTREAMS */ diff --git a/sys/dev/syscons/blank/blank_saver.c b/sys/dev/syscons/blank/blank_saver.c index 2979c0da9442..960acca5a512 100644 --- a/sys/dev/syscons/blank/blank_saver.c +++ b/sys/dev/syscons/blank/blank_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: blank_saver.c,v 1.15 1999/01/11 03:18:44 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/daemon/daemon_saver.c b/sys/dev/syscons/daemon/daemon_saver.c index ebedfaa2e8c0..bc03f6446401 100644 --- a/sys/dev/syscons/daemon/daemon_saver.c +++ b/sys/dev/syscons/daemon/daemon_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: daemon_saver.c,v 1.15 1999/02/05 12:40:15 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/fade/fade_saver.c b/sys/dev/syscons/fade/fade_saver.c index 4a44c8519bcc..052fa9225908 100644 --- a/sys/dev/syscons/fade/fade_saver.c +++ b/sys/dev/syscons/fade/fade_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fade_saver.c,v 1.16 1999/01/11 03:18:46 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/fire/fire_saver.c b/sys/dev/syscons/fire/fire_saver.c index db4b80b1a7b0..59c707916160 100644 --- a/sys/dev/syscons/fire/fire_saver.c +++ b/sys/dev/syscons/fire/fire_saver.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fire_saver.c,v 1.4 1999/05/10 15:25:50 des Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/syscons/green/green_saver.c b/sys/dev/syscons/green/green_saver.c index 103154be7a8d..d6cfe80da689 100644 --- a/sys/dev/syscons/green/green_saver.c +++ b/sys/dev/syscons/green/green_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: green_saver.c,v 1.15 1999/01/11 03:18:48 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/logo/logo_saver.c b/sys/dev/syscons/logo/logo_saver.c index 24da9644a17f..2d2c660847ac 100644 --- a/sys/dev/syscons/logo/logo_saver.c +++ b/sys/dev/syscons/logo/logo_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: logo_saver.c,v 1.6 1999/04/12 13:34:57 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/rain/rain_saver.c b/sys/dev/syscons/rain/rain_saver.c index 200dc59931f0..6d2ed39e4654 100644 --- a/sys/dev/syscons/rain/rain_saver.c +++ b/sys/dev/syscons/rain/rain_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rain_saver.c,v 1.3 1999/04/12 13:34:57 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/scgfbrndr.c b/sys/dev/syscons/scgfbrndr.c index 16c40e26e566..8a1cdaa87035 100644 --- a/sys/dev/syscons/scgfbrndr.c +++ b/sys/dev/syscons/scgfbrndr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/schistory.c b/sys/dev/syscons/schistory.c index 433182d32a01..cf9585b77a5a 100644 --- a/sys/dev/syscons/schistory.c +++ b/sys/dev/syscons/schistory.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: schistory.c,v 1.1 1999/06/22 14:13:26 yokota Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/scmouse.c b/sys/dev/syscons/scmouse.c index 8d8dc6775b8c..cc5f328de290 100644 --- a/sys/dev/syscons/scmouse.c +++ b/sys/dev/syscons/scmouse.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/scvesactl.c b/sys/dev/syscons/scvesactl.c index 114c5ecbf053..c8333d50c8d8 100644 --- a/sys/dev/syscons/scvesactl.c +++ b/sys/dev/syscons/scvesactl.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scvesactl.c,v 1.10 1999/06/01 18:17:31 jlemon Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/scvgarndr.c b/sys/dev/syscons/scvgarndr.c index 16c40e26e566..8a1cdaa87035 100644 --- a/sys/dev/syscons/scvgarndr.c +++ b/sys/dev/syscons/scvgarndr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id:$ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/scvidctl.c b/sys/dev/syscons/scvidctl.c index 1187657b58ea..d01e34c5d6b1 100644 --- a/sys/dev/syscons/scvidctl.c +++ b/sys/dev/syscons/scvidctl.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scvidctl.c,v 1.10 1999/07/07 13:48:49 yokota Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/scvtb.c b/sys/dev/syscons/scvtb.c index 3c62ec9e4d10..eebeb23182de 100644 --- a/sys/dev/syscons/scvtb.c +++ b/sys/dev/syscons/scvtb.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scvtb.c,v 1.1 1999/06/22 14:13:30 yokota Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/snake/snake_saver.c b/sys/dev/syscons/snake/snake_saver.c index 51e1746f5f9d..093e564bef13 100644 --- a/sys/dev/syscons/snake/snake_saver.c +++ b/sys/dev/syscons/snake/snake_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: snake_saver.c,v 1.23 1999/02/05 12:40:15 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/star/star_saver.c b/sys/dev/syscons/star/star_saver.c index 56408dc78cee..645e4fd3c354 100644 --- a/sys/dev/syscons/star/star_saver.c +++ b/sys/dev/syscons/star/star_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: star_saver.c,v 1.20 1999/02/05 12:40:16 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 8fcaaa4ebae6..cb6202f57fac 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.318 1999/08/17 22:06:17 billf Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index 57f19a56b2e8..01d82a069fd4 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.h,v 1.51 1999/08/20 20:25:00 julian Exp $ + * $FreeBSD$ */ #ifndef _DEV_SYSCONS_SYSCONS_H_ diff --git a/sys/dev/syscons/warp/warp_saver.c b/sys/dev/syscons/warp/warp_saver.c index cd6f42b3358b..7e5140720713 100644 --- a/sys/dev/syscons/warp/warp_saver.c +++ b/sys/dev/syscons/warp/warp_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: warp_saver.c,v 1.5 1999/04/12 13:34:58 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index c83deefacdd5..5195324852b4 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_ti.c,v 1.14 1999/07/27 13:54:15 wpaul Exp $ + * $FreeBSD$ */ /* @@ -131,7 +131,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_ti.c,v 1.14 1999/07/27 13:54:15 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/dev/ti/if_tireg.h b/sys/dev/ti/if_tireg.h index 09b198230eba..36bbaddff5ad 100644 --- a/sys/dev/ti/if_tireg.h +++ b/sys/dev/ti/if_tireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_tireg.h,v 1.8 1999/07/23 18:46:24 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/ti/ti_fw.h b/sys/dev/ti/ti_fw.h index 51bc01498ad7..8d4ae4dd1ea7 100644 --- a/sys/dev/ti/ti_fw.h +++ b/sys/dev/ti/ti_fw.h @@ -2,7 +2,7 @@ * Firmware for Alteon Tigon 1 chip. * Generated by genfw.c * - * $Id$ + * $FreeBSD$ */ static int tigonFwReleaseMajor = 0xc; static int tigonFwReleaseMinor = 0x3; diff --git a/sys/dev/ti/ti_fw2.h b/sys/dev/ti/ti_fw2.h index e2ee31f7e4c9..e46ac9640143 100644 --- a/sys/dev/ti/ti_fw2.h +++ b/sys/dev/ti/ti_fw2.h @@ -3,7 +3,7 @@ * Built on Thu Jul 15 17:08:34 1999 by wpaul@xylophone * OS: FreeBSD 3.2-RELEASE * - * $Id: genfw.c,v 1.2 1999/03/18 17:16:43 wpaul Exp $ + * $FreeBSD$ */ static int tigon2FwReleaseMajor = 0xc; static int tigon2FwReleaseMinor = 0x3; diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index b7cdc5d3c4c9..6830e10690c7 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/if_tx.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_tx.c,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_tx.c,v 1.30 1999/08/21 06:24:35 msmith Exp $ */ +/* $FreeBSD$ */ /*- * Copyright (c) 1997 Semen Ustimenko (semen@iclub.nsu.ru) diff --git a/sys/dev/tx/if_txreg.h b/sys/dev/tx/if_txreg.h index 5d0d89570d7d..5efe056267f1 100644 --- a/sys/dev/tx/if_txreg.h +++ b/sys/dev/tx/if_txreg.h @@ -1,5 +1,5 @@ /* $OpenBSD: if_txvar.h,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_txvar.h,v 1.2 1999/03/14 08:30:23 semenu Exp $ */ +/* $FreeBSD$ */ /*- * Copyright (c) 1997 Semen Ustimenko diff --git a/sys/dev/tx/if_txvar.h b/sys/dev/tx/if_txvar.h index 5d0d89570d7d..5efe056267f1 100644 --- a/sys/dev/tx/if_txvar.h +++ b/sys/dev/tx/if_txvar.h @@ -1,5 +1,5 @@ /* $OpenBSD: if_txvar.h,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_txvar.h,v 1.2 1999/03/14 08:30:23 semenu Exp $ */ +/* $FreeBSD$ */ /*- * Copyright (c) 1997 Semen Ustimenko diff --git a/sys/dev/vinum/COPYRIGHT b/sys/dev/vinum/COPYRIGHT index ed43ff1f54eb..f0295e6a6d0e 100644 --- a/sys/dev/vinum/COPYRIGHT +++ b/sys/dev/vinum/COPYRIGHT @@ -33,5 +33,5 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: COPYRIGHT,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ + * $FreeBSD$ */ diff --git a/sys/dev/vinum/makestatetext b/sys/dev/vinum/makestatetext index 02a927e4e308..3cb709c6b460 100755 --- a/sys/dev/vinum/makestatetext +++ b/sys/dev/vinum/makestatetext @@ -1,6 +1,6 @@ #!/bin/sh # Make statetexts.h from vinumstate.h -# $Id: makestatetext,v 1.5 1999/01/15 07:30:45 grog Exp grog $ +# $FreeBSD$ infile=vinumstate.h ofile=statetexts.h cat > $ofile < diff --git a/sys/dev/vinum/vinumext.h b/sys/dev/vinum/vinumext.h index c8166541c084..5745e2bcf46d 100644 --- a/sys/dev/vinum/vinumext.h +++ b/sys/dev/vinum/vinumext.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumext.h,v 1.20 1999/06/23 01:53:37 grog Exp grog $ + * $FreeBSD$ */ /* vinumext.h: external definitions */ diff --git a/sys/dev/vinum/vinumhdr.h b/sys/dev/vinum/vinumhdr.h index 1baa60b6f174..22b62d6040c0 100644 --- a/sys/dev/vinum/vinumhdr.h +++ b/sys/dev/vinum/vinumhdr.h @@ -35,7 +35,7 @@ */ /* Header files used by all modules */ -/* $Id: vinumhdr.h,v 1.12 1999/01/28 08:58:33 grog Exp grog $ */ +/* $FreeBSD$ */ #include #ifdef KERNEL diff --git a/sys/dev/vinum/vinuminterrupt.c b/sys/dev/vinum/vinuminterrupt.c index 448dad2052c1..5fa77868f869 100644 --- a/sys/dev/vinum/vinuminterrupt.c +++ b/sys/dev/vinum/vinuminterrupt.c @@ -39,7 +39,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinuminterrupt.c,v 1.6 1999/06/18 00:50:53 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c index d49eb3ac1008..6cf3f0a23988 100644 --- a/sys/dev/vinum/vinumio.c +++ b/sys/dev/vinum/vinumio.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumio.c,v 1.25 1999/06/28 02:37:48 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumio.h b/sys/dev/vinum/vinumio.h index a7c43d3989af..cecd3f6c02d1 100644 --- a/sys/dev/vinum/vinumio.h +++ b/sys/dev/vinum/vinumio.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumio.h,v 1.16 1999/03/29 08:43:19 grog Exp grog $ + * $FreeBSD$ */ #ifdef VINUMDEBUG diff --git a/sys/dev/vinum/vinumioctl.c b/sys/dev/vinum/vinumioctl.c index 5eaa697948cd..27b2d96eef70 100644 --- a/sys/dev/vinum/vinumioctl.c +++ b/sys/dev/vinum/vinumioctl.c @@ -41,7 +41,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumioctl.c,v 1.9 1999/07/03 04:59:57 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumkw.h b/sys/dev/vinum/vinumkw.h index 31293bcaa98b..4d33c24028fa 100644 --- a/sys/dev/vinum/vinumkw.h +++ b/sys/dev/vinum/vinumkw.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumkw.h,v 1.13 1999/07/02 03:46:32 grog Exp grog $ + * $FreeBSD$ */ /* diff --git a/sys/dev/vinum/vinumlock.c b/sys/dev/vinum/vinumlock.c index 8bc13207c13e..c7bf3dbad931 100644 --- a/sys/dev/vinum/vinumlock.c +++ b/sys/dev/vinum/vinumlock.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumlock.c,v 1.10 1999/05/15 03:47:45 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinummemory.c b/sys/dev/vinum/vinummemory.c index 27f6f8be0306..e13d7249dd84 100644 --- a/sys/dev/vinum/vinummemory.c +++ b/sys/dev/vinum/vinummemory.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinummemory.c,v 1.20 1999/03/19 03:21:08 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumparser.c b/sys/dev/vinum/vinumparser.c index 5cff5fee2428..48ec43bc2ae9 100644 --- a/sys/dev/vinum/vinumparser.c +++ b/sys/dev/vinum/vinumparser.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumparser.c,v 1.16 1999/06/29 09:04:28 grog Exp grog $ + * $FreeBSD$ */ /* diff --git a/sys/dev/vinum/vinumraid5.c b/sys/dev/vinum/vinumraid5.c index aa5427569054..b1be512e34c0 100644 --- a/sys/dev/vinum/vinumraid5.c +++ b/sys/dev/vinum/vinumraid5.c @@ -38,7 +38,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: raid5.c,v 1.15 1999/07/07 03:46:01 grog Exp grog $ + * $FreeBSD$ */ #include #include diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c index f788752a3539..2b7eae6a6051 100644 --- a/sys/dev/vinum/vinumrequest.c +++ b/sys/dev/vinum/vinumrequest.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumrequest.c,v 1.24 1999/07/05 01:53:14 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumrevive.c b/sys/dev/vinum/vinumrevive.c index a701ae3c05dc..534976624cb5 100644 --- a/sys/dev/vinum/vinumrevive.c +++ b/sys/dev/vinum/vinumrevive.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumrevive.c,v 1.8 1999/06/28 01:57:50 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumstate.c b/sys/dev/vinum/vinumstate.c index b6e15baf9132..2e52f6c4e51d 100644 --- a/sys/dev/vinum/vinumstate.c +++ b/sys/dev/vinum/vinumstate.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumstate.c,v 2.12 1999/07/05 01:36:48 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vinum/vinumstate.h b/sys/dev/vinum/vinumstate.h index 38efa3122d5b..572f317d03dc 100644 --- a/sys/dev/vinum/vinumstate.h +++ b/sys/dev/vinum/vinumstate.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumstate.h,v 1.14 1999/03/25 02:17:38 grog Exp grog $ + * $FreeBSD$ */ /* diff --git a/sys/dev/vinum/vinumutil.c b/sys/dev/vinum/vinumutil.c index fee35550fa34..45b8bde65f1a 100644 --- a/sys/dev/vinum/vinumutil.c +++ b/sys/dev/vinum/vinumutil.c @@ -35,7 +35,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumutil.c,v 1.12 1999/05/15 04:44:24 grog Exp grog $ + * $FreeBSD$ */ /* This file contains utility routines used both in kernel and user context */ diff --git a/sys/dev/vinum/vinumvar.h b/sys/dev/vinum/vinumvar.h index f844010742a9..a37c9e82d697 100644 --- a/sys/dev/vinum/vinumvar.h +++ b/sys/dev/vinum/vinumvar.h @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumvar.h,v 1.20 1999/07/02 05:24:52 grog Exp grog $ + * $FreeBSD$ */ #include diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c index af68ae56aab7..8254f873620d 100644 --- a/sys/dev/vn/vn.c +++ b/sys/dev/vn/vn.c @@ -38,7 +38,7 @@ * from: Utah Hdr: vn.c 1.13 94/04/02 * * from: @(#)vn.c 8.6 (Berkeley) 4/1/94 - * $Id: vn.c,v 1.85 1999/08/23 09:35:12 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c index 2f91c23b2505..cae329a5761d 100644 --- a/sys/dev/vr/if_vr.c +++ b/sys/dev/vr/if_vr.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vr.c,v 1.14 1999/08/10 17:15:10 wpaul Exp $ + * $FreeBSD$ */ /* @@ -100,7 +100,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_vr.c,v 1.14 1999/08/10 17:15:10 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/dev/vr/if_vrreg.h b/sys/dev/vr/if_vrreg.h index e1e4ae6d1cfc..fef8e48fc390 100644 --- a/sys/dev/vr/if_vrreg.h +++ b/sys/dev/vr/if_vrreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vrreg.h,v 1.4 1999/05/06 15:32:50 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/dev/vx/if_vx.c b/sys/dev/vx/if_vx.c index 62cd9ebd4d90..a67cff8f4e61 100644 --- a/sys/dev/vx/if_vx.c +++ b/sys/dev/vx/if_vx.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vx.c,v 1.20 1999/01/27 20:09:20 dillon Exp $ + * $FreeBSD$ * */ diff --git a/sys/dev/wi/if_wavelan_ieee.h b/sys/dev/wi/if_wavelan_ieee.h index f002933a9bdc..ef5f5ae709cc 100644 --- a/sys/dev/wi/if_wavelan_ieee.h +++ b/sys/dev/wi/if_wavelan_ieee.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wavelan_ieee.h,v 1.4 1999/04/27 02:02:41 wpaul Exp $ + * $FreeBSD$ */ #ifndef _IF_WAVELAN_IEEE_H diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index 0a92e8092463..73e56d7295b6 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $ + * $FreeBSD$ */ /* @@ -117,7 +117,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $"; + "$FreeBSD$"; #endif static struct wi_softc wi_softc[NWI]; diff --git a/sys/dev/wi/if_wireg.h b/sys/dev/wi/if_wireg.h index 75c963ea4686..d4173273f524 100644 --- a/sys/dev/wi/if_wireg.h +++ b/sys/dev/wi/if_wireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wireg.h,v 1.4 1999/05/07 03:28:52 wpaul Exp $ + * $FreeBSD$ */ struct wi_counters { diff --git a/sys/dev/wl/if_wl.c b/sys/dev/wl/if_wl.c index 2c37caf84774..2a68f775e677 100644 --- a/sys/dev/wl/if_wl.c +++ b/sys/dev/wl/if_wl.c @@ -1,4 +1,4 @@ -/* $Id: if_wl.c,v 1.23 1999/08/18 06:11:59 mdodd Exp $ */ +/* $FreeBSD$ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/xe/if_xe.c b/sys/dev/xe/if_xe.c index 4d67a35a54dc..d8351f09f730 100644 --- a/sys/dev/xe/if_xe.c +++ b/sys/dev/xe/if_xe.c @@ -23,8 +23,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_xe.c,v 1.20 1999/06/13 19:17:40 scott Exp $ - * $FreeBSD$ + * $FreeBSD$ + * $FreeBSD$ */ /* diff --git a/sys/dev/xe/if_xereg.h b/sys/dev/xe/if_xereg.h index a4ecb35da19c..9eb7d3138288 100644 --- a/sys/dev/xe/if_xereg.h +++ b/sys/dev/xe/if_xereg.h @@ -23,8 +23,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_xereg.h,v 1.5 1999/05/20 21:53:58 scott Exp $ - * $FreeBSD$ + * $FreeBSD$ + * $FreeBSD$ */ /* diff --git a/sys/fs/cd9660/TODO b/sys/fs/cd9660/TODO index cf3fadc5d882..b8d7f3efebb9 100644 --- a/sys/fs/cd9660/TODO +++ b/sys/fs/cd9660/TODO @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ 2) should understand Rock Ridge diff --git a/sys/fs/cd9660/cd9660_bmap.c b/sys/fs/cd9660/cd9660_bmap.c index e787f83a98cc..e5fcd9ab32b3 100644 --- a/sys/fs/cd9660/cd9660_bmap.c +++ b/sys/fs/cd9660/cd9660_bmap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94 - * $Id: cd9660_bmap.c,v 1.6 1997/02/22 09:38:47 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c index 971322048310..b9aabbc7e2b8 100644 --- a/sys/fs/cd9660/cd9660_lookup.c +++ b/sys/fs/cd9660/cd9660_lookup.c @@ -38,7 +38,7 @@ * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91 * * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_lookup.c,v 1.21 1999/01/27 21:49:54 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index ea22187acb74..d7093fe3fd7f 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_node.c,v 1.27 1999/01/27 21:49:54 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_node.h b/sys/fs/cd9660/cd9660_node.h index 46e54466fb9a..0409efe2d817 100644 --- a/sys/fs/cd9660/cd9660_node.h +++ b/sys/fs/cd9660/cd9660_node.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.h 8.6 (Berkeley) 5/14/95 - * $Id: cd9660_node.h,v 1.17 1998/02/03 21:39:30 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c index c4ad1d7b19a6..b4f97a98e112 100644 --- a/sys/fs/cd9660/cd9660_rrip.c +++ b/sys/fs/cd9660/cd9660_rrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.c 8.6 (Berkeley) 12/5/94 - * $Id: cd9660_rrip.c,v 1.15 1999/05/11 19:54:24 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_rrip.h b/sys/fs/cd9660/cd9660_rrip.h index cacee390d074..5008abf2a0ac 100644 --- a/sys/fs/cd9660/cd9660_rrip.h +++ b/sys/fs/cd9660/cd9660_rrip.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.h 8.2 (Berkeley) 12/5/94 - * $Id: cd9660_rrip.h,v 1.3.2000.1 1996/09/30 12:46:48 dfr Exp $ + * $FreeBSD$ */ typedef struct { diff --git a/sys/fs/cd9660/cd9660_util.c b/sys/fs/cd9660/cd9660_util.c index 21d4b9bbc343..2a11dc2f6361 100644 --- a/sys/fs/cd9660/cd9660_util.c +++ b/sys/fs/cd9660/cd9660_util.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)cd9660_util.c 8.3 (Berkeley) 12/5/94 - * $Id: cd9660_util.c,v 1.11 1999/04/18 10:58:02 dcs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 59421d07a57f..0ed30ed79da8 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95 - * $Id: cd9660_vfsops.c,v 1.60 1999/08/25 12:24:39 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 86cd115b6634..ee2528b2d8cc 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vnops.c 8.19 (Berkeley) 5/27/95 - * $Id: cd9660_vnops.c,v 1.56 1999/05/11 19:54:25 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/cd9660/iso.h b/sys/fs/cd9660/iso.h index 5d211555e76a..6a685d2465e9 100644 --- a/sys/fs/cd9660/iso.h +++ b/sys/fs/cd9660/iso.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.6 (Berkeley) 5/10/95 - * $Id: iso.h,v 1.16 1997/05/07 13:23:04 joerg Exp $ + * $FreeBSD$ */ #define ISODCL(from, to) (to - from + 1) diff --git a/sys/fs/cd9660/iso_rrip.h b/sys/fs/cd9660/iso_rrip.h index 2b256d51eca0..0c06e98825ce 100644 --- a/sys/fs/cd9660/iso_rrip.h +++ b/sys/fs/cd9660/iso_rrip.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)iso_rrip.h 8.2 (Berkeley) 1/23/94 - * $Id: iso_rrip.h,v 1.4 1997/02/22 09:38:52 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/fs/coda/cnode.h b/sys/fs/coda/cnode.h index ee4573d51020..75d29acc22ed 100644 --- a/sys/fs/coda/cnode.h +++ b/sys/fs/coda/cnode.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/cnode.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: cnode.h,v 1.5 1998/11/11 20:32:20 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda.h b/sys/fs/coda/coda.h index db2ec539b003..5a25bc67f152 100644 --- a/sys/fs/coda/coda.h +++ b/sys/fs/coda/coda.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda.h,v 1.6 1998/11/11 20:32:20 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_fbsd.c b/sys/fs/coda/coda_fbsd.c index 22a5963acd29..ea16d154b4f7 100644 --- a/sys/fs/coda/coda_fbsd.c +++ b/sys/fs/coda/coda_fbsd.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_fbsd.cr,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_fbsd.c,v 1.15 1999/05/31 11:24:16 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_io.h b/sys/fs/coda/coda_io.h index e896ff0813b7..6620f4f0c32e 100644 --- a/sys/fs/coda/coda_io.h +++ b/sys/fs/coda/coda_io.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_io.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_io.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_kernel.h b/sys/fs/coda/coda_kernel.h index 33b372f49b13..cc0fd957f81c 100644 --- a/sys/fs/coda/coda_kernel.h +++ b/sys/fs/coda/coda_kernel.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_kernel.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_kernel.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_namecache.c b/sys/fs/coda/coda_namecache.c index 63ee9f9772f7..23425b5a13dd 100644 --- a/sys/fs/coda/coda_namecache.c +++ b/sys/fs/coda/coda_namecache.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_namecache.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_namecache.c,v 1.8 1998/10/28 19:33:50 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_namecache.h b/sys/fs/coda/coda_namecache.h index e4739114c2c8..11f2e80b12b2 100644 --- a/sys/fs/coda/coda_namecache.h +++ b/sys/fs/coda/coda_namecache.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_namecache.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_namecache.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_opstats.h b/sys/fs/coda/coda_opstats.h index e62c04d3db1f..8661a07ebfa0 100644 --- a/sys/fs/coda/coda_opstats.h +++ b/sys/fs/coda/coda_opstats.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_opstats.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_opstats.h,v 1.3 1998/09/11 18:50:17 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_pioctl.h b/sys/fs/coda/coda_pioctl.h index 57bc67ed0021..2c2577ce57ee 100644 --- a/sys/fs/coda/coda_pioctl.h +++ b/sys/fs/coda/coda_pioctl.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_pioctl.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_pioctl.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_psdev.c b/sys/fs/coda/coda_psdev.c index cde967f04c9b..520702ba48d2 100644 --- a/sys/fs/coda/coda_psdev.c +++ b/sys/fs/coda/coda_psdev.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_psdev.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_psdev.c,v 1.10 1999/01/17 21:04:53 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_psdev.h b/sys/fs/coda/coda_psdev.h index 11922adfe02c..c6276f3e710c 100644 --- a/sys/fs/coda/coda_psdev.h +++ b/sys/fs/coda/coda_psdev.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_psdev.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_psdev.c,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_subr.c b/sys/fs/coda/coda_subr.c index f64123321f3b..aaf805c54ad6 100644 --- a/sys/fs/coda/coda_subr.c +++ b/sys/fs/coda/coda_subr.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_subr.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_subr.c,v 1.9 1999/01/17 20:25:15 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_subr.h b/sys/fs/coda/coda_subr.h index fe27bfda19ce..71c8a3de3812 100644 --- a/sys/fs/coda/coda_subr.h +++ b/sys/fs/coda/coda_subr.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_subr.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_subr.h,v 1.5 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_venus.c b/sys/fs/coda/coda_venus.c index 9853c7e834bb..f27357498d45 100644 --- a/sys/fs/coda/coda_venus.c +++ b/sys/fs/coda/coda_venus.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_venus.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_venus.c,v 1.7 1999/05/11 19:53:51 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_venus.h b/sys/fs/coda/coda_venus.h index 6fdd15c60fad..392a73f07114 100644 --- a/sys/fs/coda/coda_venus.h +++ b/sys/fs/coda/coda_venus.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_venus.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_venus.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_vfsops.c b/sys/fs/coda/coda_vfsops.c index fda83939beb5..35959df04239 100644 --- a/sys/fs/coda/coda_vfsops.c +++ b/sys/fs/coda/coda_vfsops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.c,v 1.16 1999/07/21 12:51:36 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_vfsops.h b/sys/fs/coda/coda_vfsops.h index ef23c3fd3828..13a006d1b1c7 100644 --- a/sys/fs/coda/coda_vfsops.h +++ b/sys/fs/coda/coda_vfsops.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.h,v 1.2 1998/09/02 19:09:53 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_vnops.c b/sys/fs/coda/coda_vnops.c index b0a9bedec0cb..6614b4b2c508 100644 --- a/sys/fs/coda/coda_vnops.c +++ b/sys/fs/coda/coda_vnops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_vnops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vnops.c,v 1.17 1999/08/08 13:22:05 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/coda/coda_vnops.h b/sys/fs/coda/coda_vnops.h index d188eb6fe5ff..0fb598582d75 100644 --- a/sys/fs/coda/coda_vnops.h +++ b/sys/fs/coda/coda_vnops.h @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/coda/coda_vnops.h,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vnops.h,v 1.4 1998/09/13 13:57:59 rvb Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c index 4e3853ce54c5..f9acbd043587 100644 --- a/sys/fs/deadfs/dead_vnops.c +++ b/sys/fs/deadfs/dead_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dead_vnops.c 8.1 (Berkeley) 6/10/93 - * $Id: dead_vnops.c,v 1.24 1998/08/23 11:43:29 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/fdescfs/fdesc.h b/sys/fs/fdescfs/fdesc.h index bbba54dcfdd8..463e52836918 100644 --- a/sys/fs/fdescfs/fdesc.h +++ b/sys/fs/fdescfs/fdesc.h @@ -35,7 +35,7 @@ * * @(#)fdesc.h 8.5 (Berkeley) 1/21/94 * - * $Id: fdesc.h,v 1.5 1997/02/22 09:40:14 peter Exp $ + * $FreeBSD$ */ #ifdef KERNEL diff --git a/sys/fs/fdescfs/fdesc_vfsops.c b/sys/fs/fdescfs/fdesc_vfsops.c index 758f3b5abbe6..157454c502ef 100644 --- a/sys/fs/fdescfs/fdesc_vfsops.c +++ b/sys/fs/fdescfs/fdesc_vfsops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94 * - * $Id: fdesc_vfsops.c,v 1.17 1999/01/12 11:49:30 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/fdescfs/fdesc_vnops.c b/sys/fs/fdescfs/fdesc_vnops.c index bc0cb5b48b7d..17a38d5be9d6 100644 --- a/sys/fs/fdescfs/fdesc_vnops.c +++ b/sys/fs/fdescfs/fdesc_vnops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vnops.c 8.9 (Berkeley) 1/21/94 * - * $Id: fdesc_vnops.c,v 1.42 1999/05/31 11:27:49 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/fifofs/fifo.h b/sys/fs/fifofs/fifo.h index ec186d0daccb..e63020752863 100644 --- a/sys/fs/fifofs/fifo.h +++ b/sys/fs/fifofs/fifo.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo.h 8.6 (Berkeley) 5/21/95 - * $Id: fifo.h,v 1.14 1997/09/14 02:57:51 peter Exp $ + * $FreeBSD$ */ extern vop_t **fifo_vnodeop_p; diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c index f7e47e1284fb..4a8199a672b5 100644 --- a/sys/fs/fifofs/fifo_vnops.c +++ b/sys/fs/fifofs/fifo_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo_vnops.c 8.10 (Berkeley) 5/27/95 - * $Id: fifo_vnops.c,v 1.42 1998/02/04 22:32:45 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/msdosfs/bootsect.h b/sys/fs/msdosfs/bootsect.h index 11b93371a534..666c0f8f41b1 100644 --- a/sys/fs/msdosfs/bootsect.h +++ b/sys/fs/msdosfs/bootsect.h @@ -1,4 +1,4 @@ -/* $Id: bootsect.h,v 1.5 1997/02/22 09:40:43 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: bootsect.h,v 1.9 1997/11/17 15:36:17 ws Exp $ */ /* diff --git a/sys/fs/msdosfs/bpb.h b/sys/fs/msdosfs/bpb.h index bc00a758de51..88b9eefb859a 100644 --- a/sys/fs/msdosfs/bpb.h +++ b/sys/fs/msdosfs/bpb.h @@ -1,4 +1,4 @@ -/* $Id: bpb.h,v 1.5 1997/02/22 09:40:44 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: bpb.h,v 1.7 1997/11/17 15:36:24 ws Exp $ */ /* diff --git a/sys/fs/msdosfs/denode.h b/sys/fs/msdosfs/denode.h index ba2ef8c65dab..49eac87a2075 100644 --- a/sys/fs/msdosfs/denode.h +++ b/sys/fs/msdosfs/denode.h @@ -1,4 +1,4 @@ -/* $Id: denode.h,v 1.17 1998/11/21 00:20:24 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: denode.h,v 1.25 1997/11/17 15:36:28 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/direntry.h b/sys/fs/msdosfs/direntry.h index 796fe78131c8..3225b78b8936 100644 --- a/sys/fs/msdosfs/direntry.h +++ b/sys/fs/msdosfs/direntry.h @@ -1,4 +1,4 @@ -/* $Id: direntry.h,v 1.12 1998/02/26 06:45:42 msmith Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: direntry.h,v 1.14 1997/11/17 15:36:32 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/fat.h b/sys/fs/msdosfs/fat.h index 74b05e2cf78d..9f20cbae4199 100644 --- a/sys/fs/msdosfs/fat.h +++ b/sys/fs/msdosfs/fat.h @@ -1,4 +1,4 @@ -/* $Id: fat.h,v 1.6 1997/02/22 09:40:45 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: fat.h,v 1.12 1997/11/17 15:36:36 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_conv.c b/sys/fs/msdosfs/msdosfs_conv.c index 2c792ebf89bb..8c43f93c0adc 100644 --- a/sys/fs/msdosfs/msdosfs_conv.c +++ b/sys/fs/msdosfs/msdosfs_conv.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_conv.c,v 1.27 1998/05/17 21:18:08 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_conv.c,v 1.25 1997/11/17 15:36:40 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_denode.c b/sys/fs/msdosfs/msdosfs_denode.c index 3c6f9d9179fc..d864ddb5cea9 100644 --- a/sys/fs/msdosfs/msdosfs_denode.c +++ b/sys/fs/msdosfs/msdosfs_denode.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_denode.c,v 1.44 1999/01/02 11:34:56 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_denode.c,v 1.28 1998/02/10 14:10:00 mrg Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_fat.c b/sys/fs/msdosfs/msdosfs_fat.c index 1ec29db1d9c0..fae002774668 100644 --- a/sys/fs/msdosfs/msdosfs_fat.c +++ b/sys/fs/msdosfs/msdosfs_fat.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_fat.c,v 1.20 1998/04/06 11:39:04 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_fat.c,v 1.28 1997/11/17 15:36:49 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_lookup.c b/sys/fs/msdosfs/msdosfs_lookup.c index d2ad431d7f44..95e8e898ad30 100644 --- a/sys/fs/msdosfs/msdosfs_lookup.c +++ b/sys/fs/msdosfs/msdosfs_lookup.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_lookup.c,v 1.28 1999/01/02 18:52:13 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_lookup.c,v 1.37 1997/11/17 15:36:54 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index adb5b5a0ebbf..92f00846514d 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.48 1999/08/23 21:07:13 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfs_vnops.c b/sys/fs/msdosfs/msdosfs_vnops.c index 3c0a033e8d3f..2407e2e8a720 100644 --- a/sys/fs/msdosfs/msdosfs_vnops.c +++ b/sys/fs/msdosfs/msdosfs_vnops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vnops.c,v 1.87 1999/07/25 04:01:32 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_vnops.c,v 1.68 1998/02/10 14:10:04 mrg Exp $ */ /*- diff --git a/sys/fs/msdosfs/msdosfsmount.h b/sys/fs/msdosfs/msdosfsmount.h index 31a2a6756066..6bd6551341f0 100644 --- a/sys/fs/msdosfs/msdosfsmount.h +++ b/sys/fs/msdosfs/msdosfsmount.h @@ -1,4 +1,4 @@ -/* $Id: msdosfsmount.h,v 1.15 1998/02/23 09:39:29 ache Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfsmount.h,v 1.17 1997/11/17 15:37:07 ws Exp $ */ /*- diff --git a/sys/fs/ntfs/ntfs.h b/sys/fs/ntfs/ntfs.h index 657c97159d05..7aa65288a00c 100644 --- a/sys/fs/ntfs/ntfs.h +++ b/sys/fs/ntfs/ntfs.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs.h,v 1.4 1999/04/20 21:06:41 semenu Exp $ + * $FreeBSD$ */ /*#define NTFS_DEBUG 1*/ diff --git a/sys/fs/ntfs/ntfs_compr.c b/sys/fs/ntfs/ntfs_compr.c index 953b4169d1f1..412047be2caa 100644 --- a/sys/fs/ntfs/ntfs_compr.c +++ b/sys/fs/ntfs/ntfs_compr.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_compr.c,v 1.4 1999/05/12 09:42:54 semenu Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/ntfs/ntfs_compr.h b/sys/fs/ntfs/ntfs_compr.h index a79d3e239a26..bdec08cc3e78 100644 --- a/sys/fs/ntfs/ntfs_compr.h +++ b/sys/fs/ntfs/ntfs_compr.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_compr.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define NTFS_COMPBLOCK_SIZE 0x1000 diff --git a/sys/fs/ntfs/ntfs_ihash.c b/sys/fs/ntfs/ntfs_ihash.c index e79554527908..50ee7ac17353 100644 --- a/sys/fs/ntfs/ntfs_ihash.c +++ b/sys/fs/ntfs/ntfs_ihash.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95 - * $Id: ntfs_ihash.c,v 1.4 1999/05/11 19:54:50 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/ntfs/ntfs_ihash.h b/sys/fs/ntfs/ntfs_ihash.h index 1b9c3dcd48a0..16132a90f919 100644 --- a/sys/fs/ntfs/ntfs_ihash.h +++ b/sys/fs/ntfs/ntfs_ihash.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_ihash.h,v 1.2 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ void ntfs_nthashinit __P((void)); diff --git a/sys/fs/ntfs/ntfs_inode.h b/sys/fs/ntfs/ntfs_inode.h index 0b6f6a202b26..a61338552804 100644 --- a/sys/fs/ntfs/ntfs_inode.h +++ b/sys/fs/ntfs/ntfs_inode.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_inode.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ /* These flags are kept in i_flag. */ diff --git a/sys/fs/ntfs/ntfs_subr.c b/sys/fs/ntfs/ntfs_subr.c index 46b45de3d1a9..b3e75b334d83 100644 --- a/sys/fs/ntfs/ntfs_subr.c +++ b/sys/fs/ntfs/ntfs_subr.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_subr.c,v 1.4 1999/05/12 09:43:01 semenu Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/ntfs/ntfs_subr.h b/sys/fs/ntfs/ntfs_subr.h index ca5f45cd4632..f0b9a8a1df44 100644 --- a/sys/fs/ntfs/ntfs_subr.h +++ b/sys/fs/ntfs/ntfs_subr.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_subr.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define VA_LOADED 0x0001 diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c index 44877bd2e5d6..183d5dcd03cd 100644 --- a/sys/fs/ntfs/ntfs_vfsops.c +++ b/sys/fs/ntfs/ntfs_vfsops.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vfsops.c,v 1.9 1999/08/13 10:29:29 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/fs/ntfs/ntfs_vfsops.h b/sys/fs/ntfs/ntfs_vfsops.h index 015684c90311..d7f5f5d26a11 100644 --- a/sys/fs/ntfs/ntfs_vfsops.h +++ b/sys/fs/ntfs/ntfs_vfsops.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vfsops.h,v 1.2 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define VG_DONTLOADIN 0x0001 /* Tells ntfs_vgetex to do not call */ /* ntfs_loadnode on ntnode, even if */ diff --git a/sys/fs/ntfs/ntfs_vnops.c b/sys/fs/ntfs/ntfs_vnops.c index fff9add0a322..578f8bf62dfb 100644 --- a/sys/fs/ntfs/ntfs_vnops.c +++ b/sys/fs/ntfs/ntfs_vnops.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vnops.c,v 1.5 1999/05/12 09:43:06 semenu Exp $ + * $FreeBSD$ * */ diff --git a/sys/fs/ntfs/ntfsmount.h b/sys/fs/ntfs/ntfsmount.h index 1e6d322c7194..0a1f7918e383 100644 --- a/sys/fs/ntfs/ntfsmount.h +++ b/sys/fs/ntfs/ntfsmount.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfsmount.h,v 1.3 1999/04/20 21:06:44 semenu Exp $ + * $FreeBSD$ */ #define NTFS_MFLAG_CASEINS 0x00000001 diff --git a/sys/fs/nullfs/null.h b/sys/fs/nullfs/null.h index 7d46a11cd4ac..f796d18c6706 100644 --- a/sys/fs/nullfs/null.h +++ b/sys/fs/nullfs/null.h @@ -35,7 +35,7 @@ * * @(#)null.h 8.3 (Berkeley) 8/20/94 * - * $Id: null.h,v 1.7 1997/05/25 04:50:02 peter Exp $ + * $FreeBSD$ */ struct null_args { diff --git a/sys/fs/nullfs/null_subr.c b/sys/fs/nullfs/null_subr.c index 603f418fb1c3..1504fc84ac0e 100644 --- a/sys/fs/nullfs/null_subr.c +++ b/sys/fs/nullfs/null_subr.c @@ -35,7 +35,7 @@ * * @(#)null_subr.c 8.7 (Berkeley) 5/14/95 * - * $Id: null_subr.c,v 1.18 1998/07/15 02:32:18 bde Exp $ + * $FreeBSD$ */ #include "opt_debug_nullfs.h" diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c index 4ead5bd50c9f..f6ac5a0f749a 100644 --- a/sys/fs/nullfs/null_vfsops.c +++ b/sys/fs/nullfs/null_vfsops.c @@ -36,7 +36,7 @@ * @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94 * * @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92 - * $Id: null_vfsops.c,v 1.27 1998/07/30 17:40:45 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 638b9edfa69f..c9019210da55 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -37,11 +37,11 @@ * * Ancestors: * @(#)lofs_vnops.c 1.2 (Berkeley) 6/18/92 - * $Id: null_vnops.c,v 1.33 1999/06/16 23:27:38 mckusick Exp $ + * $FreeBSD$ * ...and... * @(#)null_vnodeops.c 1.20 92/07/07 UCLA Ficus project * - * $Id: null_vnops.c,v 1.33 1999/06/16 23:27:38 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/portalfs/portal.h b/sys/fs/portalfs/portal.h index d60826e6a169..6e781455d75b 100644 --- a/sys/fs/portalfs/portal.h +++ b/sys/fs/portalfs/portal.h @@ -35,7 +35,7 @@ * * @(#)portal.h 8.4 (Berkeley) 1/21/94 * - * $Id: portal.h,v 1.4 1997/02/22 09:40:24 peter Exp $ + * $FreeBSD$ */ struct portal_args { diff --git a/sys/fs/portalfs/portal_vfsops.c b/sys/fs/portalfs/portal_vfsops.c index 633bf776e10b..d447664171f1 100644 --- a/sys/fs/portalfs/portal_vfsops.c +++ b/sys/fs/portalfs/portal_vfsops.c @@ -35,7 +35,7 @@ * * @(#)portal_vfsops.c 8.11 (Berkeley) 5/14/95 * - * $Id: portal_vfsops.c,v 1.21 1998/05/06 05:29:35 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/portalfs/portal_vnops.c b/sys/fs/portalfs/portal_vnops.c index ad96332d4510..f158eadffd07 100644 --- a/sys/fs/portalfs/portal_vnops.c +++ b/sys/fs/portalfs/portal_vnops.c @@ -35,7 +35,7 @@ * * @(#)portal_vnops.c 8.14 (Berkeley) 5/21/95 * - * $Id: portal_vnops.c,v 1.35 1999/01/12 11:49:30 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/procfs/README b/sys/fs/procfs/README index 5f1b6cc7229b..f816b321b432 100644 --- a/sys/fs/procfs/README +++ b/sys/fs/procfs/README @@ -110,4 +110,4 @@ the debugger, the debugger should fork and the child should stop itself "attach". as before, the child will hit a breakpoint on the first instruction in any newly exec'd image. -$Id$ +$FreeBSD$ diff --git a/sys/fs/procfs/procfs.h b/sys/fs/procfs/procfs.h index f813070e699e..07c6da215a58 100644 --- a/sys/fs/procfs/procfs.h +++ b/sys/fs/procfs/procfs.h @@ -37,7 +37,7 @@ * @(#)procfs.h 8.9 (Berkeley) 5/14/95 * * From: - * $Id: procfs.h,v 1.26 1999/06/13 20:53:13 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index 21724e5c294c..4f4d84bf02af 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -37,7 +37,7 @@ * @(#)procfs_ctl.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_ctl.c,v 1.16 1997/04/27 21:32:21 alex Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_dbregs.c b/sys/fs/procfs/procfs_dbregs.c index 02509e006d78..ce990e983745 100644 --- a/sys/fs/procfs/procfs_dbregs.c +++ b/sys/fs/procfs/procfs_dbregs.c @@ -40,7 +40,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_fpregs.c b/sys/fs/procfs/procfs_fpregs.c index 14c3fd39c04e..b3331e5a726e 100644 --- a/sys/fs/procfs/procfs_fpregs.c +++ b/sys/fs/procfs/procfs_fpregs.c @@ -37,7 +37,7 @@ * @(#)procfs_fpregs.c 8.2 (Berkeley) 6/15/94 * * From: - * $Id: procfs_fpregs.c,v 1.7 1997/08/02 14:32:11 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_map.c b/sys/fs/procfs/procfs_map.c index 47a0ce17c7e7..83d73ab320d3 100644 --- a/sys/fs/procfs/procfs_map.c +++ b/sys/fs/procfs/procfs_map.c @@ -36,7 +36,7 @@ * * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 * - * $Id: procfs_map.c,v 1.21 1999/02/07 21:48:21 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_mem.c b/sys/fs/procfs/procfs_mem.c index 5fe9ef6794d9..35ee564e074b 100644 --- a/sys/fs/procfs/procfs_mem.c +++ b/sys/fs/procfs/procfs_mem.c @@ -37,7 +37,7 @@ * * @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94 * - * $Id: procfs_mem.c,v 1.36 1999/04/27 11:16:37 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/procfs/procfs_note.c b/sys/fs/procfs/procfs_note.c index 8bfde33b640a..273010b32956 100644 --- a/sys/fs/procfs/procfs_note.c +++ b/sys/fs/procfs/procfs_note.c @@ -36,7 +36,7 @@ * * @(#)procfs_note.c 8.2 (Berkeley) 1/21/94 * - * $Id: procfs_note.c,v 1.4 1997/02/22 09:40:28 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_regs.c b/sys/fs/procfs/procfs_regs.c index d215d44a33cf..0edb9ad60639 100644 --- a/sys/fs/procfs/procfs_regs.c +++ b/sys/fs/procfs/procfs_regs.c @@ -37,7 +37,7 @@ * @(#)procfs_regs.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_regs.c,v 1.7 1997/08/02 14:32:16 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_rlimit.c b/sys/fs/procfs/procfs_rlimit.c index 07bcd1061936..5f00aafd072e 100644 --- a/sys/fs/procfs/procfs_rlimit.c +++ b/sys/fs/procfs/procfs_rlimit.c @@ -36,7 +36,7 @@ * * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94 * - * $Id: procfs_rlimit.c,v 1.2 1999/07/09 17:56:59 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/procfs/procfs_status.c b/sys/fs/procfs/procfs_status.c index 2c8cb697ad63..b3ebd1f1983c 100644 --- a/sys/fs/procfs/procfs_status.c +++ b/sys/fs/procfs/procfs_status.c @@ -37,7 +37,7 @@ * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_status.c,v 1.14 1999/05/22 20:10:26 dt Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_subr.c b/sys/fs/procfs/procfs_subr.c index cf313e863856..01e8ae9e014a 100644 --- a/sys/fs/procfs/procfs_subr.c +++ b/sys/fs/procfs/procfs_subr.c @@ -36,7 +36,7 @@ * * @(#)procfs_subr.c 8.6 (Berkeley) 5/14/95 * - * $Id: procfs_subr.c,v 1.24 1999/04/30 13:04:21 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_type.c b/sys/fs/procfs/procfs_type.c index 8f85c548b03f..cb2a45f6a3d6 100644 --- a/sys/fs/procfs/procfs_type.c +++ b/sys/fs/procfs/procfs_type.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: procfs_type.c,v 1.4 1997/03/24 11:24:42 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index 2c22020e4fc0..0478e386d51c 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95 * - * $Id: procfs_vfsops.c,v 1.26 1998/09/07 13:17:01 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/procfs/procfs_vnops.c b/sys/fs/procfs/procfs_vnops.c index 9040c5bf4b41..2eb893415eea 100644 --- a/sys/fs/procfs/procfs_vnops.c +++ b/sys/fs/procfs/procfs_vnops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vnops.c 8.18 (Berkeley) 5/21/95 * - * $Id: procfs_vnops.c,v 1.70 1999/07/09 04:16:00 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index ca1835e5cd83..1afc40017da4 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95 - * $Id: spec_vnops.c,v 1.98 1999/08/25 00:26:34 julian Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/umapfs/umap.h b/sys/fs/umapfs/umap.h index 0c6ca3418245..09963cbe2b65 100644 --- a/sys/fs/umapfs/umap.h +++ b/sys/fs/umapfs/umap.h @@ -35,7 +35,7 @@ * * @(#)umap.h 8.4 (Berkeley) 8/20/94 * - * $Id: umap.h,v 1.8 1997/02/22 09:40:37 peter Exp $ + * $FreeBSD$ */ #define MAPFILEENTRIES 64 diff --git a/sys/fs/umapfs/umap_subr.c b/sys/fs/umapfs/umap_subr.c index 4974f03c110c..ed316a944cb1 100644 --- a/sys/fs/umapfs/umap_subr.c +++ b/sys/fs/umapfs/umap_subr.c @@ -35,7 +35,7 @@ * * @(#)umap_subr.c 8.9 (Berkeley) 5/14/95 * - * $Id: umap_subr.c,v 1.15 1998/11/09 09:21:25 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c index 3acc700a64fc..658a4ceee182 100644 --- a/sys/fs/umapfs/umap_vfsops.c +++ b/sys/fs/umapfs/umap_vfsops.c @@ -35,7 +35,7 @@ * * @(#)umap_vfsops.c 8.8 (Berkeley) 5/14/95 * - * $Id: umap_vfsops.c,v 1.24 1999/03/12 19:40:39 imp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/umapfs/umap_vnops.c b/sys/fs/umapfs/umap_vnops.c index ae47731b9215..0b73ccbb39dc 100644 --- a/sys/fs/umapfs/umap_vnops.c +++ b/sys/fs/umapfs/umap_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)umap_vnops.c 8.6 (Berkeley) 5/22/95 - * $Id: umap_vnops.c,v 1.27 1999/06/16 23:27:41 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/unionfs/union.h b/sys/fs/unionfs/union.h index 6a4aa226203e..1fc5f996cab0 100644 --- a/sys/fs/unionfs/union.h +++ b/sys/fs/unionfs/union.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union.h 8.9 (Berkeley) 12/10/94 - * $Id: union.h,v 1.12 1998/02/26 03:23:51 kato Exp $ + * $FreeBSD$ */ struct union_args { diff --git a/sys/fs/unionfs/union_subr.c b/sys/fs/unionfs/union_subr.c index 5ced12f6e322..6334810ae622 100644 --- a/sys/fs/unionfs/union_subr.c +++ b/sys/fs/unionfs/union_subr.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_subr.c 8.20 (Berkeley) 5/20/95 - * $Id: union_subr.c,v 1.36 1998/12/14 05:00:59 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c index db4d4d3b14e8..a02fb9a71f8f 100644 --- a/sys/fs/unionfs/union_vfsops.c +++ b/sys/fs/unionfs/union_vfsops.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vfsops.c 8.20 (Berkeley) 5/20/95 - * $Id: union_vfsops.c,v 1.30 1998/09/07 13:17:02 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c index 25d2dfd2bf87..145f8ca6f0ad 100644 --- a/sys/fs/unionfs/union_vnops.c +++ b/sys/fs/unionfs/union_vnops.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vnops.c 8.32 (Berkeley) 6/23/95 - * $Id: union_vnops.c,v 1.61 1999/06/16 23:27:43 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/geom/geom_ccd.c b/sys/geom/geom_ccd.c index e4faa3f4b8a6..7badacb7d7c0 100644 --- a/sys/geom/geom_ccd.c +++ b/sys/geom/geom_ccd.c @@ -1,4 +1,4 @@ -/* $Id: ccd.c,v 1.52 1999/08/14 11:40:34 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $ */ diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c index 9a477c51fb42..cf564071491d 100644 --- a/sys/gnu/ext2fs/ext2_bmap.c +++ b/sys/gnu/ext2fs/ext2_bmap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.7 (Berkeley) 3/21/95 - * $Id: ufs_bmap.c,v 1.29 1999/08/08 18:43:03 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/gnu/ext2fs/ext2_ihash.c b/sys/gnu/ext2fs/ext2_ihash.c index c2dd63e5b7f2..0a7c7d583191 100644 --- a/sys/gnu/ext2fs/ext2_ihash.c +++ b/sys/gnu/ext2fs/ext2_ihash.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95 - * $Id: ufs_ihash.c,v 1.18 1999/01/02 11:34:56 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/gnu/ext2fs/ext2_mount.h b/sys/gnu/ext2fs/ext2_mount.h index 70652b58f9ba..44974548e70a 100644 --- a/sys/gnu/ext2fs/ext2_mount.h +++ b/sys/gnu/ext2fs/ext2_mount.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95 - * $Id: ufsmount.h,v 1.13 1998/01/30 11:34:06 phk Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_UFSMOUNT_H_ diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index 77fe7b3983b7..78fbc0adaff5 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.9 (Berkeley) 5/14/95 - * $Id: inode.h,v 1.25 1999/03/06 05:21:09 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_INODE_H_ diff --git a/sys/gnu/fs/ext2fs/ext2_bmap.c b/sys/gnu/fs/ext2fs/ext2_bmap.c index 9a477c51fb42..cf564071491d 100644 --- a/sys/gnu/fs/ext2fs/ext2_bmap.c +++ b/sys/gnu/fs/ext2fs/ext2_bmap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.7 (Berkeley) 3/21/95 - * $Id: ufs_bmap.c,v 1.29 1999/08/08 18:43:03 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/gnu/fs/ext2fs/ext2_mount.h b/sys/gnu/fs/ext2fs/ext2_mount.h index 70652b58f9ba..44974548e70a 100644 --- a/sys/gnu/fs/ext2fs/ext2_mount.h +++ b/sys/gnu/fs/ext2fs/ext2_mount.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95 - * $Id: ufsmount.h,v 1.13 1998/01/30 11:34:06 phk Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_UFSMOUNT_H_ diff --git a/sys/gnu/fs/ext2fs/inode.h b/sys/gnu/fs/ext2fs/inode.h index 77fe7b3983b7..78fbc0adaff5 100644 --- a/sys/gnu/fs/ext2fs/inode.h +++ b/sys/gnu/fs/ext2fs/inode.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.9 (Berkeley) 5/14/95 - * $Id: inode.h,v 1.25 1999/03/06 05:21:09 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_INODE_H_ diff --git a/sys/gnu/i386/fpemul/control_w.h b/sys/gnu/i386/fpemul/control_w.h index 9ab4345b876d..5c7aca44cc87 100644 --- a/sys/gnu/i386/fpemul/control_w.h +++ b/sys/gnu/i386/fpemul/control_w.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/div_small.s b/sys/gnu/i386/fpemul/div_small.s index 602250020ef0..944a93f3b192 100644 --- a/sys/gnu/i386/fpemul/div_small.s +++ b/sys/gnu/i386/fpemul/div_small.s @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: div_small.s,v 1.6 1997/02/22 09:29:00 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/errors.c b/sys/gnu/i386/fpemul/errors.c index f16b6a0b7e72..7ee9136bc15b 100644 --- a/sys/gnu/i386/fpemul/errors.c +++ b/sys/gnu/i386/fpemul/errors.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: errors.c,v 1.8 1997/06/14 15:11:03 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/exception.h b/sys/gnu/i386/fpemul/exception.h index 88316f88e981..50e7d602eb69 100644 --- a/sys/gnu/i386/fpemul/exception.h +++ b/sys/gnu/i386/fpemul/exception.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id: exception.h,v 1.7 1997/02/22 09:29:02 peter Exp $ + * $FreeBSD$ * * */ diff --git a/sys/gnu/i386/fpemul/fpu_arith.c b/sys/gnu/i386/fpemul/fpu_arith.c index c2183ba75d97..e8fa93f44400 100644 --- a/sys/gnu/i386/fpemul/fpu_arith.c +++ b/sys/gnu/i386/fpemul/fpu_arith.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: fpu_arith.c,v 1.7 1997/02/22 09:29:03 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_asm.h b/sys/gnu/i386/fpemul/fpu_asm.h index c72784b5cf70..ab505e906dc1 100644 --- a/sys/gnu/i386/fpemul/fpu_asm.h +++ b/sys/gnu/i386/fpemul/fpu_asm.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id: fpu_asm.h,v 1.6 1997/02/22 09:29:03 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_aux.c b/sys/gnu/i386/fpemul/fpu_aux.c index 26bb61df769b..71b759f1e571 100644 --- a/sys/gnu/i386/fpemul/fpu_aux.c +++ b/sys/gnu/i386/fpemul/fpu_aux.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: fpu_aux.c,v 1.7 1997/02/22 09:29:04 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_emu.h b/sys/gnu/i386/fpemul/fpu_emu.h index 8571c8bbda6b..0dd2f7e49b21 100644 --- a/sys/gnu/i386/fpemul/fpu_emu.h +++ b/sys/gnu/i386/fpemul/fpu_emu.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_entry.c b/sys/gnu/i386/fpemul/fpu_entry.c index 35eb84bc507f..049b0139171e 100644 --- a/sys/gnu/i386/fpemul/fpu_entry.c +++ b/sys/gnu/i386/fpemul/fpu_entry.c @@ -55,7 +55,7 @@ * * W. Metzenthen June 1994. * - * $Id: fpu_entry.c,v 1.19 1999/01/17 20:28:12 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_etc.c b/sys/gnu/i386/fpemul/fpu_etc.c index 0e1865360877..cd91e80da62f 100644 --- a/sys/gnu/i386/fpemul/fpu_etc.c +++ b/sys/gnu/i386/fpemul/fpu_etc.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: fpu_etc.c,v 1.6 1997/02/22 09:29:06 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_proto.h b/sys/gnu/i386/fpemul/fpu_proto.h index 6e87579e39fd..fc36478eedb5 100644 --- a/sys/gnu/i386/fpemul/fpu_proto.h +++ b/sys/gnu/i386/fpemul/fpu_proto.h @@ -1,6 +1,6 @@ /* * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_system.h b/sys/gnu/i386/fpemul/fpu_system.h index dc3efe28e4a4..aff0a0d9114b 100644 --- a/sys/gnu/i386/fpemul/fpu_system.h +++ b/sys/gnu/i386/fpemul/fpu_system.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/fpu_trig.c b/sys/gnu/i386/fpemul/fpu_trig.c index 9d9ce227fb08..b1d913facd22 100644 --- a/sys/gnu/i386/fpemul/fpu_trig.c +++ b/sys/gnu/i386/fpemul/fpu_trig.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: fpu_trig.c,v 1.8 1997/02/22 09:29:08 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/get_address.c b/sys/gnu/i386/fpemul/get_address.c index ccaf68475265..4ae998b2d3fc 100644 --- a/sys/gnu/i386/fpemul/get_address.c +++ b/sys/gnu/i386/fpemul/get_address.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: get_address.c,v 1.6 1997/02/22 09:29:09 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/load_store.c b/sys/gnu/i386/fpemul/load_store.c index 50eec3e9ada0..2cfbba506147 100644 --- a/sys/gnu/i386/fpemul/load_store.c +++ b/sys/gnu/i386/fpemul/load_store.c @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: load_store.c,v 1.11 1997/08/31 22:22:19 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/math_emu.h b/sys/gnu/i386/fpemul/math_emu.h index f57a427f5ed1..302be7b655ac 100644 --- a/sys/gnu/i386/fpemul/math_emu.h +++ b/sys/gnu/i386/fpemul/math_emu.h @@ -1,6 +1,6 @@ /* * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_2xm1.c b/sys/gnu/i386/fpemul/poly_2xm1.c index c7902e5c50ee..e5a651574e4d 100644 --- a/sys/gnu/i386/fpemul/poly_2xm1.c +++ b/sys/gnu/i386/fpemul/poly_2xm1.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_2xm1.c,v 1.6 1997/02/22 09:29:14 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_atan.c b/sys/gnu/i386/fpemul/poly_atan.c index c7379bf89237..4f937fb82dc8 100644 --- a/sys/gnu/i386/fpemul/poly_atan.c +++ b/sys/gnu/i386/fpemul/poly_atan.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_atan.c,v 1.8 1997/02/22 09:29:15 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_div.s b/sys/gnu/i386/fpemul/poly_div.s index 318dc1682ecf..505588d38bd8 100644 --- a/sys/gnu/i386/fpemul/poly_div.s +++ b/sys/gnu/i386/fpemul/poly_div.s @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_div.s,v 1.6 1997/02/22 09:29:16 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_l2.c b/sys/gnu/i386/fpemul/poly_l2.c index a4684c9547f1..19a550165f92 100644 --- a/sys/gnu/i386/fpemul/poly_l2.c +++ b/sys/gnu/i386/fpemul/poly_l2.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_l2.c,v 1.8 1997/02/22 09:29:17 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_mul64.s b/sys/gnu/i386/fpemul/poly_mul64.s index e8089d0a5318..2c6f12e2a2f5 100644 --- a/sys/gnu/i386/fpemul/poly_mul64.s +++ b/sys/gnu/i386/fpemul/poly_mul64.s @@ -59,7 +59,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_mul64.s,v 1.6 1997/02/22 09:29:17 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_sin.c b/sys/gnu/i386/fpemul/poly_sin.c index 8bcbe93f807d..efc478f59d9c 100644 --- a/sys/gnu/i386/fpemul/poly_sin.c +++ b/sys/gnu/i386/fpemul/poly_sin.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_sin.c,v 1.8 1997/02/22 09:29:18 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/poly_tan.c b/sys/gnu/i386/fpemul/poly_tan.c index 541f2137d689..7dbbddfccd56 100644 --- a/sys/gnu/i386/fpemul/poly_tan.c +++ b/sys/gnu/i386/fpemul/poly_tan.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: poly_tan.c,v 1.8 1997/02/22 09:29:19 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/polynomial.s b/sys/gnu/i386/fpemul/polynomial.s index e989225cb12b..172bcc67dd6e 100644 --- a/sys/gnu/i386/fpemul/polynomial.s +++ b/sys/gnu/i386/fpemul/polynomial.s @@ -64,7 +64,7 @@ * W. Metzenthen June 1994. * * - * $Id: polynomial.s,v 1.6 1997/02/22 09:29:19 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_add_sub.c b/sys/gnu/i386/fpemul/reg_add_sub.c index b873fca5deb4..df08bcd97a1b 100644 --- a/sys/gnu/i386/fpemul/reg_add_sub.c +++ b/sys/gnu/i386/fpemul/reg_add_sub.c @@ -55,7 +55,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_add_sub.c,v 1.6 1997/02/22 09:29:20 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_compare.c b/sys/gnu/i386/fpemul/reg_compare.c index abc0d224ee02..a23a7a5b1503 100644 --- a/sys/gnu/i386/fpemul/reg_compare.c +++ b/sys/gnu/i386/fpemul/reg_compare.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_compare.c,v 1.9 1997/06/14 15:11:05 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_constant.h b/sys/gnu/i386/fpemul/reg_constant.h index 2c63cfa3c074..6c22cd7f48d0 100644 --- a/sys/gnu/i386/fpemul/reg_constant.h +++ b/sys/gnu/i386/fpemul/reg_constant.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_div.s b/sys/gnu/i386/fpemul/reg_div.s index adac83252a3a..fe73048da9a5 100644 --- a/sys/gnu/i386/fpemul/reg_div.s +++ b/sys/gnu/i386/fpemul/reg_div.s @@ -60,7 +60,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_div.s,v 1.7 1997/04/22 06:54:50 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_ld_str.c b/sys/gnu/i386/fpemul/reg_ld_str.c index bb569b894b3b..5a2bcb812695 100644 --- a/sys/gnu/i386/fpemul/reg_ld_str.c +++ b/sys/gnu/i386/fpemul/reg_ld_str.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_ld_str.c,v 1.11 1997/08/31 22:22:21 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_mul.c b/sys/gnu/i386/fpemul/reg_mul.c index e82da30b19f1..1b9cf2bce8c3 100644 --- a/sys/gnu/i386/fpemul/reg_mul.c +++ b/sys/gnu/i386/fpemul/reg_mul.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_mul.c,v 1.6 1997/02/22 09:29:23 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_norm.s b/sys/gnu/i386/fpemul/reg_norm.s index f1a24f3002f6..40d6a1d83ceb 100644 --- a/sys/gnu/i386/fpemul/reg_norm.s +++ b/sys/gnu/i386/fpemul/reg_norm.s @@ -61,7 +61,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_norm.s,v 1.6 1997/02/22 09:29:24 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_round.s b/sys/gnu/i386/fpemul/reg_round.s index de20c51995c4..a01422f31b6b 100644 --- a/sys/gnu/i386/fpemul/reg_round.s +++ b/sys/gnu/i386/fpemul/reg_round.s @@ -65,7 +65,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_round.s,v 1.7 1997/04/22 06:54:52 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_u_add.s b/sys/gnu/i386/fpemul/reg_u_add.s index 0e963a34950d..fb7080966fe5 100644 --- a/sys/gnu/i386/fpemul/reg_u_add.s +++ b/sys/gnu/i386/fpemul/reg_u_add.s @@ -62,7 +62,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_u_add.s,v 1.7 1997/04/22 06:54:52 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_u_div.s b/sys/gnu/i386/fpemul/reg_u_div.s index 9061c908ccc4..8a7c234b0a94 100644 --- a/sys/gnu/i386/fpemul/reg_u_div.s +++ b/sys/gnu/i386/fpemul/reg_u_div.s @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_u_div.s,v 1.7 1997/04/22 06:54:53 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_u_mul.s b/sys/gnu/i386/fpemul/reg_u_mul.s index 6133286b060e..4ce893cbd744 100644 --- a/sys/gnu/i386/fpemul/reg_u_mul.s +++ b/sys/gnu/i386/fpemul/reg_u_mul.s @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_u_mul.s,v 1.7 1997/04/22 06:54:54 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/reg_u_sub.s b/sys/gnu/i386/fpemul/reg_u_sub.s index df8baa49057b..e24c4afce717 100644 --- a/sys/gnu/i386/fpemul/reg_u_sub.s +++ b/sys/gnu/i386/fpemul/reg_u_sub.s @@ -61,7 +61,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_u_sub.s,v 1.7 1997/04/22 06:54:55 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/status_w.h b/sys/gnu/i386/fpemul/status_w.h index cf82a12974b3..4d15641598e2 100644 --- a/sys/gnu/i386/fpemul/status_w.h +++ b/sys/gnu/i386/fpemul/status_w.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/version.h b/sys/gnu/i386/fpemul/version.h index 98830e111bfe..38f6b93aebb5 100644 --- a/sys/gnu/i386/fpemul/version.h +++ b/sys/gnu/i386/fpemul/version.h @@ -54,7 +54,7 @@ * W. Metzenthen June 1994. * * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/wm_shrx.s b/sys/gnu/i386/fpemul/wm_shrx.s index b50199d064af..e64219fd9419 100644 --- a/sys/gnu/i386/fpemul/wm_shrx.s +++ b/sys/gnu/i386/fpemul/wm_shrx.s @@ -62,7 +62,7 @@ * W. Metzenthen June 1994. * * - * $Id: wm_shrx.s,v 1.6 1997/02/22 09:29:29 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/fpemul/wm_sqrt.s b/sys/gnu/i386/fpemul/wm_sqrt.s index f79329e0e174..dac6389796a0 100644 --- a/sys/gnu/i386/fpemul/wm_sqrt.s +++ b/sys/gnu/i386/fpemul/wm_sqrt.s @@ -60,7 +60,7 @@ * W. Metzenthen June 1994. * * - * $Id: wm_sqrt.s,v 1.7 1997/04/22 06:54:57 jdp Exp $ + * $FreeBSD$ * */ diff --git a/sys/gnu/i386/isa/dgb.c b/sys/gnu/i386/isa/dgb.c index 3e7e14e5f24c..60008abe5133 100644 --- a/sys/gnu/i386/isa/dgb.c +++ b/sys/gnu/i386/isa/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.50 1999/05/31 11:25:31 phk Exp $ + * dgb.c $FreeBSD$ * * Digiboard driver. * diff --git a/sys/gnu/i386/isa/dgm.c b/sys/gnu/i386/isa/dgm.c index b289be432d50..5deb61df9681 100644 --- a/sys/gnu/i386/isa/dgm.c +++ b/sys/gnu/i386/isa/dgm.c @@ -1,5 +1,5 @@ /*- - * $Id: dgm.c,v 1.15 1999/05/31 11:25:33 phk Exp $ + * $FreeBSD$ * * This driver and the associated header files support the ISA PC/Xem * Digiboards. Its evolutionary roots are described below. diff --git a/sys/gnu/i386/isa/dgmbios.h b/sys/gnu/i386/isa/dgmbios.h index 3193c9dafb2b..498bced5358a 100644 --- a/sys/gnu/i386/isa/dgmbios.h +++ b/sys/gnu/i386/isa/dgmbios.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * * This file is an ascii copy of the file sxbios.bin included in the * Digiboard PC/Xem driver for Linux. It is copyright 1992, DIGI diff --git a/sys/gnu/i386/isa/dgmfep.h b/sys/gnu/i386/isa/dgmfep.h index ed30e4a2fe6f..7921fa3b058f 100644 --- a/sys/gnu/i386/isa/dgmfep.h +++ b/sys/gnu/i386/isa/dgmfep.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * * This file is an ascii copy of the file sxbios.bin included in the * Digiboard PC/Xem driver for Linux. It is copyright 1992, DIGI diff --git a/sys/gnu/i386/isa/dgmreg.h b/sys/gnu/i386/isa/dgmreg.h index 95fddf846d24..2f052b530c11 100644 --- a/sys/gnu/i386/isa/dgmreg.h +++ b/sys/gnu/i386/isa/dgmreg.h @@ -1,5 +1,5 @@ /*- - * dgmreg.h $Id: dgreg.h,v 1.4.2.1 1996/12/19 14:57:36 davidg Exp $ + * dgmreg.h $FreeBSD$ * * Digiboard driver. * diff --git a/sys/gnu/i386/isa/dgreg.h b/sys/gnu/i386/isa/dgreg.h index 8b520fb687ed..73c29624294e 100644 --- a/sys/gnu/i386/isa/dgreg.h +++ b/sys/gnu/i386/isa/dgreg.h @@ -1,5 +1,5 @@ /*- - * dgreg.h $Id: dgreg.h,v 1.7 1997/02/22 09:29:43 peter Exp $ + * dgreg.h $FreeBSD$ * * Digiboard driver. * diff --git a/sys/i386/Makefile b/sys/i386/Makefile index 28362ba9dc77..c173c4fb1d71 100644 --- a/sys/i386/Makefile +++ b/sys/i386/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/05/31 22:40:49 steve Exp $ +# $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/11/93 # Makefile for i386 links, tags file diff --git a/sys/i386/apm/apm.c b/sys/i386/apm/apm.c index eb5ed62af635..a31a36c89cdb 100644 --- a/sys/i386/apm/apm.c +++ b/sys/i386/apm/apm.c @@ -15,7 +15,7 @@ * * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm.c,v 1.102 1999/08/22 19:51:33 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c index eb5ed62af635..a31a36c89cdb 100644 --- a/sys/i386/bios/apm.c +++ b/sys/i386/bios/apm.c @@ -15,7 +15,7 @@ * * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm.c,v 1.102 1999/08/22 19:51:33 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/boot/Makefile b/sys/i386/boot/Makefile index dc8ad32a5f6a..3b0adfcc13a5 100644 --- a/sys/i386/boot/Makefile +++ b/sys/i386/boot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.29 1997/07/10 21:58:43 joerg Exp $ +# $FreeBSD$ SUBDIR= cdboot dosboot kzipboot netboot rawboot diff --git a/sys/i386/boot/Makefile.inc b/sys/i386/boot/Makefile.inc index 520458a2126b..5050c0351094 100644 --- a/sys/i386/boot/Makefile.inc +++ b/sys/i386/boot/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.3 1998/12/30 10:05:56 bde Exp $ +# $FreeBSD$ BINDIR?= /usr/mdec CFLAGS+= -aout diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index e4feaf98de98..3139674e074d 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.67 1998/11/21 21:07:17 ache Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/i386/boot/biosboot/README.386BSD b/sys/i386/boot/biosboot/README.386BSD index 345c95383628..3d7c09da5968 100644 --- a/sys/i386/boot/biosboot/README.386BSD +++ b/sys/i386/boot/biosboot/README.386BSD @@ -169,4 +169,4 @@ Before you do this ensure you have a booting floppy with correct disktab and bootblock files on it so that if it doesn't work, you can re-disklabel from the floppy. -$Id: README.386BSD,v 1.9 1997/02/22 09:30:02 peter Exp $ +$FreeBSD$ diff --git a/sys/i386/boot/biosboot/README.MACH b/sys/i386/boot/biosboot/README.MACH index 5f8b79d7b9d9..73d090a404bd 100644 --- a/sys/i386/boot/biosboot/README.MACH +++ b/sys/i386/boot/biosboot/README.MACH @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:33:55 rpd - * $Id: README.MACH,v 1.5 1997/02/22 09:30:03 peter Exp $ + * $FreeBSD$ */ ********NOTE: This is not all relevant to the 386BSD version********** diff --git a/sys/i386/boot/biosboot/README.serial b/sys/i386/boot/biosboot/README.serial index 732e4787e35c..7edcdeec060c 100644 --- a/sys/i386/boot/biosboot/README.serial +++ b/sys/i386/boot/biosboot/README.serial @@ -193,4 +193,4 @@ CAVEATS: from the new kernel. -$Id: README.serial,v 1.9 1997/06/16 06:32:51 charnier Exp $ +$FreeBSD$ diff --git a/sys/i386/boot/biosboot/asm.S b/sys/i386/boot/biosboot/asm.S index da01acab1091..f14c7f55104c 100644 --- a/sys/i386/boot/biosboot/asm.S +++ b/sys/i386/boot/biosboot/asm.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:13 rpd - * $Id: asm.S,v 1.11 1997/02/22 09:30:04 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/boot/biosboot/asm.h b/sys/i386/boot/biosboot/asm.h index b90bbcebf158..6f4bcc39e52d 100644 --- a/sys/i386/boot/biosboot/asm.h +++ b/sys/i386/boot/biosboot/asm.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.7 92/02/29 15:33:41 rpd - * $Id$ + * $FreeBSD$ */ #define S_ARG0 4(%esp) diff --git a/sys/i386/boot/biosboot/bios.S b/sys/i386/boot/biosboot/bios.S index bc80b2f3a946..30fc76432427 100644 --- a/sys/i386/boot/biosboot/bios.S +++ b/sys/i386/boot/biosboot/bios.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: bios.S,v 1.13 1998/08/04 00:39:45 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/biosboot/boot.c b/sys/i386/boot/biosboot/boot.c index 394f86e82b92..a83c9fdd5c15 100644 --- a/sys/i386/boot/biosboot/boot.c +++ b/sys/i386/boot/biosboot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.73 1998/10/10 14:02:06 bde Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/boot/biosboot/boot.h b/sys/i386/boot/biosboot/boot.h index e107b471f35e..d5c413201754 100644 --- a/sys/i386/boot/biosboot/boot.h +++ b/sys/i386/boot/biosboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id: boot.h,v 1.23 1997/12/04 21:52:42 joerg Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/boot/biosboot/boot2.S b/sys/i386/boot/biosboot/boot2.S index e199b5f6ed69..1b25853b4e79 100644 --- a/sys/i386/boot/biosboot/boot2.S +++ b/sys/i386/boot/biosboot/boot2.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:26 rpd - * $Id$ + * $FreeBSD$ */ #include "asm.h" diff --git a/sys/i386/boot/biosboot/disk.c b/sys/i386/boot/biosboot/disk.c index 8cd825698b1b..62fdde42681a 100644 --- a/sys/i386/boot/biosboot/disk.c +++ b/sys/i386/boot/biosboot/disk.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:49 rpd - * $Id: disk.c,v 1.25 1997/02/22 09:30:09 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/biosboot/io.c b/sys/i386/boot/biosboot/io.c index b9c40588c46b..f70516002c15 100644 --- a/sys/i386/boot/biosboot/io.c +++ b/sys/i386/boot/biosboot/io.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:57 rpd - * $Id: io.c,v 1.24 1997/07/12 10:23:19 joerg Exp $ + * $FreeBSD$ */ #include "boot.h" diff --git a/sys/i386/boot/biosboot/probe_keyboard.c b/sys/i386/boot/biosboot/probe_keyboard.c index 7856d586a58f..41d7e9769a3d 100644 --- a/sys/i386/boot/biosboot/probe_keyboard.c +++ b/sys/i386/boot/biosboot/probe_keyboard.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: probe_keyboard.c,v 1.13 1997/06/09 05:10:55 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/boot/biosboot/serial.S b/sys/i386/boot/biosboot/serial.S index 11d63f08272d..8473d005300b 100644 --- a/sys/i386/boot/biosboot/serial.S +++ b/sys/i386/boot/biosboot/serial.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: serial.S,v 1.11 1998/02/01 22:39:24 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/biosboot/start.S b/sys/i386/boot/biosboot/start.S index 3d27c5fe5f29..90fac5589d58 100644 --- a/sys/i386/boot/biosboot/start.S +++ b/sys/i386/boot/biosboot/start.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:29 rpd - * $Id: start.S,v 1.11 1998/07/02 15:36:35 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/biosboot/sys.c b/sys/i386/boot/biosboot/sys.c index 4726f1ec1a1a..289a732cc3ca 100644 --- a/sys/i386/boot/biosboot/sys.c +++ b/sys/i386/boot/biosboot/sys.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:34 rpd - * $Id: sys.c,v 1.20 1997/05/27 16:26:39 bde Exp $ + * $FreeBSD$ */ #include "boot.h" diff --git a/sys/i386/boot/biosboot/table.c b/sys/i386/boot/biosboot/table.c index 83ffd1442b23..ac59b24311e3 100644 --- a/sys/i386/boot/biosboot/table.c +++ b/sys/i386/boot/biosboot/table.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:43 rpd - * $Id: table.c,v 1.18 1999/05/25 09:32:00 brian Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/cdboot/Makefile b/sys/i386/boot/cdboot/Makefile index b59e851fd870..1278a287cdce 100644 --- a/sys/i386/boot/cdboot/Makefile +++ b/sys/i386/boot/cdboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1998/03/12 12:26:47 bde Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/i386/boot/cdboot/asm.S b/sys/i386/boot/cdboot/asm.S index e68981746626..2190a35b5f2b 100644 --- a/sys/i386/boot/cdboot/asm.S +++ b/sys/i386/boot/cdboot/asm.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:13 rpd - * $Id: asm.S,v 1.9 1996/03/08 07:27:52 bde Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/boot/cdboot/boot.c b/sys/i386/boot/cdboot/boot.c index b89813f66685..bee6b87d06f7 100644 --- a/sys/i386/boot/cdboot/boot.c +++ b/sys/i386/boot/cdboot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.1 1997/07/11 05:52:37 joerg Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/boot/cdboot/boot.h b/sys/i386/boot/cdboot/boot.h index 4604c0877937..c0973b33eef3 100644 --- a/sys/i386/boot/cdboot/boot.h +++ b/sys/i386/boot/cdboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id: boot.h,v 1.1 1997/07/11 05:52:38 joerg Exp $ + * $FreeBSD$ */ /* * Extensions for El Torito CD-ROM booting: diff --git a/sys/i386/boot/cdboot/cdrom.c b/sys/i386/boot/cdboot/cdrom.c index d9555852e7fc..5668abcf0e57 100644 --- a/sys/i386/boot/cdboot/cdrom.c +++ b/sys/i386/boot/cdboot/cdrom.c @@ -27,7 +27,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: cdrom.c,v 1.2 1997/12/02 21:13:59 joerg Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/boot/cdboot/malloc.c b/sys/i386/boot/cdboot/malloc.c index 2b8486d8aae1..a68e776e456d 100644 --- a/sys/i386/boot/cdboot/malloc.c +++ b/sys/i386/boot/cdboot/malloc.c @@ -27,7 +27,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/dosboot/Makefile b/sys/i386/boot/dosboot/Makefile index 26c0d0bf04aa..88a25c73a3fc 100644 --- a/sys/i386/boot/dosboot/Makefile +++ b/sys/i386/boot/dosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/02/22 09:30:28 peter Exp $ +# $FreeBSD$ # MPROG= fbsdboot.exe diff --git a/sys/i386/boot/dosboot/ansi.h b/sys/i386/boot/dosboot/ansi.h index 3a112073c675..23f6d9ba92aa 100644 --- a/sys/i386/boot/dosboot/ansi.h +++ b/sys/i386/boot/dosboot/ansi.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ansi.h 7.1 (Berkeley) 3/9/91 - * $Id$ + * $FreeBSD$ */ #ifndef _ANSI_H_ diff --git a/sys/i386/boot/dosboot/boot.c b/sys/i386/boot/dosboot/boot.c index 635781e81827..0eb6d19203b8 100644 --- a/sys/i386/boot/dosboot/boot.c +++ b/sys/i386/boot/dosboot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id$ + * $FreeBSD$ */ diff --git a/sys/i386/boot/dosboot/boot.h b/sys/i386/boot/dosboot/boot.h index c1bd09700662..f72fa1dc7c12 100644 --- a/sys/i386/boot/dosboot/boot.h +++ b/sys/i386/boot/dosboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id$ + * $FreeBSD$ */ #include "types.h" diff --git a/sys/i386/boot/dosboot/bootinfo.h b/sys/i386/boot/dosboot/bootinfo.h index d1a6fb68412e..7f5649174233 100644 --- a/sys/i386/boot/dosboot/bootinfo.h +++ b/sys/i386/boot/dosboot/bootinfo.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_BOOTINFO_H_ diff --git a/sys/i386/boot/dosboot/cdefs.h b/sys/i386/boot/dosboot/cdefs.h index 1b2205fbd5f4..07f727d8e7e3 100644 --- a/sys/i386/boot/dosboot/cdefs.h +++ b/sys/i386/boot/dosboot/cdefs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)cdefs.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _CDEFS_H_ diff --git a/sys/i386/boot/dosboot/dinode.h b/sys/i386/boot/dosboot/dinode.h index 6c9fbd42fecc..99a8849b190d 100644 --- a/sys/i386/boot/dosboot/dinode.h +++ b/sys/i386/boot/dosboot/dinode.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)dinode.h 7.10 (Berkeley) 5/8/91 - * $Id$ + * $FreeBSD$ */ #ifndef _UFS_DINODE_H_ diff --git a/sys/i386/boot/dosboot/dir.h b/sys/i386/boot/dosboot/dir.h index 5d9cd1d3613c..1b72f4749c03 100644 --- a/sys/i386/boot/dosboot/dir.h +++ b/sys/i386/boot/dosboot/dir.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)dir.h 7.3 (Berkeley) 2/5/91 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/boot/dosboot/disk.c b/sys/i386/boot/dosboot/disk.c index f990a33a3fb3..3f93ab82a858 100644 --- a/sys/i386/boot/dosboot/disk.c +++ b/sys/i386/boot/dosboot/disk.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:49 rpd - * $Id$ + * $FreeBSD$ */ #include #include diff --git a/sys/i386/boot/dosboot/disklabe.h b/sys/i386/boot/dosboot/disklabe.h index 81a7c06af6d6..d3983d3c6787 100644 --- a/sys/i386/boot/dosboot/disklabe.h +++ b/sys/i386/boot/dosboot/disklabe.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.1 (Berkeley) 6/2/93 - * $Id: disklabe.h,v 1.4 1997/02/22 09:30:46 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_DISKLABEL_H_ diff --git a/sys/i386/boot/dosboot/dkbad.h b/sys/i386/boot/dosboot/dkbad.h index f461d229aab2..1aea5ded055c 100644 --- a/sys/i386/boot/dosboot/dkbad.h +++ b/sys/i386/boot/dosboot/dkbad.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dkbad.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_DKBAD_H_ diff --git a/sys/i386/boot/dosboot/endian.h b/sys/i386/boot/dosboot/endian.h index 1d52a1b419b3..84d04b25d008 100644 --- a/sys/i386/boot/dosboot/endian.h +++ b/sys/i386/boot/dosboot/endian.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)endian.h 7.8 (Berkeley) 4/3/91 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_ENDIAN_H_ diff --git a/sys/i386/boot/dosboot/exec.h b/sys/i386/boot/dosboot/exec.h index 5033235ae74f..d64f63b77489 100644 --- a/sys/i386/boot/dosboot/exec.h +++ b/sys/i386/boot/dosboot/exec.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.3 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_EXEC_H_ diff --git a/sys/i386/boot/dosboot/fs.h b/sys/i386/boot/dosboot/fs.h index f2c38b4269d5..f4c397d3cac6 100644 --- a/sys/i386/boot/dosboot/fs.h +++ b/sys/i386/boot/dosboot/fs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fs.h 7.12 (Berkeley) 5/8/91 - * $Id$ + * $FreeBSD$ */ #ifndef _UFS_FS_H_ diff --git a/sys/i386/boot/dosboot/imgact.h b/sys/i386/boot/dosboot/imgact.h index f9cc403977e6..f3ec5571819c 100644 --- a/sys/i386/boot/dosboot/imgact.h +++ b/sys/i386/boot/dosboot/imgact.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)exec.h 8.1 (Berkeley) 6/11/93 - * $Id$ + * $FreeBSD$ */ #ifndef _IMGACT_AOUT_H_ diff --git a/sys/i386/boot/dosboot/inode.h b/sys/i386/boot/dosboot/inode.h index 0a692e3cfbeb..26ae12090e08 100644 --- a/sys/i386/boot/dosboot/inode.h +++ b/sys/i386/boot/dosboot/inode.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)inode.h 7.17 (Berkeley) 5/8/91 - * $Id: inode.h,v 1.4 1997/02/22 09:30:56 peter Exp $ + * $FreeBSD$ */ #ifndef _UFS_INODE_H_ diff --git a/sys/i386/boot/dosboot/mexec.h b/sys/i386/boot/dosboot/mexec.h index e978510b9b76..b045a235ece3 100644 --- a/sys/i386/boot/dosboot/mexec.h +++ b/sys/i386/boot/dosboot/mexec.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.1 (Berkeley) 6/11/93 - * $Id$ + * $FreeBSD$ */ #ifndef _EXEC_H_ diff --git a/sys/i386/boot/dosboot/param.h b/sys/i386/boot/dosboot/param.h index 61a82419b108..394c1f797d7e 100644 --- a/sys/i386/boot/dosboot/param.h +++ b/sys/i386/boot/dosboot/param.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)param.h 5.8 (Berkeley) 6/28/91 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_PARAM_H_ diff --git a/sys/i386/boot/dosboot/quota.h b/sys/i386/boot/dosboot/quota.h index 425066e91d88..5ad06ce018bb 100644 --- a/sys/i386/boot/dosboot/quota.h +++ b/sys/i386/boot/dosboot/quota.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)quota.h 7.9 (Berkeley) 2/22/91 - * $Id$ + * $FreeBSD$ */ #ifndef _QUOTA_ diff --git a/sys/i386/boot/dosboot/reboot.h b/sys/i386/boot/dosboot/reboot.h index f0dcfd244a79..65453b05e51f 100644 --- a/sys/i386/boot/dosboot/reboot.h +++ b/sys/i386/boot/dosboot/reboot.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)reboot.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_REBOOT_H_ diff --git a/sys/i386/boot/dosboot/sys.c b/sys/i386/boot/dosboot/sys.c index f9d2f9be9a08..04a25af8d907 100644 --- a/sys/i386/boot/dosboot/sys.c +++ b/sys/i386/boot/dosboot/sys.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:34 rpd - * $Id$ + * $FreeBSD$ */ #include #include diff --git a/sys/i386/boot/dosboot/syslimit.h b/sys/i386/boot/dosboot/syslimit.h index 3d691b7cbc08..0d914230c3b6 100644 --- a/sys/i386/boot/dosboot/syslimit.h +++ b/sys/i386/boot/dosboot/syslimit.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)syslimits.h 7.4 (Berkeley) 2/4/91 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_SYSLIMITS_H_ diff --git a/sys/i386/boot/dosboot/sysparam.h b/sys/i386/boot/dosboot/sysparam.h index a9a5f35aabb9..4f93f2cc0266 100644 --- a/sys/i386/boot/dosboot/sysparam.h +++ b/sys/i386/boot/dosboot/sysparam.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)param.h 8.2 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_PARAM_H_ diff --git a/sys/i386/boot/dosboot/types.h b/sys/i386/boot/dosboot/types.h index ee013c053202..85b64942897a 100644 --- a/sys/i386/boot/dosboot/types.h +++ b/sys/i386/boot/dosboot/types.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)types.h 8.4 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_TYPES_H_ diff --git a/sys/i386/boot/kzipboot/Makefile b/sys/i386/boot/kzipboot/Makefile index c1dc06009dad..1c37ac40cae6 100644 --- a/sys/i386/boot/kzipboot/Makefile +++ b/sys/i386/boot/kzipboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1998/05/27 08:06:33 sos Exp $ +# $FreeBSD$ PROG= kztail.o kzhead.o BINMODE = 444 # target is a relocatable object diff --git a/sys/i386/boot/netboot/3c509.c b/sys/i386/boot/netboot/3c509.c index adf721c3ec19..accc948c6b4f 100644 --- a/sys/i386/boot/netboot/3c509.c +++ b/sys/i386/boot/netboot/3c509.c @@ -18,7 +18,7 @@ Author: Martin Renters. 3c509 support added by Serge Babkin (babkin@hq.icb.chel.su) -$Id$ +$FreeBSD$ ***************************************************************************/ diff --git a/sys/i386/boot/netboot/Makefile b/sys/i386/boot/netboot/Makefile index 2d50c65a58e7..84d3d97103e1 100644 --- a/sys/i386/boot/netboot/Makefile +++ b/sys/i386/boot/netboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.21 1998/11/28 08:03:24 joerg Exp $ +# $FreeBSD$ # # Makefile for NETBOOT # diff --git a/sys/i386/boot/netboot/netboot.8 b/sys/i386/boot/netboot/netboot.8 index 094d47fda4ec..2717ec53cc0d 100644 --- a/sys/i386/boot/netboot/netboot.8 +++ b/sys/i386/boot/netboot/netboot.8 @@ -1,4 +1,4 @@ -.\" $Id: netboot.8,v 1.3 1997/05/31 18:29:58 tegge Exp $ +.\" $FreeBSD$ .Dd May 15, 1997 .Dt NETBOOT 8 .\".Os BSD 4 diff --git a/sys/i386/boot/rawboot/Makefile b/sys/i386/boot/rawboot/Makefile index 061b6959ecf7..474788b2c88c 100644 --- a/sys/i386/boot/rawboot/Makefile +++ b/sys/i386/boot/rawboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1998/03/12 12:26:49 bde Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC index f889546e112f..2011cfea73e6 100644 --- a/sys/i386/conf/GENERIC +++ b/sys/i386/conf/GENERIC @@ -15,7 +15,7 @@ # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC,v 1.182 1999/08/15 09:54:56 phk Exp $ +# $FreeBSD$ machine i386 cpu I386_CPU diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT index 80ecf1a81a2b..6c0f0cf935d3 100644 --- a/sys/i386/conf/LINT +++ b/sys/i386/conf/LINT @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.629 1999/08/21 17:40:37 wpaul Exp $ +# $FreeBSD$ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from diff --git a/sys/i386/conf/Makefile.i386 b/sys/i386/conf/Makefile.i386 index 66873d0cc1e9..0d82e7971baa 100644 --- a/sys/i386/conf/Makefile.i386 +++ b/sys/i386/conf/Makefile.i386 @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.157 1999/07/02 04:00:01 jkh Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index 80ecf1a81a2b..6c0f0cf935d3 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.629 1999/08/21 17:40:37 wpaul Exp $ +# $FreeBSD$ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from diff --git a/sys/i386/conf/PCCARD b/sys/i386/conf/PCCARD index 3f57f717949d..7dfbfab75635 100644 --- a/sys/i386/conf/PCCARD +++ b/sys/i386/conf/PCCARD @@ -12,7 +12,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: PCCARD,v 1.16 1999/08/15 09:38:20 phk Exp $ +# $FreeBSD$ machine i386 cpu I386_CPU diff --git a/sys/i386/conf/devices.i386 b/sys/i386/conf/devices.i386 index ed921de75a0e..0e3045546c93 100644 --- a/sys/i386/conf/devices.i386 +++ b/sys/i386/conf/devices.i386 @@ -1,6 +1,6 @@ # This file tells what major numbers the various possible swap devices have. # -# $Id: devices.i386,v 1.15 1998/12/27 13:55:48 sos Exp $ +# $FreeBSD$ # wd 0 wfd 1 diff --git a/sys/i386/conf/files.i386 b/sys/i386/conf/files.i386 index 72349659ad1d..e6a940c18e11 100644 --- a/sys/i386/conf/files.i386 +++ b/sys/i386/conf/files.i386 @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.259 1999/08/18 04:08:14 alc Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/i386/conf/majors.i386 b/sys/i386/conf/majors.i386 index 60feb64f5cf1..e4fda55c344f 100644 --- a/sys/i386/conf/majors.i386 +++ b/sys/i386/conf/majors.i386 @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.81 1999/08/04 19:55:37 jkh Exp $ +$FreeBSD$ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. diff --git a/sys/i386/conf/options.i386 b/sys/i386/conf/options.i386 index bd3ac0e5ddbe..f0adfd96ab8f 100644 --- a/sys/i386/conf/options.i386 +++ b/sys/i386/conf/options.i386 @@ -1,4 +1,4 @@ -# $Id: options.i386,v 1.119 1999/08/06 14:01:55 hm Exp $ +# $FreeBSD$ DISABLE_PSE IDE_DELAY diff --git a/sys/i386/eisa/3c5x9.c b/sys/i386/eisa/3c5x9.c index b6ccff13af41..663409d4b75a 100644 --- a/sys/i386/eisa/3c5x9.c +++ b/sys/i386/eisa/3c5x9.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 3c5x9.c,v 1.12 1999/05/08 21:59:15 dfr Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/adv_eisa.c b/sys/i386/eisa/adv_eisa.c index 4b475d3d1193..ad9604e69626 100644 --- a/sys/i386/eisa/adv_eisa.c +++ b/sys/i386/eisa/adv_eisa.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_eisa.c,v 1.5 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/ahb.c b/sys/i386/eisa/ahb.c index a1dc84ac5e7a..67eead4dd7e2 100644 --- a/sys/i386/eisa/ahb.c +++ b/sys/i386/eisa/ahb.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahb.c,v 1.13 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/ahbreg.h b/sys/i386/eisa/ahbreg.h index 1bed89ebff4a..c72f068aa3b9 100644 --- a/sys/i386/eisa/ahbreg.h +++ b/sys/i386/eisa/ahbreg.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* Resource Constatns */ diff --git a/sys/i386/eisa/ahc_eisa.c b/sys/i386/eisa/ahc_eisa.c index 39450187d3a6..e98be7d3a3d5 100644 --- a/sys/i386/eisa/ahc_eisa.c +++ b/sys/i386/eisa/ahc_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_eisa.c,v 1.11 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/bt_eisa.c b/sys/i386/eisa/bt_eisa.c index d9cb5840438c..400b42b046f7 100644 --- a/sys/i386/eisa/bt_eisa.c +++ b/sys/i386/eisa/bt_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_eisa.c,v 1.8 1999/08/01 22:57:08 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/dpt_eisa.c b/sys/i386/eisa/dpt_eisa.c index caeab91f3028..8518214db90b 100644 --- a/sys/i386/eisa/dpt_eisa.c +++ b/sys/i386/eisa/dpt_eisa.c @@ -33,7 +33,7 @@ */ /* - * $Id: dpt_eisa.c,v 1.7 1999/08/01 22:57:09 mdodd Exp $ + * $FreeBSD$ */ #include "eisa.h" diff --git a/sys/i386/eisa/dpt_eisa.h b/sys/i386/eisa/dpt_eisa.h index 0731911d36cb..683ff655953c 100644 --- a/sys/i386/eisa/dpt_eisa.h +++ b/sys/i386/eisa/dpt_eisa.h @@ -32,7 +32,7 @@ */ /* - * $Id: dpt_eisa.h,v 1.2 1998/09/15 08:33:35 gibbs Exp $ + * $FreeBSD$ */ #define DPT_EISA_SLOT_OFFSET 0xc00 diff --git a/sys/i386/eisa/eisaconf.c b/sys/i386/eisa/eisaconf.c index 1aeb1df1af97..869ebbe6cabc 100644 --- a/sys/i386/eisa/eisaconf.c +++ b/sys/i386/eisa/eisaconf.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.c,v 1.50 1999/08/01 22:57:09 mdodd Exp $ + * $FreeBSD$ */ #include "opt_eisa.h" diff --git a/sys/i386/eisa/eisaconf.h b/sys/i386/eisa/eisaconf.h index 6174b6b36926..8330bb4a7353 100644 --- a/sys/i386/eisa/eisaconf.h +++ b/sys/i386/eisa/eisaconf.h @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.h,v 1.18 1999/04/18 15:50:33 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_EISA_EISACONF_H_ diff --git a/sys/i386/eisa/if_fea.c b/sys/i386/eisa/if_fea.c index c98eb4bf96af..21c90d4a7dd6 100644 --- a/sys/i386/eisa/if_fea.c +++ b/sys/i386/eisa/if_fea.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fea.c,v 1.16 1999/07/31 00:43:48 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/apic_vector.s b/sys/i386/i386/apic_vector.s index 6a7bcf059a12..f484971eab2b 100644 --- a/sys/i386/i386/apic_vector.s +++ b/sys/i386/i386/apic_vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: apic_vector.s,v 1.43 1999/07/20 06:52:35 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/i386/atomic.c b/sys/i386/i386/atomic.c index d7a5c495d6df..c19ba9e027b2 100644 --- a/sys/i386/i386/atomic.c +++ b/sys/i386/i386/atomic.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* This file creates publically callable functions to perform various diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index 4c5dbd34bb5b..f678609719d0 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.136 1999/08/22 23:49:00 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/bios.c b/sys/i386/i386/bios.c index baf20187da6c..5fc0a4296738 100644 --- a/sys/i386/i386/bios.c +++ b/sys/i386/i386/bios.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bios.c,v 1.21 1999/08/25 06:56:36 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/bioscall.s b/sys/i386/i386/bioscall.s index 3d95a6278dd2..8ecee477fa5a 100644 --- a/sys/i386/i386/bioscall.s +++ b/sys/i386/i386/bioscall.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bioscall.s,v 1.4 1999/08/25 06:44:32 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/busdma_machdep.c b/sys/i386/i386/busdma_machdep.c index bebec68ceca1..c16333ced110 100644 --- a/sys/i386/i386/busdma_machdep.c +++ b/sys/i386/i386/busdma_machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: busdma_machdep.c,v 1.13 1999/07/02 05:12:11 mjacob Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/db_disasm.c b/sys/i386/i386/db_disasm.c index b3b30b13f3f5..16e8106d5e73 100644 --- a/sys/i386/i386/db_disasm.c +++ b/sys/i386/i386/db_disasm.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_disasm.c,v 1.21 1998/07/08 10:53:56 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/db_interface.c b/sys/i386/i386/db_interface.c index 0ad6dfbfd56a..cb7f228d671a 100644 --- a/sys/i386/i386/db_interface.c +++ b/sys/i386/i386/db_interface.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_interface.c,v 1.44 1999/04/28 01:03:17 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/db_trace.c b/sys/i386/i386/db_trace.c index 6a361a0052f9..074b4e639bcb 100644 --- a/sys/i386/i386/db_trace.c +++ b/sys/i386/i386/db_trace.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_trace.c,v 1.33 1999/01/28 01:59:50 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/elf_machdep.c b/sys/i386/i386/elf_machdep.c index 2814f066e0f0..51a2e77541f6 100644 --- a/sys/i386/i386/elf_machdep.c +++ b/sys/i386/i386/elf_machdep.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elf_machdep.c,v 1.4 1998/12/07 21:58:18 archie Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/exception.s b/sys/i386/i386/exception.s index dce98e87e5b6..f19622475bb8 100644 --- a/sys/i386/i386/exception.s +++ b/sys/i386/i386/exception.s @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: exception.s,v 1.62 1999/06/27 21:31:43 alc Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/i386/i386/genassym.c b/sys/i386/i386/genassym.c index 9f17b0c7d616..2df518268216 100644 --- a/sys/i386/i386/genassym.c +++ b/sys/i386/i386/genassym.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91 - * $Id: genassym.c,v 1.75 1999/07/29 08:33:00 peter Exp $ + * $FreeBSD$ */ #include "opt_user_ldt.h" diff --git a/sys/i386/i386/globals.s b/sys/i386/i386/globals.s index 574220aade84..8a46b522cc7c 100644 --- a/sys/i386/i386/globals.s +++ b/sys/i386/i386/globals.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globals.s,v 1.11 1999/05/12 21:38:41 luoqi Exp $ + * $FreeBSD$ */ #include "opt_user_ldt.h" diff --git a/sys/i386/i386/i686_mem.c b/sys/i386/i386/i686_mem.c index d971aa95f02e..33342b92227c 100644 --- a/sys/i386/i386/i686_mem.c +++ b/sys/i386/i386/i686_mem.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i686_mem.c,v 1.4 1999/07/20 06:58:51 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c index ba53f4eab87b..0f1e86d67737 100644 --- a/sys/i386/i386/identcpu.c +++ b/sys/i386/i386/identcpu.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp - * $Id: identcpu.c,v 1.71 1999/07/06 13:23:56 peter Exp $ + * $FreeBSD$ */ #include "opt_cpu.h" diff --git a/sys/i386/i386/in_cksum.c b/sys/i386/i386/in_cksum.c index e9244fbe2066..481a390393ec 100644 --- a/sys/i386/i386/in_cksum.c +++ b/sys/i386/i386/in_cksum.c @@ -32,7 +32,7 @@ * * from tahoe: in_cksum.c 1.2 86/01/05 * from: @(#)in_cksum.c 1.3 (Berkeley) 1/19/91 - * $Id: in_cksum.c,v 1.14 1999/01/28 01:59:50 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/initcpu.c b/sys/i386/i386/initcpu.c index a58caadce1b4..a56bb36d91a5 100644 --- a/sys/i386/i386/initcpu.c +++ b/sys/i386/i386/initcpu.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: initcpu.c,v 1.17 1999/01/16 13:41:33 kato Exp $ + * $FreeBSD$ */ #include "opt_cpu.h" diff --git a/sys/i386/i386/k6_mem.c b/sys/i386/i386/k6_mem.c index b28691bacde9..1045b28c9f77 100644 --- a/sys/i386/i386/k6_mem.c +++ b/sys/i386/i386/k6_mem.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: k6_mem.c,v 1.1 1999/06/18 19:56:02 green Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/i386/legacy.c b/sys/i386/i386/legacy.c index 0c28185a347b..22e98eda7106 100644 --- a/sys/i386/i386/legacy.c +++ b/sys/i386/i386/legacy.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: nexus.c,v 1.15 1999/08/23 19:23:33 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/locore.s b/sys/i386/i386/locore.s index 95b55613bf47..f2627266353c 100644 --- a/sys/i386/i386/locore.s +++ b/sys/i386/i386/locore.s @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.124 1999/06/18 14:32:13 bde Exp $ + * $FreeBSD$ * * originally from: locore.s, by William F. Jolitz * diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index dfde63760a87..a3c33bfc293a 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.358 1999/08/09 10:34:43 phk Exp $ + * $FreeBSD$ */ #include "apm.h" diff --git a/sys/i386/i386/math_emu.h b/sys/i386/i386/math_emu.h index b996e5d78be8..6e189b4a5594 100644 --- a/sys/i386/i386/math_emu.h +++ b/sys/i386/i386/math_emu.h @@ -3,7 +3,7 @@ * * (C) 1991 Linus Torvalds * - * $Id: math_emu.h,v 1.5 1997/02/22 09:32:27 peter Exp $ + * $FreeBSD$ */ #ifndef _LINUX_MATH_EMU_H #define _LINUX_MATH_EMU_H diff --git a/sys/i386/i386/math_emulate.c b/sys/i386/i386/math_emulate.c index 7f93e4b6f6f9..ec7e216d0b40 100644 --- a/sys/i386/i386/math_emulate.c +++ b/sys/i386/i386/math_emulate.c @@ -6,7 +6,7 @@ * [expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj] * * from: 386BSD 0.1 - * $Id: math_emulate.c,v 1.33 1999/01/28 01:59:50 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/mem.c b/sys/i386/i386/mem.c index c835a6ee2cce..ab31e7095ea3 100644 --- a/sys/i386/i386/mem.c +++ b/sys/i386/i386/mem.c @@ -38,7 +38,7 @@ * * from: Utah $Hdr: mem.c 1.13 89/10/08$ * from: @(#)mem.c 7.2 (Berkeley) 5/9/91 - * $Id: mem.c,v 1.64 1999/08/23 20:58:38 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/mp_machdep.c b/sys/i386/i386/mp_machdep.c index 969cd0892495..283ed1701a3c 100644 --- a/sys/i386/i386/mp_machdep.c +++ b/sys/i386/i386/mp_machdep.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/i386/mpapic.c b/sys/i386/i386/mpapic.c index 8ae685485f43..ef591aa7b51d 100644 --- a/sys/i386/i386/mpapic.c +++ b/sys/i386/i386/mpapic.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mpapic.c,v 1.32 1998/09/06 22:41:40 tegge Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/i386/mpboot.s b/sys/i386/i386/mpboot.s index 962bafcc7792..d21354e3c793 100644 --- a/sys/i386/i386/mpboot.s +++ b/sys/i386/i386/mpboot.s @@ -31,7 +31,7 @@ * mpboot.s: FreeBSD machine support for the Intel MP Spec * multiprocessor systems. * - * $Id: mpboot.s,v 1.10 1999/04/28 01:03:22 luoqi Exp $ + * $FreeBSD$ */ #include /* miscellaneous asm macros */ diff --git a/sys/i386/i386/mplock.s b/sys/i386/i386/mplock.s index fe8281dc50f6..bb1a4bf2a86d 100644 --- a/sys/i386/i386/mplock.s +++ b/sys/i386/i386/mplock.s @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: mplock.s,v 1.24 1998/05/17 23:08:04 tegge Exp $ + * $FreeBSD$ * * Functions for locking between CPUs in a SMP system. * diff --git a/sys/i386/i386/mptable.c b/sys/i386/i386/mptable.c index 969cd0892495..283ed1701a3c 100644 --- a/sys/i386/i386/mptable.c +++ b/sys/i386/i386/mptable.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/i386/nexus.c b/sys/i386/i386/nexus.c index 0c28185a347b..22e98eda7106 100644 --- a/sys/i386/i386/nexus.c +++ b/sys/i386/i386/nexus.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: nexus.c,v 1.15 1999/08/23 19:23:33 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/perfmon.c b/sys/i386/i386/perfmon.c index b8bd5958c13d..60775d1329d7 100644 --- a/sys/i386/i386/perfmon.c +++ b/sys/i386/i386/perfmon.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: perfmon.c,v 1.18 1999/05/11 01:54:52 alc Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index 791060a03f8c..6129ed86f48f 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 - * $Id: pmap.c,v 1.245 1999/08/10 04:10:57 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/procfs_machdep.c b/sys/i386/i386/procfs_machdep.c index b0f8e3cda6e2..6d48081e4d01 100644 --- a/sys/i386/i386/procfs_machdep.c +++ b/sys/i386/i386/procfs_machdep.c @@ -37,7 +37,7 @@ * @(#)procfs_machdep.c 8.3 (Berkeley) 1/27/94 * * From: - * $Id: procfs_machdep.c,v 1.11 1998/09/14 22:43:33 jdp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/simplelock.s b/sys/i386/i386/simplelock.s index 4442500ef80b..9abc3b74660a 100644 --- a/sys/i386/i386/simplelock.s +++ b/sys/i386/i386/simplelock.s @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: simplelock.s,v 1.9 1998/05/17 23:08:03 tegge Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/support.s b/sys/i386/i386/support.s index 7093dbb86df4..ae99af947ab8 100644 --- a/sys/i386/i386/support.s +++ b/sys/i386/i386/support.s @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: support.s,v 1.62 1999/03/30 09:00:40 phk Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/i386/swtch.s b/sys/i386/i386/swtch.s index fb6c1ff93688..ee277419c360 100644 --- a/sys/i386/i386/swtch.s +++ b/sys/i386/i386/swtch.s @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swtch.s,v 1.85 1999/07/10 15:27:55 bde Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/i386/i386/symbols.raw b/sys/i386/i386/symbols.raw index 943d8ae860c4..0641f6657978 100644 --- a/sys/i386/i386/symbols.raw +++ b/sys/i386/i386/symbols.raw @@ -1,6 +1,6 @@ # @(#)symbols.raw 7.6 (Berkeley) 5/8/91 # -# $Id: symbols.raw,v 1.13 1998/09/15 10:03:43 gibbs Exp $ +# $FreeBSD$ # diff --git a/sys/i386/i386/sys_machdep.c b/sys/i386/i386/sys_machdep.c index 76b45ff8c329..0f5930ca7a0a 100644 --- a/sys/i386/i386/sys_machdep.c +++ b/sys/i386/i386/sys_machdep.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91 - * $Id: sys_machdep.c,v 1.41 1999/04/28 01:03:25 luoqi Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index e717563e7ed5..5e3ed49ee48a 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.139 1999/06/18 14:32:16 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/tsc.c b/sys/i386/i386/tsc.c index 188e20bc0f47..8a3e1c93030c 100644 --- a/sys/i386/i386/tsc.c +++ b/sys/i386/i386/tsc.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.142 1999/07/29 01:20:47 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/i386/userconfig.c b/sys/i386/i386/userconfig.c index 2a0f13624b28..09e31cb980b1 100644 --- a/sys/i386/i386/userconfig.c +++ b/sys/i386/i386/userconfig.c @@ -46,7 +46,7 @@ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** - ** $Id: userconfig.c,v 1.152 1999/08/09 13:52:12 mpp Exp $ + ** $FreeBSD$ **/ /** @@ -2545,7 +2545,7 @@ visuserconfig(void) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: userconfig.c,v 1.152 1999/08/09 13:52:12 mpp Exp $ + * $FreeBSD$ */ #include "scbus.h" diff --git a/sys/i386/i386/vm86.c b/sys/i386/i386/vm86.c index 43d8cff9dfd8..b50b6f18d573 100644 --- a/sys/i386/i386/vm86.c +++ b/sys/i386/i386/vm86.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vm86.c,v 1.26 1999/06/01 18:19:48 jlemon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/i386/vm86bios.s b/sys/i386/i386/vm86bios.s index b81116f06df7..778148176491 100644 --- a/sys/i386/i386/vm86bios.s +++ b/sys/i386/i386/vm86bios.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vm86bios.s,v 1.13 1999/05/12 21:38:46 luoqi Exp $ + * $FreeBSD$ */ #include /* miscellaneous asm macros */ diff --git a/sys/i386/i386/vm_machdep.c b/sys/i386/i386/vm_machdep.c index 21bc706129ce..b907f27c034c 100644 --- a/sys/i386/i386/vm_machdep.c +++ b/sys/i386/i386/vm_machdep.c @@ -38,7 +38,7 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.124 1999/07/22 06:04:01 alc Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/i386/ibcs2/Makefile b/sys/i386/ibcs2/Makefile index 99d779e07ad5..f90560ee821e 100644 --- a/sys/i386/ibcs2/Makefile +++ b/sys/i386/ibcs2/Makefile @@ -1,6 +1,6 @@ # Makefile for syscall tables # -# $Id$ +# $FreeBSD$ all: @echo "make ibcs2_sysent.c, ibcs2_isc_sysent.c or ibcs2_xenix_sysent.c only" diff --git a/sys/i386/ibcs2/coff.h b/sys/i386/ibcs2/coff.h index c4868fcfdacd..a0eecd97ba95 100644 --- a/sys/i386/ibcs2/coff.h +++ b/sys/i386/ibcs2/coff.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _COFF_H diff --git a/sys/i386/ibcs2/ibcs2_fcntl.c b/sys/i386/ibcs2/ibcs2_fcntl.c index 436489263ca3..5cc637a92cd8 100644 --- a/sys/i386/ibcs2/ibcs2_fcntl.c +++ b/sys/i386/ibcs2/ibcs2_fcntl.c @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_fcntl.c,v 1.11 1998/02/04 04:12:28 eivind Exp $ + * $FreeBSD$ */ #include "opt_spx_hack.h" diff --git a/sys/i386/ibcs2/ibcs2_ipc.c b/sys/i386/ibcs2/ibcs2_ipc.c index d2ebfa85f176..2acf3d2bbd60 100644 --- a/sys/i386/ibcs2/ibcs2_ipc.c +++ b/sys/i386/ibcs2/ibcs2_ipc.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_ipc.c,v 1.13 1997/11/06 19:28:28 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/ibcs2_ipc.h b/sys/i386/ibcs2/ibcs2_ipc.h index 664920bfa31f..bee650f76658 100644 --- a/sys/i386/ibcs2/ibcs2_ipc.h +++ b/sys/i386/ibcs2/ibcs2_ipc.h @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_ipc.h,v 1.4 1999/02/07 19:35:40 guido Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/ibcs2/ibcs2_isc.c b/sys/i386/ibcs2/ibcs2_isc.c index 89841418052e..bc268b6ac8ea 100644 --- a/sys/i386/ibcs2/ibcs2_isc.c +++ b/sys/i386/ibcs2/ibcs2_isc.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_isc.c,v 1.10 1997/07/20 09:39:43 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/ibcs2_misc.c b/sys/i386/ibcs2/ibcs2_misc.c index aff36c81c303..cea6b15ddd44 100644 --- a/sys/i386/ibcs2/ibcs2_misc.c +++ b/sys/i386/ibcs2/ibcs2_misc.c @@ -45,7 +45,7 @@ * * @(#)sun_misc.c 8.1 (Berkeley) 6/18/93 * - * $Id: ibcs2_misc.c,v 1.31 1999/01/28 01:59:52 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/ibcs2/ibcs2_msg.c b/sys/i386/ibcs2/ibcs2_msg.c index 8b7429b1edc2..6c36cf85540e 100644 --- a/sys/i386/ibcs2/ibcs2_msg.c +++ b/sys/i386/ibcs2/ibcs2_msg.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_msg.c,v 1.5 1997/11/06 19:28:34 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/ibcs2/ibcs2_other.c b/sys/i386/ibcs2/ibcs2_other.c index cabb184b33c2..3578b3a07e5d 100644 --- a/sys/i386/ibcs2/ibcs2_other.c +++ b/sys/i386/ibcs2/ibcs2_other.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_other.c,v 1.8 1997/11/06 19:28:35 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/ibcs2/ibcs2_poll.h b/sys/i386/ibcs2/ibcs2_poll.h index d04fce1bc453..6bd86ced28fd 100644 --- a/sys/i386/ibcs2/ibcs2_poll.h +++ b/sys/i386/ibcs2/ibcs2_poll.h @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ diff --git a/sys/i386/ibcs2/ibcs2_signal.c b/sys/i386/ibcs2/ibcs2_signal.c index 7770896ed3d8..fa111fa88f50 100644 --- a/sys/i386/ibcs2/ibcs2_signal.c +++ b/sys/i386/ibcs2/ibcs2_signal.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_signal.c,v 1.12 1997/11/06 19:28:38 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/ibcs2_sysvec.c b/sys/i386/ibcs2/ibcs2_sysvec.c index a9a25fd666fe..bed71d6fb9fb 100644 --- a/sys/i386/ibcs2/ibcs2_sysvec.c +++ b/sys/i386/ibcs2/ibcs2_sysvec.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_sysvec.c,v 1.14 1999/02/04 21:21:38 newton Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/ibcs2_xenix.c b/sys/i386/ibcs2/ibcs2_xenix.c index 89506bfced4e..67af2fcfdd5c 100644 --- a/sys/i386/ibcs2/ibcs2_xenix.c +++ b/sys/i386/ibcs2/ibcs2_xenix.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2_xenix.c,v 1.17 1998/12/04 22:54:46 archie Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/imgact_coff.c b/sys/i386/ibcs2/imgact_coff.c index 3c70d0058851..5c0b316dacdd 100644 --- a/sys/i386/ibcs2/imgact_coff.c +++ b/sys/i386/ibcs2/imgact_coff.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_coff.c,v 1.35 1999/01/28 01:59:52 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/ibcs2/syscalls.conf b/sys/i386/ibcs2/syscalls.conf index ebdaa97f63b8..f000929cc5b2 100644 --- a/sys/i386/ibcs2/syscalls.conf +++ b/sys/i386/ibcs2/syscalls.conf @@ -1,4 +1,4 @@ -# syscalls.conf $Id: syscalls.conf,v 1.4 1997/02/22 09:33:32 peter Exp $ +# syscalls.conf $FreeBSD$ sysnames="/dev/null" sysproto="ibcs2_proto.h" sysproto_h=_IBCS2_SYSPROTO_H_ diff --git a/sys/i386/ibcs2/syscalls.isc b/sys/i386/ibcs2/syscalls.isc index d8806bf1c450..883374875c56 100644 --- a/sys/i386/ibcs2/syscalls.isc +++ b/sys/i386/ibcs2/syscalls.isc @@ -1,4 +1,4 @@ - $Id: syscalls.isc,v 1.3 1997/02/22 09:33:35 peter Exp $ + $FreeBSD$ #include #include diff --git a/sys/i386/ibcs2/syscalls.isc.conf b/sys/i386/ibcs2/syscalls.isc.conf index 90e30ff70cd0..b9a3e554ead5 100644 --- a/sys/i386/ibcs2/syscalls.isc.conf +++ b/sys/i386/ibcs2/syscalls.isc.conf @@ -1,4 +1,4 @@ -# syscalls.conf $Id: syscalls.isc.conf,v 1.3 1997/02/22 09:33:37 peter Exp $ +# syscalls.conf $FreeBSD$ sysnames="/dev/null" #sysproto="ibcs2_isc.h" sysproto="/dev/null" diff --git a/sys/i386/ibcs2/syscalls.master b/sys/i386/ibcs2/syscalls.master index ed3388c47600..ccbdf1f86ba7 100644 --- a/sys/i386/ibcs2/syscalls.master +++ b/sys/i386/ibcs2/syscalls.master @@ -1,4 +1,4 @@ - $Id: syscalls.master,v 1.7 1997/02/22 09:33:38 peter Exp $ + $FreeBSD$ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 ; System call name/number master file (or rather, slave, from IBCS2). diff --git a/sys/i386/ibcs2/syscalls.xenix b/sys/i386/ibcs2/syscalls.xenix index d8efc1ec8857..61182e6a34fc 100644 --- a/sys/i386/ibcs2/syscalls.xenix +++ b/sys/i386/ibcs2/syscalls.xenix @@ -1,4 +1,4 @@ - $Id: syscalls.xenix,v 1.4 1997/02/22 09:33:39 peter Exp $ + $FreeBSD$ #include #include diff --git a/sys/i386/ibcs2/syscalls.xenix.conf b/sys/i386/ibcs2/syscalls.xenix.conf index 4b4af8b76ef4..18469ec7834c 100644 --- a/sys/i386/ibcs2/syscalls.xenix.conf +++ b/sys/i386/ibcs2/syscalls.xenix.conf @@ -1,4 +1,4 @@ -# syscalls.conf $Id: syscalls.xenix.conf,v 1.3 1997/02/22 09:33:40 peter Exp $ +# syscalls.conf $FreeBSD$ sysnames="/dev/null" sysproto="ibcs2_xenix.h" sysproto_h=_IBCS2_XENIX_H_ diff --git a/sys/i386/include/_limits.h b/sys/i386/include/_limits.h index fe6041b4c4b7..0d258ff9d94c 100644 --- a/sys/i386/include/_limits.h +++ b/sys/i386/include/_limits.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 - * $Id: limits.h,v 1.12 1999/05/20 23:33:35 ache Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/i386/include/ansi.h b/sys/i386/include/ansi.h index 9d7494e0fc12..22059f1d0725 100644 --- a/sys/i386/include/ansi.h +++ b/sys/i386/include/ansi.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ansi.h 8.2 (Berkeley) 1/4/94 - * $Id: ansi.h,v 1.15 1998/06/14 14:00:47 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ANSI_H_ diff --git a/sys/i386/include/apic.h b/sys/i386/include/apic.h index 55e44e0bec2f..38c70709e7c2 100644 --- a/sys/i386/include/apic.h +++ b/sys/i386/include/apic.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apic.h,v 1.11 1997/08/04 17:31:24 fsmp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_APIC_H_ diff --git a/sys/i386/include/apicreg.h b/sys/i386/include/apicreg.h index 55e44e0bec2f..38c70709e7c2 100644 --- a/sys/i386/include/apicreg.h +++ b/sys/i386/include/apicreg.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apic.h,v 1.11 1997/08/04 17:31:24 fsmp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_APIC_H_ diff --git a/sys/i386/include/apm_bios.h b/sys/i386/include/apm_bios.h index 5f7cf5b6ef02..754965ef388f 100644 --- a/sys/i386/include/apm_bios.h +++ b/sys/i386/include/apm_bios.h @@ -12,7 +12,7 @@ * * Aug, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm_bios.h,v 1.24 1999/07/30 08:24:23 msmith Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_APM_BIOS_H_ diff --git a/sys/i386/include/apm_segments.h b/sys/i386/include/apm_segments.h index 03355374e93a..9111b5cb0f09 100644 --- a/sys/i386/include/apm_segments.h +++ b/sys/i386/include/apm_segments.h @@ -12,7 +12,7 @@ * * Sep., 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_APM_SEGMENTS_H diff --git a/sys/i386/include/asm.h b/sys/i386/include/asm.h index f1023173b3d4..7ac124366024 100644 --- a/sys/i386/include/asm.h +++ b/sys/i386/include/asm.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)DEFS.h 5.1 (Berkeley) 4/23/90 - * $Id: asm.h,v 1.3 1997/04/15 14:06:34 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ASM_H_ diff --git a/sys/i386/include/asmacros.h b/sys/i386/include/asmacros.h index 00bdf7affe40..92b9e1a5d700 100644 --- a/sys/i386/include/asmacros.h +++ b/sys/i386/include/asmacros.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: asmacros.h,v 1.16 1997/04/22 06:55:32 jdp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ASMACROS_H_ diff --git a/sys/i386/include/asnames.h b/sys/i386/include/asnames.h index 89218abb317e..ee2076807da6 100644 --- a/sys/i386/include/asnames.h +++ b/sys/i386/include/asnames.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: asnames.h,v 1.38 1999/07/29 01:49:19 msmith Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ASNAMES_H_ diff --git a/sys/i386/include/atomic.h b/sys/i386/include/atomic.h index e9f9403f6198..b3fd514cbc91 100644 --- a/sys/i386/include/atomic.h +++ b/sys/i386/include/atomic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: atomic.h,v 1.4 1999/07/23 23:45:19 alc Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ATOMIC_H_ #define _MACHINE_ATOMIC_H_ diff --git a/sys/i386/include/bootinfo.h b/sys/i386/include/bootinfo.h index 928aa2b70de6..b8d1af3b2c51 100644 --- a/sys/i386/include/bootinfo.h +++ b/sys/i386/include/bootinfo.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.h,v 1.11 1998/10/01 18:22:52 msmith Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_BOOTINFO_H_ diff --git a/sys/i386/include/bus.h b/sys/i386/include/bus.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/i386/include/bus.h +++ b/sys/i386/include/bus.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/i386/include/bus_at386.h b/sys/i386/include/bus_at386.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/i386/include/bus_at386.h +++ b/sys/i386/include/bus_at386.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/i386/include/bus_dma.h b/sys/i386/include/bus_dma.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/i386/include/bus_dma.h +++ b/sys/i386/include/bus_dma.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/i386/include/bus_memio.h b/sys/i386/include/bus_memio.h index ee58d5a24ef2..3533a671fe8d 100644 --- a/sys/i386/include/bus_memio.h +++ b/sys/i386/include/bus_memio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_BUS_MEMIO_H_ diff --git a/sys/i386/include/bus_pc98.h b/sys/i386/include/bus_pc98.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/i386/include/bus_pc98.h +++ b/sys/i386/include/bus_pc98.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/i386/include/bus_pio.h b/sys/i386/include/bus_pio.h index 4eb051e18190..8742dd195e0b 100644 --- a/sys/i386/include/bus_pio.h +++ b/sys/i386/include/bus_pio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_BUS_PIO_H_ diff --git a/sys/i386/include/cdk.h b/sys/i386/include/cdk.h index f49aa32cf16c..8080f2b469f2 100644 --- a/sys/i386/include/cdk.h +++ b/sys/i386/include/cdk.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /*****************************************************************************/ diff --git a/sys/i386/include/clock.h b/sys/i386/include/clock.h index 03e2d79e20f6..f5c654a6a64f 100644 --- a/sys/i386/include/clock.h +++ b/sys/i386/include/clock.h @@ -3,7 +3,7 @@ * Garrett Wollman, September 1994. * This file is in the public domain. * - * $Id: clock.h,v 1.34 1998/03/05 21:45:42 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CLOCK_H_ diff --git a/sys/i386/include/comstats.h b/sys/i386/include/comstats.h index f332eebcfb19..0b8fc4e0de3f 100644 --- a/sys/i386/include/comstats.h +++ b/sys/i386/include/comstats.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /*****************************************************************************/ diff --git a/sys/i386/include/cpu.h b/sys/i386/include/cpu.h index d3e4ad47b9f0..4a2fe79f41ad 100644 --- a/sys/i386/include/cpu.h +++ b/sys/i386/include/cpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91 - * $Id: cpu.h,v 1.39 1999/04/23 20:22:44 dt Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CPU_H_ diff --git a/sys/i386/include/cpufunc.h b/sys/i386/include/cpufunc.h index 9c72d0db5327..9618b252019f 100644 --- a/sys/i386/include/cpufunc.h +++ b/sys/i386/include/cpufunc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.89 1999/08/19 00:32:48 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/cputypes.h b/sys/i386/include/cputypes.h index ece2509927ab..93e01e26287d 100644 --- a/sys/i386/include/cputypes.h +++ b/sys/i386/include/cputypes.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cputypes.h,v 1.11 1998/05/22 00:03:23 des Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CPUTYPES_H_ diff --git a/sys/i386/include/db_machdep.h b/sys/i386/include/db_machdep.h index aaa32f66661f..d5022d81e92d 100644 --- a/sys/i386/include/db_machdep.h +++ b/sys/i386/include/db_machdep.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. * - * $Id: db_machdep.h,v 1.12 1997/02/22 09:34:24 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_DB_MACHDEP_H_ diff --git a/sys/i386/include/elf.h b/sys/i386/include/elf.h index ac0cce3ee0e9..756c08c02042 100644 --- a/sys/i386/include/elf.h +++ b/sys/i386/include/elf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf.h,v 1.6 1999/02/07 23:49:55 jdp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ELF_H_ diff --git a/sys/i386/include/endian.h b/sys/i386/include/endian.h index 63971e5a9073..9023c7680107 100644 --- a/sys/i386/include/endian.h +++ b/sys/i386/include/endian.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)endian.h 7.8 (Berkeley) 4/3/91 - * $Id: endian.h,v 1.15 1997/04/20 11:44:32 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_ENDIAN_H_ diff --git a/sys/i386/include/exec.h b/sys/i386/include/exec.h index 7670fd1cee1a..c233b09655b2 100644 --- a/sys/i386/include/exec.h +++ b/sys/i386/include/exec.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.1 (Berkeley) 6/11/93 - * $Id$ + * $FreeBSD$ */ #ifndef _EXEC_H_ diff --git a/sys/i386/include/float.h b/sys/i386/include/float.h index a0296ecc8c05..5cdbc97f7d4b 100644 --- a/sys/i386/include/float.h +++ b/sys/i386/include/float.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)float.h 7.1 (Berkeley) 5/8/90 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_FLOAT_H_ diff --git a/sys/i386/include/floatingpoint.h b/sys/i386/include/floatingpoint.h index cd2561f8b9d1..c3e674f7f30c 100644 --- a/sys/i386/include/floatingpoint.h +++ b/sys/i386/include/floatingpoint.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#) floatingpoint.h 1.0 (Berkeley) 9/23/93 - * $Id: floatingpoint.h,v 1.8 1997/02/22 09:34:37 peter Exp $ + * $FreeBSD$ */ #ifndef _FLOATINGPOINT_H_ diff --git a/sys/i386/include/frame.h b/sys/i386/include/frame.h index f339f01c43c1..b212d6c7b77f 100644 --- a/sys/i386/include/frame.h +++ b/sys/i386/include/frame.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)frame.h 5.2 (Berkeley) 1/18/91 - * $Id: frame.h,v 1.17 1999/05/11 16:29:01 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_FRAME_H_ diff --git a/sys/i386/include/globaldata.h b/sys/i386/include/globaldata.h index c02009b83432..28336d708534 100644 --- a/sys/i386/include/globaldata.h +++ b/sys/i386/include/globaldata.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globaldata.h,v 1.9 1999/05/12 21:39:00 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/globals.h b/sys/i386/include/globals.h index 6305f86352db..b399b7c27ad1 100644 --- a/sys/i386/include/globals.h +++ b/sys/i386/include/globals.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globals.h,v 1.2 1999/05/12 21:39:01 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_GLOBALS_H_ diff --git a/sys/i386/include/i4b_cause.h b/sys/i386/include/i4b_cause.h index 3edf3ad1e142..f94df0f9ca1c 100644 --- a/sys/i386/include/i4b_cause.h +++ b/sys/i386/include/i4b_cause.h @@ -27,7 +27,7 @@ * i4b_cause.h - causes and cause handling for i4b * ----------------------------------------------- * - * $Id: i4b_cause.h,v 1.9 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:37:46 1999] * diff --git a/sys/i386/include/i4b_debug.h b/sys/i386/include/i4b_debug.h index 980bb0ae1d34..e2f1ee17f583 100644 --- a/sys/i386/include/i4b_debug.h +++ b/sys/i386/include/i4b_debug.h @@ -27,7 +27,7 @@ * i4b_debug.h - i4b debug header file * ----------------------------------- * - * $Id: i4b_debug.h,v 1.19 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:27:07 1999] * diff --git a/sys/i386/include/i4b_ioctl.h b/sys/i386/include/i4b_ioctl.h index 2f6c7530990a..785379f2549c 100644 --- a/sys/i386/include/i4b_ioctl.h +++ b/sys/i386/include/i4b_ioctl.h @@ -27,7 +27,7 @@ * i4b_ioctl.h - messages kernel <--> userland * ------------------------------------------- * - * $Id: i4b_ioctl.h,v 1.125 1999/07/30 07:02:11 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 30 08:53:47 1999] * diff --git a/sys/i386/include/i4b_rbch_ioctl.h b/sys/i386/include/i4b_rbch_ioctl.h index 97bdb90f6844..62d2829b8b83 100644 --- a/sys/i386/include/i4b_rbch_ioctl.h +++ b/sys/i386/include/i4b_rbch_ioctl.h @@ -27,7 +27,7 @@ * i4b_rbch_ioctl.h raw B-channel driver interface ioctls * ------------------------------------------------------ * - * $Id: i4b_rbch_ioctl.h,v 1.1 1999/07/09 06:44:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 08:35:07 1999] * diff --git a/sys/i386/include/i4b_tel_ioctl.h b/sys/i386/include/i4b_tel_ioctl.h index 07fcde86df63..0f1004acae30 100644 --- a/sys/i386/include/i4b_tel_ioctl.h +++ b/sys/i386/include/i4b_tel_ioctl.h @@ -27,7 +27,7 @@ * i4b_tel_ioctl.h telephony interface ioctls * ------------------------------------------ * - * $Id: i4b_tel_ioctl.h,v 1.10 1999/07/09 06:44:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 08:34:28 1999] * diff --git a/sys/i386/include/i4b_trace.h b/sys/i386/include/i4b_trace.h index 5b9a7307dd1c..3001e6466ee8 100644 --- a/sys/i386/include/i4b_trace.h +++ b/sys/i386/include/i4b_trace.h @@ -27,7 +27,7 @@ * i4b_trace.h - header file for trace data read device * ---------------------------------------------------- * - * $Id: i4b_trace.h,v 1.6 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:39:26 1999] * diff --git a/sys/i386/include/ieeefp.h b/sys/i386/include/ieeefp.h index ab4d529ea94c..3c9c49ddda34 100644 --- a/sys/i386/include/ieeefp.h +++ b/sys/i386/include/ieeefp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#) ieeefp.h 1.0 (Berkeley) 9/23/93 - * $Id: ieeefp.h,v 1.5 1997/02/22 09:34:41 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/if_wavelan_ieee.h b/sys/i386/include/if_wavelan_ieee.h index f002933a9bdc..ef5f5ae709cc 100644 --- a/sys/i386/include/if_wavelan_ieee.h +++ b/sys/i386/include/if_wavelan_ieee.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wavelan_ieee.h,v 1.4 1999/04/27 02:02:41 wpaul Exp $ + * $FreeBSD$ */ #ifndef _IF_WAVELAN_IEEE_H diff --git a/sys/i386/include/if_wl_wavelan.h b/sys/i386/include/if_wl_wavelan.h index 1626f13862c5..63c5a93f7d9b 100644 --- a/sys/i386/include/if_wl_wavelan.h +++ b/sys/i386/include/if_wl_wavelan.h @@ -1,4 +1,4 @@ -/* $Id: if_wl_wavelan.h,v 1.2 1997/08/01 03:33:43 msmith Exp $ */ +/* $FreeBSD$ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/i386/include/iic.h b/sys/i386/include/iic.h index 6649821e0240..5d362c1a2dd4 100644 --- a/sys/i386/include/iic.h +++ b/sys/i386/include/iic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iic.h,v 1.1 1998/09/03 21:00:08 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __IIC_H diff --git a/sys/i386/include/in_cksum.h b/sys/i386/include/in_cksum.h index acfa10de0f04..f2d9beb18993 100644 --- a/sys/i386/include/in_cksum.h +++ b/sys/i386/include/in_cksum.h @@ -33,7 +33,7 @@ * from tahoe: in_cksum.c 1.2 86/01/05 * from: @(#)in_cksum.c 1.3 (Berkeley) 1/19/91 * from: Id: in_cksum.c,v 1.8 1995/12/03 18:35:19 bde Exp - * $Id: in_cksum.h,v 1.4 1997/02/22 09:34:42 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_IN_CKSUM_H_ diff --git a/sys/i386/include/ioctl_bt848.h b/sys/i386/include/ioctl_bt848.h index 0767abddb684..30e18d156da3 100644 --- a/sys/i386/include/ioctl_bt848.h +++ b/sys/i386/include/ioctl_bt848.h @@ -1,7 +1,7 @@ /* * extensions to ioctl_meteor.h for the bt848 cards * - * $Id: ioctl_bt848.h,v 1.22 1999/02/15 11:04:36 roger Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/ioctl_ctx.h b/sys/i386/include/ioctl_ctx.h index 5d7a5c57a332..8be709aea314 100644 --- a/sys/i386/include/ioctl_ctx.h +++ b/sys/i386/include/ioctl_ctx.h @@ -7,7 +7,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/ioctl_fd.h b/sys/i386/include/ioctl_fd.h index 891d8f0a22a9..3b4da37da238 100644 --- a/sys/i386/include/ioctl_fd.h +++ b/sys/i386/include/ioctl_fd.h @@ -24,7 +24,7 @@ * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_IOCTL_FD_H_ diff --git a/sys/i386/include/ipl.h b/sys/i386/include/ipl.h index 6207e93529b4..28c39aaf94e0 100644 --- a/sys/i386/include/ipl.h +++ b/sys/i386/include/ipl.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl.h,v 1.15 1998/08/11 19:21:17 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_IPL_H_ diff --git a/sys/i386/include/limits.h b/sys/i386/include/limits.h index fe6041b4c4b7..0d258ff9d94c 100644 --- a/sys/i386/include/limits.h +++ b/sys/i386/include/limits.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 - * $Id: limits.h,v 1.12 1999/05/20 23:33:35 ache Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/i386/include/lock.h b/sys/i386/include/lock.h index 1b3c00556426..1faff8261b32 100644 --- a/sys/i386/include/lock.h +++ b/sys/i386/include/lock.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lock.h,v 1.8 1999/08/22 05:37:18 alc Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/include/lpt.h b/sys/i386/include/lpt.h index 2d70d7ee3397..56d196a62fef 100644 --- a/sys/i386/include/lpt.h +++ b/sys/i386/include/lpt.h @@ -11,7 +11,7 @@ * * Geoff Rehmet, Rhodes University, South Africa * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_LPT_H_ diff --git a/sys/i386/include/md_var.h b/sys/i386/include/md_var.h index 491eb46b024a..755e1e72cce2 100644 --- a/sys/i386/include/md_var.h +++ b/sys/i386/include/md_var.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: md_var.h,v 1.29 1999/04/28 01:04:02 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MD_VAR_H_ diff --git a/sys/i386/include/mouse.h b/sys/i386/include/mouse.h index 98cc0ad38a05..12d49a2a5d75 100644 --- a/sys/i386/include/mouse.h +++ b/sys/i386/include/mouse.h @@ -20,7 +20,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mouse.h,v 1.13 1999/07/12 15:16:12 yokota Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MOUSE_H_ diff --git a/sys/i386/include/mpapic.h b/sys/i386/include/mpapic.h index 988a2e1a69ce..a0099364a99f 100644 --- a/sys/i386/include/mpapic.h +++ b/sys/i386/include/mpapic.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mpapic.h,v 1.10 1997/07/28 03:59:34 fsmp Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MPAPIC_H_ diff --git a/sys/i386/include/mptable.h b/sys/i386/include/mptable.h index 969cd0892495..283ed1701a3c 100644 --- a/sys/i386/include/mptable.h +++ b/sys/i386/include/mptable.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/i386/include/mtpr.h b/sys/i386/include/mtpr.h index e8347e677541..679de2eed30d 100644 --- a/sys/i386/include/mtpr.h +++ b/sys/i386/include/mtpr.h @@ -1,4 +1,4 @@ /* * Unused in 386BSD port - * $Id$ + * $FreeBSD$ */ diff --git a/sys/i386/include/npx.h b/sys/i386/include/npx.h index 10384c6ebf9b..2e7a31d25082 100644 --- a/sys/i386/include/npx.h +++ b/sys/i386/include/npx.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)npx.h 5.3 (Berkeley) 1/18/91 - * $Id: npx.h,v 1.14 1997/07/20 11:06:44 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/param.h b/sys/i386/include/param.h index 4f0cbc0d5576..1a8b1a724b95 100644 --- a/sys/i386/include/param.h +++ b/sys/i386/include/param.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)param.h 5.8 (Berkeley) 6/28/91 - * $Id: param.h,v 1.49 1999/02/19 19:34:48 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PARAM_H_ diff --git a/sys/i386/include/pc/bios.h b/sys/i386/include/pc/bios.h index 1ea2f9273191..3a317863812f 100644 --- a/sys/i386/include/pc/bios.h +++ b/sys/i386/include/pc/bios.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bios.h,v 1.5 1999/08/18 02:20:04 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/pc/display.h b/sys/i386/include/pc/display.h index 9e64a3f13307..cd2d5ff35b73 100644 --- a/sys/i386/include/pc/display.h +++ b/sys/i386/include/pc/display.h @@ -1,7 +1,7 @@ /* * IBM PC display definitions * - * $Id$ + * $FreeBSD$ */ /* Color attributes for foreground text */ diff --git a/sys/i386/include/pc/msdos.h b/sys/i386/include/pc/msdos.h index ea221c7954a5..b56bddc967dd 100644 --- a/sys/i386/include/pc/msdos.h +++ b/sys/i386/include/pc/msdos.h @@ -3,7 +3,7 @@ * [obtained from mtools -wfj] * how to decipher DOS disk structures in coexisting with DOS * - * $Id$ + * $FreeBSD$ */ #define MSECTOR_SIZE 512 /* MSDOS sector size in bytes */ diff --git a/sys/i386/include/pc/vesa.h b/sys/i386/include/pc/vesa.h index f5ce264fce15..97c4a180d6f9 100644 --- a/sys/i386/include/pc/vesa.h +++ b/sys/i386/include/pc/vesa.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: vesa.h,v 1.4 1999/01/11 03:18:20 yokota Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PC_VESA_H diff --git a/sys/i386/include/pcaudioio.h b/sys/i386/include/pcaudioio.h index bae4564ee009..969f910f7f81 100644 --- a/sys/i386/include/pcaudioio.h +++ b/sys/i386/include/pcaudioio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_PCAUDIOIO_H_ diff --git a/sys/i386/include/pcb.h b/sys/i386/include/pcb.h index 5cee924dd9ff..ed3044cc4d6a 100644 --- a/sys/i386/include/pcb.h +++ b/sys/i386/include/pcb.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)pcb.h 5.10 (Berkeley) 5/12/91 - * $Id: pcb.h,v 1.28 1999/06/01 18:20:06 jlemon Exp $ + * $FreeBSD$ */ #ifndef _I386_PCB_H_ diff --git a/sys/i386/include/pcb_ext.h b/sys/i386/include/pcb_ext.h index 36d07e9e8cec..154cf949ba0b 100644 --- a/sys/i386/include/pcb_ext.h +++ b/sys/i386/include/pcb_ext.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_PCB_EXT_H_ diff --git a/sys/i386/include/pci_cfgreg.h b/sys/i386/include/pci_cfgreg.h index 44556e7731ad..34b3fc54aaa3 100644 --- a/sys/i386/include/pci_cfgreg.h +++ b/sys/i386/include/pci_cfgreg.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/i386/include/pcpu.h b/sys/i386/include/pcpu.h index c02009b83432..28336d708534 100644 --- a/sys/i386/include/pcpu.h +++ b/sys/i386/include/pcpu.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globaldata.h,v 1.9 1999/05/12 21:39:00 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/perfmon.h b/sys/i386/include/perfmon.h index 6a7ae14e38a2..c8f93f4ee52e 100644 --- a/sys/i386/include/perfmon.h +++ b/sys/i386/include/perfmon.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: perfmon.h,v 1.4 1997/02/22 09:34:57 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/pmap.h b/sys/i386/include/pmap.h index fd55bdcb2efa..b9f3f745a4e7 100644 --- a/sys/i386/include/pmap.h +++ b/sys/i386/include/pmap.h @@ -42,7 +42,7 @@ * * from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90 * from: @(#)pmap.h 7.4 (Berkeley) 5/12/91 - * $Id: pmap.h,v 1.60 1999/04/02 17:59:49 alc Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PMAP_H_ diff --git a/sys/i386/include/proc.h b/sys/i386/include/proc.h index ae6cd6337bc3..bc2679e385c3 100644 --- a/sys/i386/include/proc.h +++ b/sys/i386/include/proc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)proc.h 7.1 (Berkeley) 5/15/91 - * $Id: proc.h,v 1.8 1997/05/07 19:55:13 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PROC_H_ diff --git a/sys/i386/include/profile.h b/sys/i386/include/profile.h index e034e611e069..1d2b6009f52e 100644 --- a/sys/i386/include/profile.h +++ b/sys/i386/include/profile.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)profile.h 8.1 (Berkeley) 6/11/93 - * $Id: profile.h,v 1.17 1998/07/14 05:09:43 bde Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PROFILE_H_ diff --git a/sys/i386/include/psl.h b/sys/i386/include/psl.h index 5f1733587f8e..6a7e233a8408 100644 --- a/sys/i386/include/psl.h +++ b/sys/i386/include/psl.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)psl.h 5.2 (Berkeley) 1/18/91 - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_PSL_H_ diff --git a/sys/i386/include/ptrace.h b/sys/i386/include/ptrace.h index 2c43a2eef8d4..55a26fd636ad 100644 --- a/sys/i386/include/ptrace.h +++ b/sys/i386/include/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 - * $Id: ptrace.h,v 1.6 1998/05/19 00:00:12 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PTRACE_H_ diff --git a/sys/i386/include/random.h b/sys/i386/include/random.h index 569173a1a6a2..e084f8111d1e 100644 --- a/sys/i386/include/random.h +++ b/sys/i386/include/random.h @@ -1,7 +1,7 @@ /* * random.h -- A strong random number generator * - * $Id: random.h,v 1.15 1998/06/18 15:32:05 bde Exp $ + * $FreeBSD$ * * Version 0.95, last modified 18-Oct-95 * diff --git a/sys/i386/include/reg.h b/sys/i386/include/reg.h index 994bdfda0360..1f541c7b30d0 100644 --- a/sys/i386/include/reg.h +++ b/sys/i386/include/reg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)reg.h 5.5 (Berkeley) 1/18/91 - * $Id: reg.h,v 1.18 1999/04/28 01:04:06 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_REG_H_ diff --git a/sys/i386/include/reloc.h b/sys/i386/include/reloc.h index ead0334ee221..ef4b8dbc3e8c 100644 --- a/sys/i386/include/reloc.h +++ b/sys/i386/include/reloc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)reloc.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _I386_MACHINE_RELOC_H_ diff --git a/sys/i386/include/segments.h b/sys/i386/include/segments.h index 1a6e20d91af8..d043d8b5a113 100644 --- a/sys/i386/include/segments.h +++ b/sys/i386/include/segments.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)segments.h 7.1 (Berkeley) 5/9/91 - * $Id: segments.h,v 1.21 1999/07/29 01:49:19 msmith Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SEGMENTS_H_ diff --git a/sys/i386/include/setjmp.h b/sys/i386/include/setjmp.h index c0337c06ce6d..173ea2d92f8c 100644 --- a/sys/i386/include/setjmp.h +++ b/sys/i386/include/setjmp.h @@ -1,4 +1,4 @@ -/* $Id: setjmp.h,v 1.1 1998/01/10 23:04:51 jb Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 John Birrell . * All rights reserved. diff --git a/sys/i386/include/si.h b/sys/i386/include/si.h index 416486c039b0..29d709bb3284 100644 --- a/sys/i386/include/si.h +++ b/sys/i386/include/si.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.h,v 1.12 1998/03/23 16:27:43 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 51dc1960901e..deaa06ca7923 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.1 (Berkeley) 6/11/93 - * $Id: signal.h,v 1.7 1997/02/22 09:35:12 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SIGNAL_H_ diff --git a/sys/i386/include/smb.h b/sys/i386/include/smb.h index e0ebef8b2dd4..7ed0a82f58fa 100644 --- a/sys/i386/include/smb.h +++ b/sys/i386/include/smb.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smb.h,v 1.1 1998/09/03 21:00:08 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __SMB_H diff --git a/sys/i386/include/smp.h b/sys/i386/include/smp.h index c425db6f7d32..0524d76b6fbe 100644 --- a/sys/i386/include/smp.h +++ b/sys/i386/include/smp.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: smp.h,v 1.45 1999/04/28 01:04:07 luoqi Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/include/smptests.h b/sys/i386/include/smptests.h index a4093eee1c69..dd897284e234 100644 --- a/sys/i386/include/smptests.h +++ b/sys/i386/include/smptests.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smptests.h,v 1.31 1998/03/07 20:48:16 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SMPTESTS_H_ diff --git a/sys/i386/include/speaker.h b/sys/i386/include/speaker.h index 0d204bfe2f07..78b55b6135e3 100644 --- a/sys/i386/include/speaker.h +++ b/sys/i386/include/speaker.h @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_SPEAKER_H_ diff --git a/sys/i386/include/specialreg.h b/sys/i386/include/specialreg.h index f6e04fa98cbc..d95f9331f623 100644 --- a/sys/i386/include/specialreg.h +++ b/sys/i386/include/specialreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)specialreg.h 7.1 (Berkeley) 5/9/91 - * $Id: specialreg.h,v 1.16 1998/10/06 13:16:26 kato Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_SPECIALREG_H_ diff --git a/sys/i386/include/stdarg.h b/sys/i386/include/stdarg.h index 1766283e7f25..341eb87a4728 100644 --- a/sys/i386/include/stdarg.h +++ b/sys/i386/include/stdarg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)stdarg.h 8.1 (Berkeley) 6/10/93 - * $Id: stdarg.h,v 1.8 1997/02/22 09:35:17 peter Exp $ + * $FreeBSD$ */ #ifndef _STDARG_H_ diff --git a/sys/i386/include/sysarch.h b/sys/i386/include/sysarch.h index a9248389acd2..009c7810259a 100644 --- a/sys/i386/include/sysarch.h +++ b/sys/i386/include/sysarch.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sysarch.h,v 1.9 1998/07/28 03:33:27 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/include/trap.h b/sys/i386/include/trap.h index 96928d189962..6cc059a1e584 100644 --- a/sys/i386/include/trap.h +++ b/sys/i386/include/trap.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)trap.h 5.4 (Berkeley) 5/9/91 - * $Id: trap.h,v 1.8 1999/07/25 13:16:08 cracauer Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_TRAP_H_ diff --git a/sys/i386/include/tss.h b/sys/i386/include/tss.h index 636133a9a870..2003a66609b4 100644 --- a/sys/i386/include/tss.h +++ b/sys/i386/include/tss.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)tss.h 5.4 (Berkeley) 1/18/91 - * $Id: tss.h,v 1.8 1997/02/22 09:35:20 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_TSS_H_ diff --git a/sys/i386/include/types.h b/sys/i386/include/types.h index c7eec31db1e1..39672cd98b09 100644 --- a/sys/i386/include/types.h +++ b/sys/i386/include/types.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)types.h 8.3 (Berkeley) 1/5/94 - * $Id: types.h,v 1.16 1998/12/19 00:02:29 dt Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_TYPES_H_ diff --git a/sys/i386/include/varargs.h b/sys/i386/include/varargs.h index 5661462e11f4..d1d4ed0c0906 100644 --- a/sys/i386/include/varargs.h +++ b/sys/i386/include/varargs.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)varargs.h 8.2 (Berkeley) 3/22/94 - * $Id: varargs.h,v 1.6 1997/02/28 07:12:34 bde Exp $ + * $FreeBSD$ */ #ifndef _VARARGS_H_ diff --git a/sys/i386/include/vm86.h b/sys/i386/include/vm86.h index 602ef0748f99..1231bb20a77f 100644 --- a/sys/i386/include/vm86.h +++ b/sys/i386/include/vm86.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vm86.h,v 1.10 1999/04/28 01:04:09 luoqi Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_VM86_H_ diff --git a/sys/i386/include/vmparam.h b/sys/i386/include/vmparam.h index 9ec54e2d34af..0a5847dd5ff6 100644 --- a/sys/i386/include/vmparam.h +++ b/sys/i386/include/vmparam.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 - * $Id: vmparam.h,v 1.30 1998/06/12 09:10:22 dg Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/include/wtio.h b/sys/i386/include/wtio.h index 868e34774b8a..8262a01e093c 100644 --- a/sys/i386/include/wtio.h +++ b/sys/i386/include/wtio.h @@ -19,7 +19,7 @@ * This driver is derived from the old 386bsd Wangtek streamer tape driver, * made by Robert Baron at CMU, based on Intel sources. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/README.le b/sys/i386/isa/README.le index a8c33c194b3c..74ed23c6b9d7 100644 --- a/sys/i386/isa/README.le +++ b/sys/i386/isa/README.le @@ -1,4 +1,4 @@ -$Id: README.le,v 1.4 1997/02/22 09:35:49 peter Exp $ +$FreeBSD$ ---------------- diff --git a/sys/i386/isa/adv_isa.c b/sys/i386/isa/adv_isa.c index 5cc06c5801b2..7390939cb9c5 100644 --- a/sys/i386/isa/adv_isa.c +++ b/sys/i386/isa/adv_isa.c @@ -44,7 +44,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_isa.c,v 1.11 1999/05/08 18:20:57 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/aha_isa.c b/sys/i386/isa/aha_isa.c index b6e0cb08e523..6484eacb225c 100644 --- a/sys/i386/isa/aha_isa.c +++ b/sys/i386/isa/aha_isa.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha_isa.c,v 1.8 1999/05/08 18:20:55 peter Exp $ + * $FreeBSD$ */ #include "pnp.h" diff --git a/sys/i386/isa/aic6360.c b/sys/i386/isa/aic6360.c index e0f946d3d993..fbe2fde5860f 100644 --- a/sys/i386/isa/aic6360.c +++ b/sys/i386/isa/aic6360.c @@ -32,7 +32,7 @@ */ /* - * $Id: aic6360.c,v 1.42 1998/10/22 05:58:38 bde Exp $ + * $FreeBSD$ * * Acknowledgements: Many of the algorithms used in this driver are * inspired by the work of Julian Elischer (julian@tfs.com) and diff --git a/sys/i386/isa/apic_ipl.h b/sys/i386/isa/apic_ipl.h index d9db79711519..921802e7b597 100644 --- a/sys/i386/isa/apic_ipl.h +++ b/sys/i386/isa/apic_ipl.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apic_ipl.h,v 1.1 1997/05/31 08:49:08 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_APIC_IPL_H_ diff --git a/sys/i386/isa/apic_ipl.s b/sys/i386/isa/apic_ipl.s index 57ddeca3009f..855de2651338 100644 --- a/sys/i386/isa/apic_ipl.s +++ b/sys/i386/isa/apic_ipl.s @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: apic_ipl.s,v 1.25 1999/07/10 15:27:58 bde Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/isa/apic_vector.s b/sys/i386/isa/apic_vector.s index 6a7bcf059a12..f484971eab2b 100644 --- a/sys/i386/isa/apic_vector.s +++ b/sys/i386/isa/apic_vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: apic_vector.s,v 1.43 1999/07/20 06:52:35 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/isa/asc.c b/sys/i386/isa/asc.c index dce5783cfc6a..b03cf04b3f23 100644 --- a/sys/i386/isa/asc.c +++ b/sys/i386/isa/asc.c @@ -34,7 +34,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* - * $Id: asc.c,v 1.38 1999/05/31 11:25:50 phk Exp $ + * $FreeBSD$ */ #include "asc.h" diff --git a/sys/i386/isa/ascreg.h b/sys/i386/isa/ascreg.h index 41803004dc34..9fcb9a353908 100644 --- a/sys/i386/isa/ascreg.h +++ b/sys/i386/isa/ascreg.h @@ -31,7 +31,7 @@ */ /* - * $Id$ + * $FreeBSD$ */ /*** Registers (base=3EB): ************/ diff --git a/sys/i386/isa/atapi-cd.c b/sys/i386/isa/atapi-cd.c index 865f82bae6a2..72412a931331 100644 --- a/sys/i386/isa/atapi-cd.c +++ b/sys/i386/isa/atapi-cd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.c,v 1.20 1999/05/31 11:25:51 phk Exp $ + * $FreeBSD$ */ #include "wdc.h" diff --git a/sys/i386/isa/atapi-cd.h b/sys/i386/isa/atapi-cd.h index 5bde4b72d157..3e71b3fe18cb 100644 --- a/sys/i386/isa/atapi-cd.h +++ b/sys/i386/isa/atapi-cd.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.h,v 1.3 1999/01/31 21:51:03 sos Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/atpic_vector.s b/sys/i386/isa/atpic_vector.s index cbb8b5ea49b9..24ce97b666b9 100644 --- a/sys/i386/isa/atpic_vector.s +++ b/sys/i386/isa/atpic_vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: icu_vector.s,v 1.12 1999/05/28 14:08:59 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/clock.c b/sys/i386/isa/clock.c index 188e20bc0f47..8a3e1c93030c 100644 --- a/sys/i386/isa/clock.c +++ b/sys/i386/isa/clock.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.142 1999/07/29 01:20:47 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ctx.c b/sys/i386/isa/ctx.c index d3bda1912379..efd84295f29d 100644 --- a/sys/i386/isa/ctx.c +++ b/sys/i386/isa/ctx.c @@ -8,7 +8,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: ctx.c,v 1.32 1999/05/31 11:25:54 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ctxreg.h b/sys/i386/isa/ctxreg.h index 836239bac689..55503c0a66cd 100644 --- a/sys/i386/isa/ctxreg.h +++ b/sys/i386/isa/ctxreg.h @@ -7,7 +7,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/cy.c b/sys/i386/isa/cy.c index 56b0bbc3621f..4181c44e2b4e 100644 --- a/sys/i386/isa/cy.c +++ b/sys/i386/isa/cy.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.91 1999/06/04 18:13:25 bde Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/i386/isa/cyreg.h b/sys/i386/isa/cyreg.h index baedda4175b2..88a36eb4a65e 100644 --- a/sys/i386/isa/cyreg.h +++ b/sys/i386/isa/cyreg.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cyreg.h,v 1.7 1998/08/13 19:03:22 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/diskslice_machdep.c b/sys/i386/isa/diskslice_machdep.c index d6be12a9ddd0..342537904b6e 100644 --- a/sys/i386/isa/diskslice_machdep.c +++ b/sys/i386/isa/diskslice_machdep.c @@ -35,7 +35,7 @@ * * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: diskslice_machdep.c,v 1.35 1999/06/26 02:47:09 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/elink.c b/sys/i386/isa/elink.c index 5d59813afac1..11b107f3f79e 100644 --- a/sys/i386/isa/elink.c +++ b/sys/i386/isa/elink.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elink.c,v 1.8 1997/07/20 14:09:54 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/elink.h b/sys/i386/isa/elink.h index 1c39b45a7fc3..881b198641ce 100644 --- a/sys/i386/isa/elink.h +++ b/sys/i386/isa/elink.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elink.h,v 1.4 1997/02/22 09:36:08 peter Exp $ + * $FreeBSD$ */ #ifdef PC98 diff --git a/sys/i386/isa/ic/cd1400.h b/sys/i386/isa/ic/cd1400.h index ee9b9f27a4dd..90672c4ee7e6 100644 --- a/sys/i386/isa/ic/cd1400.h +++ b/sys/i386/isa/ic/cd1400.h @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cd1400.h,v 1.4 1997/02/22 09:37:59 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ic/esp.h b/sys/i386/isa/ic/esp.h index cc74b0b67720..06b665b708fa 100644 --- a/sys/i386/isa/ic/esp.h +++ b/sys/i386/isa/ic/esp.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: esp.h,v 1.4 1999/01/03 05:03:46 kato Exp $ + * $FreeBSD$ */ #ifndef _IC_ESP_H_ diff --git a/sys/i386/isa/ic/hd64570.h b/sys/i386/isa/ic/hd64570.h index e26e89fb789c..b676e25a9cd5 100644 --- a/sys/i386/isa/ic/hd64570.h +++ b/sys/i386/isa/ic/hd64570.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _HD64570_H_ #define _HD64570_H_ diff --git a/sys/i386/isa/ic/i8042.h b/sys/i386/isa/ic/i8042.h index 84ee90f08e62..988eaa8987dd 100644 --- a/sys/i386/isa/ic/i8042.h +++ b/sys/i386/isa/ic/i8042.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ */ #define KBSTATP 0x64 /* kbd controller status port (I) */ diff --git a/sys/i386/isa/ic/i8237.h b/sys/i386/isa/ic/i8237.h index e955a33b833d..2bc8a08317c6 100644 --- a/sys/i386/isa/ic/i8237.h +++ b/sys/i386/isa/ic/i8237.h @@ -1,7 +1,7 @@ /* * Intel 8237 DMA Controller * - * $Id$ + * $FreeBSD$ */ #define DMA37MD_SINGLE 0x40 /* single pass mode */ diff --git a/sys/i386/isa/ic/i82586.h b/sys/i386/isa/ic/i82586.h index 704d624b77ae..964621bd3677 100644 --- a/sys/i386/isa/ic/i82586.h +++ b/sys/i386/isa/ic/i82586.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i82586.h,v 1.7 1998/08/10 17:21:48 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ic/lemac.h b/sys/i386/isa/ic/lemac.h index f222f1ad7181..239741db9e40 100644 --- a/sys/i386/isa/ic/lemac.h +++ b/sys/i386/isa/ic/lemac.h @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _LEMAC_H_ #define _LEMAC_H_ diff --git a/sys/i386/isa/ic/ns16550.h b/sys/i386/isa/ic/ns16550.h index b91f5fd2a839..2d93e76a554d 100644 --- a/sys/i386/isa/ic/ns16550.h +++ b/sys/i386/isa/ic/ns16550.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ns16550.h 7.1 (Berkeley) 5/9/91 - * $Id: ns16550.h,v 1.6 1999/01/03 05:03:46 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ic/rsa.h b/sys/i386/isa/ic/rsa.h index e760e306cacc..6f9376af2f23 100644 --- a/sys/i386/isa/ic/rsa.h +++ b/sys/i386/isa/ic/rsa.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/ic/scd1400.h b/sys/i386/isa/ic/scd1400.h index c651a3014ad7..272e56c9e4eb 100644 --- a/sys/i386/isa/ic/scd1400.h +++ b/sys/i386/isa/ic/scd1400.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /*****************************************************************************/ diff --git a/sys/i386/isa/icu.h b/sys/i386/isa/icu.h index cfe4dceb0873..14e8d14aa9be 100644 --- a/sys/i386/isa/icu.h +++ b/sys/i386/isa/icu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)icu.h 5.6 (Berkeley) 5/9/91 - * $Id: icu.h,v 1.15 1997/07/22 20:12:05 fsmp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/icu_ipl.h b/sys/i386/isa/icu_ipl.h index 147bad070f55..cdbac2bba163 100644 --- a/sys/i386/isa/icu_ipl.h +++ b/sys/i386/isa/icu_ipl.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.h,v 1.1 1997/05/31 08:50:34 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_ICU_IPL_H_ diff --git a/sys/i386/isa/icu_ipl.s b/sys/i386/isa/icu_ipl.s index 0f3a3caeaa33..34753583a41e 100644 --- a/sys/i386/isa/icu_ipl.s +++ b/sys/i386/isa/icu_ipl.s @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.4 1998/08/11 15:08:12 bde Exp $ + * $FreeBSD$ */ .data diff --git a/sys/i386/isa/icu_vector.s b/sys/i386/isa/icu_vector.s index cbb8b5ea49b9..24ce97b666b9 100644 --- a/sys/i386/isa/icu_vector.s +++ b/sys/i386/isa/icu_vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: icu_vector.s,v 1.12 1999/05/28 14:08:59 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_ar.c b/sys/i386/isa/if_ar.c index 66771534bbf0..342cba495952 100644 --- a/sys/i386/isa/if_ar.c +++ b/sys/i386/isa/if_ar.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ar.c,v 1.26 1999/05/06 18:58:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_arregs.h b/sys/i386/isa/if_arregs.h index 974b76127962..6c5b020908e2 100644 --- a/sys/i386/isa/if_arregs.h +++ b/sys/i386/isa/if_arregs.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IF_ARREGS_H_ #define _IF_ARREGS_H_ diff --git a/sys/i386/isa/if_cs.c b/sys/i386/isa/if_cs.c index 4863ffe3c7ff..aa7e06c788fd 100644 --- a/sys/i386/isa/if_cs.c +++ b/sys/i386/isa/if_cs.c @@ -27,7 +27,7 @@ */ /* - * $Id: if_cs.c,v 1.10 1999/04/16 21:22:20 peter Exp $ + * $FreeBSD$ * * Device driver for Crystal Semiconductor CS8920 based ethernet * adapters. By Maxim Bolotin and Oleg Sharoiko, 27-April-1997 diff --git a/sys/i386/isa/if_csreg.h b/sys/i386/isa/if_csreg.h index 3d53f01db753..56d9fcd595af 100644 --- a/sys/i386/isa/if_csreg.h +++ b/sys/i386/isa/if_csreg.h @@ -27,7 +27,7 @@ */ /* - * $Id: if_csreg.h,v 1.7 1998/07/19 16:13:39 root Exp root $ + * $FreeBSD$ */ #define PP_ChipID 0x0000 /* offset 0h -> Corp -ID */ diff --git a/sys/i386/isa/if_ed.c b/sys/i386/isa/if_ed.c index d65ac48c3d38..fed261abfe59 100644 --- a/sys/i386/isa/if_ed.c +++ b/sys/i386/isa/if_ed.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ed.c,v 1.152 1999/05/09 23:24:45 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_edreg.h b/sys/i386/isa/if_edreg.h index 20a14ed8d86e..db1a89d9f7ec 100644 --- a/sys/i386/isa/if_edreg.h +++ b/sys/i386/isa/if_edreg.h @@ -6,7 +6,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: if_edreg.h,v 1.24 1998/10/08 17:04:47 kato Exp $ + * $FreeBSD$ */ /* * National Semiconductor DS8390 NIC register definitions diff --git a/sys/i386/isa/if_el.c b/sys/i386/isa/if_el.c index 7945fb0800e2..86b796e8bd7f 100644 --- a/sys/i386/isa/if_el.c +++ b/sys/i386/isa/if_el.c @@ -6,7 +6,7 @@ * * Questions, comments, bug reports and fixes to kimmel@cs.umass.edu. * - * $Id: if_el.c,v 1.44 1999/08/20 14:12:12 mdodd Exp $ + * $FreeBSD$ */ /* Except of course for the portions of code lifted from other FreeBSD * drivers (mainly elread, elget and el_ioctl) diff --git a/sys/i386/isa/if_elreg.h b/sys/i386/isa/if_elreg.h index 8b133b3bd6d7..3fb3f15a295f 100644 --- a/sys/i386/isa/if_elreg.h +++ b/sys/i386/isa/if_elreg.h @@ -4,7 +4,7 @@ * of the software, derivative works or modified versions, and any * portions thereof. * - * $Id$ + * $FreeBSD$ */ /* 3COM Etherlink 3C501 Register Definitions */ diff --git a/sys/i386/isa/if_ep.c b/sys/i386/isa/if_ep.c index d1f3460aa545..a4027a6ae37a 100644 --- a/sys/i386/isa/if_ep.c +++ b/sys/i386/isa/if_ep.c @@ -38,7 +38,7 @@ */ /* - * $Id: if_ep.c,v 1.83 1999/08/18 22:14:20 mdodd Exp $ + * $FreeBSD$ * * Promiscuous mode added and interrupt logic slightly changed * to reduce the number of adapter failures. Transceiver select diff --git a/sys/i386/isa/if_epreg.h b/sys/i386/isa/if_epreg.h index 997b228d01f7..08ff37be4fc7 100644 --- a/sys/i386/isa/if_epreg.h +++ b/sys/i386/isa/if_epreg.h @@ -31,7 +31,7 @@ */ /* - * $Id: if_epreg.h,v 1.23 1998/04/17 22:36:35 des Exp $ + * $FreeBSD$ * * Promiscuous mode added and interrupt logic slightly changed * to reduce the number of adapter failures. Transceiver select diff --git a/sys/i386/isa/if_ex.c b/sys/i386/isa/if_ex.c index 2aef5b290ac4..bd8103e8bb7c 100644 --- a/sys/i386/isa/if_ex.c +++ b/sys/i386/isa/if_ex.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ex.c,v 1.17 1999/08/18 06:11:58 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_fe.c b/sys/i386/isa/if_fe.c index 00b793420dd1..9e3dd65ac396 100644 --- a/sys/i386/isa/if_fe.c +++ b/sys/i386/isa/if_fe.c @@ -21,7 +21,7 @@ */ /* - * $Id: if_fe.c,v 1.53 1999/08/18 22:14:21 mdodd Exp $ + * $FreeBSD$ * * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards. * To be used with FreeBSD 3.x diff --git a/sys/i386/isa/if_fereg.h b/sys/i386/isa/if_fereg.h index d9b943c5febf..7e28201f6987 100644 --- a/sys/i386/isa/if_fereg.h +++ b/sys/i386/isa/if_fereg.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: if_fereg.h,v 1.5 1997/02/22 09:36:28 peter Exp $ */ +/* $FreeBSD$ */ /* * Registers on FMV-180 series' ISA bus interface ASIC. diff --git a/sys/i386/isa/if_ie.c b/sys/i386/isa/if_ie.c index d6c928b98f9c..83142b44bde7 100644 --- a/sys/i386/isa/if_ie.c +++ b/sys/i386/isa/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.66 1999/08/21 06:24:14 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_ie507.h b/sys/i386/isa/if_ie507.h index 7583ffd0a037..9be1396cf49e 100644 --- a/sys/i386/isa/if_ie507.h +++ b/sys/i386/isa/if_ie507.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Definitions for 3C507 */ diff --git a/sys/i386/isa/if_iereg.h b/sys/i386/isa/if_iereg.h index 3588b8414058..875f63ca9dbb 100644 --- a/sys/i386/isa/if_iereg.h +++ b/sys/i386/isa/if_iereg.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * definitions for AT&T StarLAN 10 etc... */ diff --git a/sys/i386/isa/if_le.c b/sys/i386/isa/if_le.c index 073259d91138..700cb6dc8f5a 100644 --- a/sys/i386/isa/if_le.c +++ b/sys/i386/isa/if_le.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_le.c,v 1.52 1999/08/18 06:11:59 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_lnc.c b/sys/i386/isa/if_lnc.c index 058ca3f57426..6345dffd1131 100644 --- a/sys/i386/isa/if_lnc.c +++ b/sys/i386/isa/if_lnc.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_lnc.c,v 1.64 1999/08/18 22:14:23 mdodd Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_lnc.h b/sys/i386/isa/if_lnc.h index aeff426d5e17..f3d37f44654c 100644 --- a/sys/i386/isa/if_lnc.h +++ b/sys/i386/isa/if_lnc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_lnc.h,v 1.11 1999/07/06 19:22:51 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/if_rdp.c b/sys/i386/isa/if_rdp.c index b7c90a8eeb90..7d8fa3031e8b 100644 --- a/sys/i386/isa/if_rdp.c +++ b/sys/i386/isa/if_rdp.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_rdp.c,v 1.3 1999/01/12 00:36:31 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_rdpreg.h b/sys/i386/isa/if_rdpreg.h index cab679a4bd3e..ee56e82e4963 100644 --- a/sys/i386/isa/if_rdpreg.h +++ b/sys/i386/isa/if_rdpreg.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_rdpreg.h,v 1.1.1.1 1998/12/21 12:43:35 j Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_sr.c b/sys/i386/isa/if_sr.c index ba883f7fecc9..6d56ab42712f 100644 --- a/sys/i386/isa/if_sr.c +++ b/sys/i386/isa/if_sr.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_sr.c,v 1.23 1999/05/06 22:14:46 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/if_srregs.h b/sys/i386/isa/if_srregs.h index 689b6abecf2d..64d9ba11c50e 100644 --- a/sys/i386/isa/if_srregs.h +++ b/sys/i386/isa/if_srregs.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IF_SRREGS_H_ #define _IF_SRREGS_H_ diff --git a/sys/i386/isa/if_wi.c b/sys/i386/isa/if_wi.c index 0a92e8092463..73e56d7295b6 100644 --- a/sys/i386/isa/if_wi.c +++ b/sys/i386/isa/if_wi.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $ + * $FreeBSD$ */ /* @@ -117,7 +117,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $"; + "$FreeBSD$"; #endif static struct wi_softc wi_softc[NWI]; diff --git a/sys/i386/isa/if_wireg.h b/sys/i386/isa/if_wireg.h index 75c963ea4686..d4173273f524 100644 --- a/sys/i386/isa/if_wireg.h +++ b/sys/i386/isa/if_wireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wireg.h,v 1.4 1999/05/07 03:28:52 wpaul Exp $ + * $FreeBSD$ */ struct wi_counters { diff --git a/sys/i386/isa/if_wl.c b/sys/i386/isa/if_wl.c index 2c37caf84774..2a68f775e677 100644 --- a/sys/i386/isa/if_wl.c +++ b/sys/i386/isa/if_wl.c @@ -1,4 +1,4 @@ -/* $Id: if_wl.c,v 1.23 1999/08/18 06:11:59 mdodd Exp $ */ +/* $FreeBSD$ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/i386/isa/if_ze.c b/sys/i386/isa/if_ze.c index 7f59869e2d45..8db782237caa 100644 --- a/sys/i386/isa/if_ze.c +++ b/sys/i386/isa/if_ze.c @@ -47,7 +47,7 @@ */ /* - * $Id: if_ze.c,v 1.60 1999/08/18 06:12:00 mdodd Exp $ + * $FreeBSD$ */ /* XXX don't mix different PCCARD support code. */ diff --git a/sys/i386/isa/if_zp.c b/sys/i386/isa/if_zp.c index a7059fae30aa..3043517939e6 100644 --- a/sys/i386/isa/if_zp.c +++ b/sys/i386/isa/if_zp.c @@ -34,7 +34,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * From: if_ep.c,v 1.9 1994/01/25 10:46:29 deraadt Exp $ - * $Id: if_zp.c,v 1.53 1999/08/18 06:12:00 mdodd Exp $ + * $FreeBSD$ */ /*- * TODO: diff --git a/sys/i386/isa/if_zpreg.h b/sys/i386/isa/if_zpreg.h index 31720b5f5a37..b9848f7cfec3 100644 --- a/sys/i386/isa/if_zpreg.h +++ b/sys/i386/isa/if_zpreg.h @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /************************************************************************** * * diff --git a/sys/i386/isa/intr_machdep.c b/sys/i386/isa/intr_machdep.c index 3a214a99522a..8bdb4b6d72d4 100644 --- a/sys/i386/isa/intr_machdep.c +++ b/sys/i386/isa/intr_machdep.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ */ /* * This file contains an aggregated module marked: @@ -506,7 +506,7 @@ icu_unset(intr, handler) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/intr_machdep.h b/sys/i386/isa/intr_machdep.h index 06593cf359f4..adea3037caa1 100644 --- a/sys/i386/isa/intr_machdep.h +++ b/sys/i386/isa/intr_machdep.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: intr_machdep.h,v 1.15 1999/06/03 20:41:00 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_INTR_MACHDEP_H_ diff --git a/sys/i386/isa/ipl.s b/sys/i386/isa/ipl.s index ad7eb1132bb5..964834d916fe 100644 --- a/sys/i386/isa/ipl.s +++ b/sys/i386/isa/ipl.s @@ -36,7 +36,7 @@ * * @(#)ipl.s * - * $Id: ipl.s,v 1.29 1999/07/03 06:33:48 alc Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/isa/ipl_funcs.c b/sys/i386/isa/ipl_funcs.c index a4756d87dfc8..78b1c1d5fef2 100644 --- a/sys/i386/isa/ipl_funcs.c +++ b/sys/i386/isa/ipl_funcs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl_funcs.c,v 1.27 1999/07/20 06:09:53 alc Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c index 8e153a71c62b..f87d9816f071 100644 --- a/sys/i386/isa/isa.c +++ b/sys/i386/isa/isa.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa.c,v 1.127 1999/05/22 15:18:12 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/isa.h b/sys/i386/isa/isa.h index ea25f20604ee..cc66da9be045 100644 --- a/sys/i386/isa/isa.h +++ b/sys/i386/isa/isa.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id: isa.h,v 1.21 1997/02/22 09:36:41 peter Exp $ + * $FreeBSD$ */ #ifdef PC98 diff --git a/sys/i386/isa/isa_compat.c b/sys/i386/isa/isa_compat.c index 83fd0bcebeac..c84d1e22cc23 100644 --- a/sys/i386/isa/isa_compat.c +++ b/sys/i386/isa/isa_compat.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa_compat.c,v 1.12 1999/05/30 11:04:31 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/isa_compat.h b/sys/i386/isa/isa_compat.h index 6d763811ae45..e6f57f6c81cf 100644 --- a/sys/i386/isa/isa_compat.h +++ b/sys/i386/isa/isa_compat.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa_compat.h,v 1.7 1999/05/09 09:56:52 phk Exp $ + * $FreeBSD$ */ #include "vt.h" diff --git a/sys/i386/isa/isa_device.h b/sys/i386/isa/isa_device.h index 022dfc34da45..07cbd8d04c47 100644 --- a/sys/i386/isa/isa_device.h +++ b/sys/i386/isa/isa_device.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91 - * $Id: isa_device.h,v 1.61 1999/05/08 18:20:05 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_ISA_DEVICE_H_ diff --git a/sys/i386/isa/isa_dma.c b/sys/i386/isa/isa_dma.c index 7855aaa89fa1..698c67004a7e 100644 --- a/sys/i386/isa/isa_dma.c +++ b/sys/i386/isa/isa_dma.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa_dma.c,v 1.2 1999/04/21 07:26:28 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/isa_dma.h b/sys/i386/isa/isa_dma.h index 3fe234c3422c..15f8b3d804da 100644 --- a/sys/i386/isa/isa_dma.h +++ b/sys/i386/isa/isa_dma.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91 - * $Id: isa_device.h,v 1.57 1999/01/17 06:33:43 bde Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_ISA_DMA_H_ diff --git a/sys/i386/isa/istallion.c b/sys/i386/isa/istallion.c index a0be302ca311..3ed23fea4b50 100644 --- a/sys/i386/isa/istallion.c +++ b/sys/i386/isa/istallion.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: istallion.c,v 1.29 1999/05/31 11:26:09 phk Exp $ + * $FreeBSD$ */ /*****************************************************************************/ diff --git a/sys/i386/isa/loran.c b/sys/i386/isa/loran.c index 09e86395df2c..ef72e12af63f 100644 --- a/sys/i386/isa/loran.c +++ b/sys/i386/isa/loran.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: loran.c,v 1.19 1999/05/30 16:52:19 phk Exp $ + * $FreeBSD$ * * This device-driver helps the userland controlprogram for a LORAN-C * receiver avoid monopolizing the CPU. diff --git a/sys/i386/isa/lptreg.h b/sys/i386/isa/lptreg.h index db970a2788ee..70906f0073ec 100644 --- a/sys/i386/isa/lptreg.h +++ b/sys/i386/isa/lptreg.h @@ -6,7 +6,7 @@ * William Jolitz. * * form: @(#)lptreg.h 1.1 (Berkeley) 12/19/90 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/matcd/matcd.c b/sys/i386/isa/matcd/matcd.c index 4705d15c63f4..a29d1b9b1e5b 100644 --- a/sys/i386/isa/matcd/matcd.c +++ b/sys/i386/isa/matcd/matcd.c @@ -337,7 +337,7 @@ static char MATCDVERSION[]="Version 1(26) 18-Oct-95"; static char MATCDCOPYRIGHT[] = "Matsushita CD-ROM driver, Copr. 1994,1995 Frank Durda IV"; /* The proceeding strings may not be changed*/ -/* $Id: matcd.c,v 1.42 1999/07/03 21:02:09 peter Exp $ */ +/* $FreeBSD$ */ /*--------------------------------------------------------------------------- Include declarations diff --git a/sys/i386/isa/mcd.c b/sys/i386/isa/mcd.c index 0f5001715722..5ab40ef0761c 100644 --- a/sys/i386/isa/mcd.c +++ b/sys/i386/isa/mcd.c @@ -40,7 +40,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mcd.c,v 1.108 1999/05/31 11:26:15 phk Exp $ + * $FreeBSD$ */ static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore"; diff --git a/sys/i386/isa/mcdreg.h b/sys/i386/isa/mcdreg.h index 219e119d5a87..f0f75f7b2254 100644 --- a/sys/i386/isa/mcdreg.h +++ b/sys/i386/isa/mcdreg.h @@ -41,7 +41,7 @@ * the manufacturer or anyone else might provide better documentation, * so this file (and the driver) will then have a better quality. * - * $Id$ + * $FreeBSD$ */ #ifndef MCD_H diff --git a/sys/i386/isa/mse.c b/sys/i386/isa/mse.c index ddc41a8215f5..f6d6c663652b 100644 --- a/sys/i386/isa/mse.c +++ b/sys/i386/isa/mse.c @@ -11,7 +11,7 @@ * this software for any purpose. It is provided "as is" * without express or implied warranty. * - * $Id: mse.c,v 1.44 1999/05/31 11:26:17 phk Exp $ + * $FreeBSD$ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and diff --git a/sys/i386/isa/nmi.c b/sys/i386/isa/nmi.c index 3a214a99522a..8bdb4b6d72d4 100644 --- a/sys/i386/isa/nmi.c +++ b/sys/i386/isa/nmi.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ */ /* * This file contains an aggregated module marked: @@ -506,7 +506,7 @@ icu_unset(intr, handler) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: intr_machdep.c,v 1.22 1999/05/22 09:39:31 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index a99b5674ea4b..374c06617013 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.75 1999/07/26 05:47:31 cracauer Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/i386/isa/pcaudio.c b/sys/i386/isa/pcaudio.c index cdf3b358220e..62875bf487c8 100644 --- a/sys/i386/isa/pcaudio.c +++ b/sys/i386/isa/pcaudio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcaudio.c,v 1.50 1999/05/31 11:26:19 phk Exp $ + * $FreeBSD$ */ #include "pca.h" diff --git a/sys/i386/isa/pcf.c b/sys/i386/isa/pcf.c index e5498b40b5fd..8cebfb004c0d 100644 --- a/sys/i386/isa/pcf.c +++ b/sys/i386/isa/pcf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pcf.c,v 1.9 1999/05/08 21:59:27 dfr Exp $ + * $FreeBSD$ * */ #include diff --git a/sys/i386/isa/pcibus.c b/sys/i386/isa/pcibus.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/i386/isa/pcibus.c +++ b/sys/i386/isa/pcibus.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/pcibus.h b/sys/i386/isa/pcibus.h index 44556e7731ad..34b3fc54aaa3 100644 --- a/sys/i386/isa/pcibus.h +++ b/sys/i386/isa/pcibus.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/pnp.c b/sys/i386/isa/pnp.c index 94a039c089b1..f8147d05e305 100644 --- a/sys/i386/isa/pnp.c +++ b/sys/i386/isa/pnp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pnp.c,v 1.10 1999/04/11 03:06:06 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/isa/pnp.h b/sys/i386/isa/pnp.h index b91b50d1198b..7b6392578d92 100644 --- a/sys/i386/isa/pnp.h +++ b/sys/i386/isa/pnp.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pnp.h,v 1.8 1999/08/22 19:46:05 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_PNP_H_ diff --git a/sys/i386/isa/ppc.c b/sys/i386/isa/ppc.c index 073eab558d8f..436caebf84a2 100644 --- a/sys/i386/isa/ppc.c +++ b/sys/i386/isa/ppc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppc.c,v 1.20 1999/02/14 22:02:47 nsouch Exp $ + * $FreeBSD$ * */ #include "ppc.h" diff --git a/sys/i386/isa/ppcreg.h b/sys/i386/isa/ppcreg.h index 3a61ae7675a9..faecb9771ff8 100644 --- a/sys/i386/isa/ppcreg.h +++ b/sys/i386/isa/ppcreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppcreg.h,v 1.7 1999/01/10 16:41:13 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __PPCREG_H diff --git a/sys/i386/isa/prof_machdep.c b/sys/i386/isa/prof_machdep.c index 34479056ed73..d934ee56eee6 100644 --- a/sys/i386/isa/prof_machdep.c +++ b/sys/i386/isa/prof_machdep.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: prof_machdep.c,v 1.12 1999/05/06 09:44:55 bde Exp $ + * $FreeBSD$ */ #ifdef GUPROF diff --git a/sys/i386/isa/random_machdep.c b/sys/i386/isa/random_machdep.c index 4268375a057c..c9c450fc4f02 100644 --- a/sys/i386/isa/random_machdep.c +++ b/sys/i386/isa/random_machdep.c @@ -1,7 +1,7 @@ /* * random_machdep.c -- A strong random number generator * - * $Id: random_machdep.c,v 1.30 1999/04/21 07:26:28 peter Exp $ + * $FreeBSD$ * * Version 0.95, last modified 18-Oct-95 * diff --git a/sys/i386/isa/rp.c b/sys/i386/isa/rp.c index b16f6e4f9131..a3a4db2be574 100644 --- a/sys/i386/isa/rp.c +++ b/sys/i386/isa/rp.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rp.c,v 1.28 1999/05/31 11:26:24 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/scd.c b/sys/i386/isa/scd.c index a9e39f13fdc2..5ec3eadead22 100644 --- a/sys/i386/isa/scd.c +++ b/sys/i386/isa/scd.c @@ -41,7 +41,7 @@ */ -/* $Id: scd.c,v 1.47 1999/05/31 11:26:26 phk Exp $ */ +/* $FreeBSD$ */ /* Please send any comments to micke@dynas.se */ diff --git a/sys/i386/isa/scdreg.h b/sys/i386/isa/scdreg.h index d04dc6919e2e..e9ce3b15a23f 100644 --- a/sys/i386/isa/scdreg.h +++ b/sys/i386/isa/scdreg.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/si.c b/sys/i386/isa/si.c index 34b19d467495..4186f4be232b 100644 --- a/sys/i386/isa/si.c +++ b/sys/i386/isa/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.90 1999/08/27 06:53:34 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/sys/i386/isa/sireg.h b/sys/i386/isa/sireg.h index 4697a7fe236d..711bf92e7ea0 100644 --- a/sys/i386/isa/sireg.h +++ b/sys/i386/isa/sireg.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: sireg.h,v 1.6 1998/03/23 16:27:40 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/sound/mmap_test.c b/sys/i386/isa/sound/mmap_test.c index c6afae932d47..8f2f5a547b98 100644 --- a/sys/i386/isa/sound/mmap_test.c +++ b/sys/i386/isa/sound/mmap_test.c @@ -15,7 +15,7 @@ #ifndef lint static const char rcsid[] = - "$Id: mmap_test.c,v 1.2 1998/01/16 07:20:34 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/sys/i386/isa/sound/pcm86.c b/sys/i386/isa/sound/pcm86.c index c6f11f33fc55..11cbdee02139 100644 --- a/sys/i386/isa/sound/pcm86.c +++ b/sys/i386/isa/sound/pcm86.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pcm86.c,v 1.7 1999/01/01 08:18:06 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/sound/sound.doc b/sys/i386/isa/sound/sound.doc index 2340d6079c18..13f370275036 100644 --- a/sys/i386/isa/sound/sound.doc +++ b/sys/i386/isa/sound/sound.doc @@ -1,4 +1,4 @@ -$Id: sound.doc,v 1.9 1998/10/22 15:37:35 bde Exp $ +$FreeBSD$ Instructions on using audio on a FreeBSD 2.1 (or 2.0-current) system. See also /sys/i386/conf/LINT. diff --git a/sys/i386/isa/spkr.c b/sys/i386/isa/spkr.c index 29f82055c98a..39d50c4c923a 100644 --- a/sys/i386/isa/spkr.c +++ b/sys/i386/isa/spkr.c @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov * - * $Id: spkr.c,v 1.39 1999/08/23 20:35:17 bde Exp $ + * $FreeBSD$ */ #include "speaker.h" diff --git a/sys/i386/isa/stallion.c b/sys/i386/isa/stallion.c index e7818522d450..4baeeefbc06a 100644 --- a/sys/i386/isa/stallion.c +++ b/sys/i386/isa/stallion.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: stallion.c,v 1.33 1999/05/31 11:26:33 phk Exp $ + * $FreeBSD$ */ /*****************************************************************************/ diff --git a/sys/i386/isa/timerreg.h b/sys/i386/isa/timerreg.h index ff27bacc24a4..0bfd7fc8cd63 100644 --- a/sys/i386/isa/timerreg.h +++ b/sys/i386/isa/timerreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: Header: timerreg.h,v 1.2 93/02/28 15:08:58 mccanne Exp - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/vector.s b/sys/i386/isa/vector.s index 608f13586c3b..5447a90126a0 100644 --- a/sys/i386/isa/vector.s +++ b/sys/i386/isa/vector.s @@ -1,6 +1,6 @@ /* * from: vector.s, 386BSD 0.1 unknown origin - * $Id: vector.s,v 1.30 1997/05/26 17:58:27 fsmp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/vesa.c b/sys/i386/isa/vesa.c index e4707a175b24..101547102b8d 100644 --- a/sys/i386/isa/vesa.c +++ b/sys/i386/isa/vesa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: vesa.c,v 1.27 1999/08/27 09:18:42 yokota Exp $ + * $FreeBSD$ */ #include "vga.h" diff --git a/sys/i386/isa/wd.c b/sys/i386/isa/wd.c index 74de2820d876..972518391fc4 100644 --- a/sys/i386/isa/wd.c +++ b/sys/i386/isa/wd.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.201 1999/08/14 11:40:40 phk Exp $ + * $FreeBSD$ */ /* TODO: diff --git a/sys/i386/isa/wd_cd.c b/sys/i386/isa/wd_cd.c index 865f82bae6a2..72412a931331 100644 --- a/sys/i386/isa/wd_cd.c +++ b/sys/i386/isa/wd_cd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.c,v 1.20 1999/05/31 11:25:51 phk Exp $ + * $FreeBSD$ */ #include "wdc.h" diff --git a/sys/i386/isa/wd_cd.h b/sys/i386/isa/wd_cd.h index 5bde4b72d157..3e71b3fe18cb 100644 --- a/sys/i386/isa/wd_cd.h +++ b/sys/i386/isa/wd_cd.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.h,v 1.3 1999/01/31 21:51:03 sos Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/wdreg.h b/sys/i386/isa/wdreg.h index 6730c55cfa22..1cf76da0fc2d 100644 --- a/sys/i386/isa/wdreg.h +++ b/sys/i386/isa/wdreg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)wdreg.h 7.1 (Berkeley) 5/9/91 - * $Id: wdreg.h,v 1.26 1999/04/13 20:22:32 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/wfd.c b/sys/i386/isa/wfd.c index a089527fa1ea..f7837d7407bf 100644 --- a/sys/i386/isa/wfd.c +++ b/sys/i386/isa/wfd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wfd.c,v 1.27 1999/08/14 11:40:41 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/isa/wst.c b/sys/i386/isa/wst.c index 7337796969a5..5dae30e4e97a 100644 --- a/sys/i386/isa/wst.c +++ b/sys/i386/isa/wst.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wst.c,v 1.23 1999/05/31 11:26:39 phk Exp $ + * $FreeBSD$ */ #include "wdc.h" diff --git a/sys/i386/isa/wt.c b/sys/i386/isa/wt.c index 36f2e012e77f..6cb7a1375651 100644 --- a/sys/i386/isa/wt.c +++ b/sys/i386/isa/wt.c @@ -20,7 +20,7 @@ * the original CMU copyright notice. * * Version 1.3, Thu Nov 11 12:09:13 MSK 1993 - * $Id: wt.c,v 1.52 1999/05/31 11:26:40 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/isa/wtreg.h b/sys/i386/isa/wtreg.h index 67836c50d8a7..33f0ee478750 100644 --- a/sys/i386/isa/wtreg.h +++ b/sys/i386/isa/wtreg.h @@ -19,7 +19,7 @@ * the original CMU copyright notice. * * Version 1.3, Thu Nov 11 12:09:13 MSK 1993 - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/i386/linux/Makefile b/sys/i386/linux/Makefile index d399ad080a37..c062c96ec177 100644 --- a/sys/i386/linux/Makefile +++ b/sys/i386/linux/Makefile @@ -1,6 +1,6 @@ # Makefile for syscall tables # -# $Id: Makefile,v 1.2 1997/03/29 10:48:49 peter Exp $ +# $FreeBSD$ all: @echo "make linux_sysent.c only" diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c index 3850a4de2fb5..6a766ba5d9f4 100644 --- a/sys/i386/linux/imgact_linux.c +++ b/sys/i386/linux/imgact_linux.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_linux.c,v 1.31 1999/01/17 20:36:14 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux.h b/sys/i386/linux/linux.h index 93fafa2a3712..4e5db53e99cf 100644 --- a/sys/i386/linux/linux.h +++ b/sys/i386/linux/linux.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux.h,v 1.34 1999/08/15 17:28:39 marcel Exp $ + * $FreeBSD$ */ #ifndef _I386_LINUX_LINUX_H_ diff --git a/sys/i386/linux/linux_dummy.c b/sys/i386/linux/linux_dummy.c index 5d5169d99689..c76402c31e68 100644 --- a/sys/i386/linux/linux_dummy.c +++ b/sys/i386/linux/linux_dummy.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_dummy.c,v 1.11 1999/08/25 11:19:01 marcel Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_file.c b/sys/i386/linux/linux_file.c index a5b051fd1be9..b0e8a367c83a 100644 --- a/sys/i386/linux/linux_file.c +++ b/sys/i386/linux/linux_file.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_file.c,v 1.30 1999/08/14 18:20:44 marcel Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/i386/linux/linux_genassym.c b/sys/i386/linux/linux_genassym.c index 99a88a510f6f..5d962a6c04d4 100644 --- a/sys/i386/linux/linux_genassym.c +++ b/sys/i386/linux/linux_genassym.c @@ -1,4 +1,4 @@ -/* $Id: linux_genassym.c,v 1.8 1998/07/29 15:50:41 bde Exp $ */ +/* $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_ioctl.c b/sys/i386/linux/linux_ioctl.c index 53becd770429..56a0eda42066 100644 --- a/sys/i386/linux/linux_ioctl.c +++ b/sys/i386/linux/linux_ioctl.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_ioctl.c,v 1.40 1999/08/14 13:26:44 marcel Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_ipc.c b/sys/i386/linux/linux_ipc.c index 7315fa9c2386..5efee536adb3 100644 --- a/sys/i386/linux/linux_ipc.c +++ b/sys/i386/linux/linux_ipc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_ipc.c,v 1.13 1997/11/06 19:28:57 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c index 74fb7319be80..98348750170d 100644 --- a/sys/i386/linux/linux_misc.c +++ b/sys/i386/linux/linux_misc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_misc.c,v 1.67 1999/08/25 14:11:01 marcel Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/i386/linux/linux_signal.c b/sys/i386/linux/linux_signal.c index 29b5c4c3ebf0..9f2200e526a6 100644 --- a/sys/i386/linux/linux_signal.c +++ b/sys/i386/linux/linux_signal.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_signal.c,v 1.16 1999/07/06 06:54:00 cracauer Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_socket.c b/sys/i386/linux/linux_socket.c index e757fc13c7f8..d29efb63d85d 100644 --- a/sys/i386/linux/linux_socket.c +++ b/sys/i386/linux/linux_socket.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_socket.c,v 1.14 1998/12/30 21:20:00 sos Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/i386/linux/linux_stats.c b/sys/i386/linux/linux_stats.c index bfa11f642edb..b1fc1a4e5ee8 100644 --- a/sys/i386/linux/linux_stats.c +++ b/sys/i386/linux/linux_stats.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_stats.c,v 1.12 1999/05/11 19:54:20 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c index 6c626bca01d8..871ccfbed4c1 100644 --- a/sys/i386/linux/linux_sysvec.c +++ b/sys/i386/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.47 1999/04/28 01:04:20 luoqi Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/i386/linux/linux_util.c b/sys/i386/linux/linux_util.c index 11739158917a..7c87174089a9 100644 --- a/sys/i386/linux/linux_util.c +++ b/sys/i386/linux/linux_util.c @@ -27,7 +27,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp - * $Id: linux_util.c,v 1.6 1997/03/24 11:24:31 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/i386/linux/linux_util.h b/sys/i386/linux/linux_util.h index 2905f00ca4ef..61a637171083 100644 --- a/sys/i386/linux/linux_util.h +++ b/sys/i386/linux/linux_util.h @@ -28,7 +28,7 @@ * * from: svr4_util.h,v 1.5 1994/11/18 02:54:31 christos Exp * from: linux_util.h,v 1.2 1995/03/05 23:23:50 fvdl Exp - * $Id: linux_util.h,v 1.7 1998/12/16 16:28:57 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/i386/linux/syscalls.conf b/sys/i386/linux/syscalls.conf index d1e1425ed5a2..01e258801231 100644 --- a/sys/i386/linux/syscalls.conf +++ b/sys/i386/linux/syscalls.conf @@ -1,4 +1,4 @@ -# $Id: syscalls.conf,v 1.3 1997/02/22 09:38:31 peter Exp $ +# $FreeBSD$ sysnames="/dev/null" sysproto="linux_proto.h" sysproto_h=_LINUX_SYSPROTO_H_ diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index 369ee6ffd3a9..5e6ce0719a2a 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -1,4 +1,4 @@ - $Id: syscalls.master,v 1.22 1999/08/16 11:47:21 marcel Exp $ + $FreeBSD$ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 ; System call name/number master file (or rather, slave, from LINUX). diff --git a/sys/i386/pci/pci_bus.c b/sys/i386/pci/pci_bus.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/i386/pci/pci_bus.c +++ b/sys/i386/pci/pci_bus.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/pci/pci_cfgreg.c b/sys/i386/pci/pci_cfgreg.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/i386/pci/pci_cfgreg.c +++ b/sys/i386/pci/pci_cfgreg.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/pci/pci_pir.c b/sys/i386/pci/pci_pir.c index 08cba7f52e06..741baa907f63 100644 --- a/sys/i386/pci/pci_pir.c +++ b/sys/i386/pci/pci_pir.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcibus.c,v 1.46 1999/08/10 09:22:21 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/i386/svr4/svr4_genassym.c b/sys/i386/svr4/svr4_genassym.c index a21c0be0980c..41583f5896ca 100644 --- a/sys/i386/svr4/svr4_genassym.c +++ b/sys/i386/svr4/svr4_genassym.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* Derived from: Id: linux_genassym.c,v 1.8 1998/07/29 15:50:41 bde Exp */ #include diff --git a/sys/i386/svr4/svr4_locore.s b/sys/i386/svr4/svr4_locore.s index 065dbdb117ba..6c3b0ae8fe4f 100644 --- a/sys/i386/svr4/svr4_locore.s +++ b/sys/i386/svr4/svr4_locore.s @@ -3,7 +3,7 @@ #include /* system call numbers */ -/* $Id: svr4_locore.s,v 1.6 1999/07/30 12:47:17 newton Exp $ */ +/* $FreeBSD$ */ NON_GPROF_ENTRY(svr4_sigcode) call SVR4_SIGF_HANDLER(%esp) diff --git a/sys/i386/svr4/svr4_machdep.c b/sys/i386/svr4/svr4_machdep.c index 0c77505d58da..611828981ee9 100644 --- a/sys/i386/svr4/svr4_machdep.c +++ b/sys/i386/svr4/svr4_machdep.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/i386/svr4/svr4_machdep.h b/sys/i386/svr4/svr4_machdep.h index 06b808942c2f..f183e60a47ac 100644 --- a/sys/i386/svr4/svr4_machdep.h +++ b/sys/i386/svr4/svr4_machdep.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _I386_SVR4_MACHDEP_H_ diff --git a/sys/i4b/driver/i4b_bsdi_ibc.c b/sys/i4b/driver/i4b_bsdi_ibc.c index 91688154c196..17d90c276f16 100644 --- a/sys/i4b/driver/i4b_bsdi_ibc.c +++ b/sys/i4b/driver/i4b_bsdi_ibc.c @@ -30,7 +30,7 @@ * i4b_bsdi_ibc.c - isdn4bsd kernel BSD/OS point to point driver * ------------------------------------------------------------- * - * $Id: i4b_bsdi_ibc.c,v 1.1 1999/04/23 08:35:07 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Apr 23 10:27:57 1999] * diff --git a/sys/i4b/driver/i4b_ctl.c b/sys/i4b/driver/i4b_ctl.c index afd34d7ddad3..24c5f2737608 100644 --- a/sys/i4b/driver/i4b_ctl.c +++ b/sys/i4b/driver/i4b_ctl.c @@ -27,7 +27,7 @@ * i4b_ctl.c - i4b system control port driver * ------------------------------------------ * - * $Id: i4b_ctl.c,v 1.6 1999/08/06 14:02:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Jun 8 09:27:15 1999] * diff --git a/sys/i4b/driver/i4b_ipr.c b/sys/i4b/driver/i4b_ipr.c index b2ac7d01fc23..b5944513cc94 100644 --- a/sys/i4b/driver/i4b_ipr.c +++ b/sys/i4b/driver/i4b_ipr.c @@ -27,7 +27,7 @@ * i4b_ipr.c - isdn4bsd IP over raw HDLC ISDN network driver * --------------------------------------------------------- * - * $Id: i4b_ipr.c,v 1.53 1999/07/22 18:30:15 hm Exp $ + * $FreeBSD$ * * last edit-date: [Thu Jul 22 19:46:53 1999] * diff --git a/sys/i4b/driver/i4b_isppp.c b/sys/i4b/driver/i4b_isppp.c index a2911d8b8d32..e3dcac43c58f 100644 --- a/sys/i4b/driver/i4b_isppp.c +++ b/sys/i4b/driver/i4b_isppp.c @@ -34,7 +34,7 @@ * the "cx" driver for Cronyx's HDLC-in-hardware device). This driver * is only the glue between sppp and i4b. * - * $Id: i4b_isppp.c,v 1.34 1999/07/24 13:21:42 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sat Jul 24 15:23:04 1999] * diff --git a/sys/i4b/driver/i4b_rbch.c b/sys/i4b/driver/i4b_rbch.c index 16d9de450ffd..3852b5bbdd27 100644 --- a/sys/i4b/driver/i4b_rbch.c +++ b/sys/i4b/driver/i4b_rbch.c @@ -27,7 +27,7 @@ * i4b_rbch.c - device driver for raw B channel data * --------------------------------------------------- * - * $Id: i4b_rbch.c,v 1.5 1999/08/06 14:02:04 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 09:37:02 1999] * diff --git a/sys/i4b/driver/i4b_tel.c b/sys/i4b/driver/i4b_tel.c index 4dd18c197233..5e5c9c2a0efb 100644 --- a/sys/i4b/driver/i4b_tel.c +++ b/sys/i4b/driver/i4b_tel.c @@ -27,7 +27,7 @@ * i4b_tel.c - device driver for ISDN telephony * -------------------------------------------- * - * $Id: i4b_tel.c,v 1.5 1999/08/06 14:02:04 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 08:35:30 1999] * diff --git a/sys/i4b/driver/i4b_trace.c b/sys/i4b/driver/i4b_trace.c index 528324102856..ad02f2b653a1 100644 --- a/sys/i4b/driver/i4b_trace.c +++ b/sys/i4b/driver/i4b_trace.c @@ -27,7 +27,7 @@ * i4btrc - device driver for trace data read device * --------------------------------------------------- * - * $Id: i4b_trace.c,v 1.5 1999/08/06 14:02:04 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Jun 1 12:15:40 1999] * diff --git a/sys/i4b/include/i4b_cause.h b/sys/i4b/include/i4b_cause.h index 3edf3ad1e142..f94df0f9ca1c 100644 --- a/sys/i4b/include/i4b_cause.h +++ b/sys/i4b/include/i4b_cause.h @@ -27,7 +27,7 @@ * i4b_cause.h - causes and cause handling for i4b * ----------------------------------------------- * - * $Id: i4b_cause.h,v 1.9 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:37:46 1999] * diff --git a/sys/i4b/include/i4b_debug.h b/sys/i4b/include/i4b_debug.h index 980bb0ae1d34..e2f1ee17f583 100644 --- a/sys/i4b/include/i4b_debug.h +++ b/sys/i4b/include/i4b_debug.h @@ -27,7 +27,7 @@ * i4b_debug.h - i4b debug header file * ----------------------------------- * - * $Id: i4b_debug.h,v 1.19 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:27:07 1999] * diff --git a/sys/i4b/include/i4b_global.h b/sys/i4b/include/i4b_global.h index b13ac0e558d6..c5c852d3348e 100644 --- a/sys/i4b/include/i4b_global.h +++ b/sys/i4b/include/i4b_global.h @@ -27,7 +27,7 @@ * i4b_global.h - i4b global include file * -------------------------------------- * - * $Id: i4b_global.h,v 1.21 1999/04/26 10:16:54 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Apr 26 11:10:26 1999] * diff --git a/sys/i4b/include/i4b_ioctl.h b/sys/i4b/include/i4b_ioctl.h index 2f6c7530990a..785379f2549c 100644 --- a/sys/i4b/include/i4b_ioctl.h +++ b/sys/i4b/include/i4b_ioctl.h @@ -27,7 +27,7 @@ * i4b_ioctl.h - messages kernel <--> userland * ------------------------------------------- * - * $Id: i4b_ioctl.h,v 1.125 1999/07/30 07:02:11 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 30 08:53:47 1999] * diff --git a/sys/i4b/include/i4b_isdnq931.h b/sys/i4b/include/i4b_isdnq931.h index 15d06eec5ee0..0a85a7081f5b 100644 --- a/sys/i4b/include/i4b_isdnq931.h +++ b/sys/i4b/include/i4b_isdnq931.h @@ -27,7 +27,7 @@ * i4b_isdnq931.h - DSS1 layer 3 message types * ------------------------------------------- * - * $Id: i4b_isdnq931.h,v 1.5 1999/02/14 09:44:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:04:01 1999] * diff --git a/sys/i4b/include/i4b_l1l2.h b/sys/i4b/include/i4b_l1l2.h index 5ad09bd9e82f..4386b7b3d608 100644 --- a/sys/i4b/include/i4b_l1l2.h +++ b/sys/i4b/include/i4b_l1l2.h @@ -27,7 +27,7 @@ * i4b_l1l2.h - i4b layer 1 / layer 2 interactions * --------------------------------------------------- * - * $Id: i4b_l1l2.h,v 1.8 1999/02/14 09:44:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:04:07 1999] * diff --git a/sys/i4b/include/i4b_l2l3.h b/sys/i4b/include/i4b_l2l3.h index 4d4961208693..6dee953098e8 100644 --- a/sys/i4b/include/i4b_l2l3.h +++ b/sys/i4b/include/i4b_l2l3.h @@ -27,7 +27,7 @@ * i4b_l2l3.h - i4b layer 2 / layer 3 interactions * ----------------------------------------------- * - * $Id: i4b_l2l3.h,v 1.6 1999/02/14 09:44:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:04:13 1999] * diff --git a/sys/i4b/include/i4b_l3l4.h b/sys/i4b/include/i4b_l3l4.h index 3655bb1e5b43..9a09838c4190 100644 --- a/sys/i4b/include/i4b_l3l4.h +++ b/sys/i4b/include/i4b_l3l4.h @@ -27,7 +27,7 @@ * i4b_l3l4.h - layer 3 / layer 4 interface * ------------------------------------------ * - * $Id: i4b_l3l4.h,v 1.24 1999/03/18 14:33:40 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 17 16:16:40 1999] * diff --git a/sys/i4b/include/i4b_mbuf.h b/sys/i4b/include/i4b_mbuf.h index 0d63abbbc3aa..0604c33e94dc 100644 --- a/sys/i4b/include/i4b_mbuf.h +++ b/sys/i4b/include/i4b_mbuf.h @@ -27,7 +27,7 @@ * i4b - mbuf handling support routines * -------------------------------------- * - * $Id: i4b_mbuf.h,v 1.7 1999/02/14 09:44:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:04:26 1999] * diff --git a/sys/i4b/include/i4b_rbch_ioctl.h b/sys/i4b/include/i4b_rbch_ioctl.h index 97bdb90f6844..62d2829b8b83 100644 --- a/sys/i4b/include/i4b_rbch_ioctl.h +++ b/sys/i4b/include/i4b_rbch_ioctl.h @@ -27,7 +27,7 @@ * i4b_rbch_ioctl.h raw B-channel driver interface ioctls * ------------------------------------------------------ * - * $Id: i4b_rbch_ioctl.h,v 1.1 1999/07/09 06:44:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 08:35:07 1999] * diff --git a/sys/i4b/include/i4b_tel_ioctl.h b/sys/i4b/include/i4b_tel_ioctl.h index 07fcde86df63..0f1004acae30 100644 --- a/sys/i4b/include/i4b_tel_ioctl.h +++ b/sys/i4b/include/i4b_tel_ioctl.h @@ -27,7 +27,7 @@ * i4b_tel_ioctl.h telephony interface ioctls * ------------------------------------------ * - * $Id: i4b_tel_ioctl.h,v 1.10 1999/07/09 06:44:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri Jul 9 08:34:28 1999] * diff --git a/sys/i4b/include/i4b_trace.h b/sys/i4b/include/i4b_trace.h index 5b9a7307dd1c..3001e6466ee8 100644 --- a/sys/i4b/include/i4b_trace.h +++ b/sys/i4b/include/i4b_trace.h @@ -27,7 +27,7 @@ * i4b_trace.h - header file for trace data read device * ---------------------------------------------------- * - * $Id: i4b_trace.h,v 1.6 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:39:26 1999] * diff --git a/sys/i4b/layer1/i4b_asuscom_ipac.c b/sys/i4b/layer1/i4b_asuscom_ipac.c index 5018e0852912..59f4211d7dd1 100644 --- a/sys/i4b/layer1/i4b_asuscom_ipac.c +++ b/sys/i4b/layer1/i4b_asuscom_ipac.c @@ -39,7 +39,7 @@ * code is modeled after Linux i4l driver written by Karsten * Keil. * - * $Id: i4b_asuscom_ipac.c,v 1.1 1999/07/05 13:46:46 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon May 31 20:53:17 EEST 1999] * diff --git a/sys/i4b/layer1/i4b_avm_a1.c b/sys/i4b/layer1/i4b_avm_a1.c index 0d2015673d21..8cb1ec1a5f09 100644 --- a/sys/i4b/layer1/i4b_avm_a1.c +++ b/sys/i4b/layer1/i4b_avm_a1.c @@ -35,7 +35,7 @@ * i4b_avm_a1.c - AVM A1/Fritz passive card driver for isdn4bsd * ------------------------------------------------------------ * - * $Id: i4b_avm_a1.c,v 1.21 1999/02/14 09:44:58 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:25:11 1999] * diff --git a/sys/i4b/layer1/i4b_avm_fritz_pci.c b/sys/i4b/layer1/i4b_avm_fritz_pci.c index b9b3395a0932..0b41c7bea129 100644 --- a/sys/i4b/layer1/i4b_avm_fritz_pci.c +++ b/sys/i4b/layer1/i4b_avm_fritz_pci.c @@ -35,7 +35,7 @@ * Fritz!Card PCI specific routines for isic driver * ------------------------------------------------ * - * $Id: i4b_avm_fritz_pci.c,v 1.3 1999/08/06 14:02:12 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Jun 1 14:08:01 1999] * diff --git a/sys/i4b/layer1/i4b_avm_fritz_pcmcia.c b/sys/i4b/layer1/i4b_avm_fritz_pcmcia.c index a6f0ad880f39..575da1abd0fc 100644 --- a/sys/i4b/layer1/i4b_avm_fritz_pcmcia.c +++ b/sys/i4b/layer1/i4b_avm_fritz_pcmcia.c @@ -33,7 +33,7 @@ * Fritz!Card pcmcia specific routines for isic driver * --------------------------------------------------- * - * $Id: i4b_avm_fritz_pcmcia.c,v 1.12 1999/05/03 08:48:25 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun May 2 12:01:16 1999] * diff --git a/sys/i4b/layer1/i4b_avm_fritz_pnp.c b/sys/i4b/layer1/i4b_avm_fritz_pnp.c index 8da5e0082d0c..a411c8cb1320 100644 --- a/sys/i4b/layer1/i4b_avm_fritz_pnp.c +++ b/sys/i4b/layer1/i4b_avm_fritz_pnp.c @@ -38,7 +38,7 @@ * Fritz!Card PnP specific routines for isic driver * ------------------------------------------------ * - * $Id: i4b_avm_fritz_pnp.c,v 1.1 1999/08/06 14:02:13 hm Exp $ + * $FreeBSD$ * * last edit-date: [Thu 10 Jun 08:50:28 CEST 1999] * diff --git a/sys/i4b/layer1/i4b_bchan.c b/sys/i4b/layer1/i4b_bchan.c index bd9dfd0ae871..24f0aec4c975 100644 --- a/sys/i4b/layer1/i4b_bchan.c +++ b/sys/i4b/layer1/i4b_bchan.c @@ -27,7 +27,7 @@ * i4b_bchan.c - B channel handling L1 procedures * ---------------------------------------------- * - * $Id: i4b_bchan.c,v 1.32 1999/03/17 10:41:08 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:25:27 1999] * diff --git a/sys/i4b/layer1/i4b_ctx_s0P.c b/sys/i4b/layer1/i4b_ctx_s0P.c index b5314db2239b..a651d6bf7d84 100644 --- a/sys/i4b/layer1/i4b_ctx_s0P.c +++ b/sys/i4b/layer1/i4b_ctx_s0P.c @@ -27,7 +27,7 @@ * isic - I4B Siemens ISDN Chipset Driver for Creatix PnP cards * ============================================================ * - * $Id: i4b_ctx_s0P.c,v 1.18 1999/02/14 09:44:58 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:25:33 1999] * diff --git a/sys/i4b/layer1/i4b_drn_ngo.c b/sys/i4b/layer1/i4b_drn_ngo.c index 75aa9909996f..cca3a5b91277 100644 --- a/sys/i4b/layer1/i4b_drn_ngo.c +++ b/sys/i4b/layer1/i4b_drn_ngo.c @@ -27,7 +27,7 @@ * i4b_drn_ngo.c - Dr. Neuhaus Niccy GO@ and SAGEM Cybermod * -------------------------------------------------------- * - * $Id: i4b_drn_ngo.c,v 1.20 1999/02/14 09:44:58 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:25:39 1999] * diff --git a/sys/i4b/layer1/i4b_dynalink.c b/sys/i4b/layer1/i4b_dynalink.c index 1f75302db431..1e586ae002a4 100644 --- a/sys/i4b/layer1/i4b_dynalink.c +++ b/sys/i4b/layer1/i4b_dynalink.c @@ -33,7 +33,7 @@ * isdn4bsd layer1 driver for Dynalink IS64PH isdn TA * ================================================== * - * $Id: i4b_dynalink.c,v 1.10 1999/07/26 09:03:49 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:26:21 1999] * diff --git a/sys/i4b/layer1/i4b_elsa_isdnmc.c b/sys/i4b/layer1/i4b_elsa_isdnmc.c index 1924fceea19e..2b43323c70d6 100644 --- a/sys/i4b/layer1/i4b_elsa_isdnmc.c +++ b/sys/i4b/layer1/i4b_elsa_isdnmc.c @@ -33,7 +33,7 @@ * ELSA MicroLink ISDN/MC card specific routines * --------------------------------------------- * - * $Id: i4b_elsa_isdnmc.c,v 1.4 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:26:25 1999] * diff --git a/sys/i4b/layer1/i4b_elsa_mcall.c b/sys/i4b/layer1/i4b_elsa_mcall.c index 5ad56203d5dd..e1792e2e2d3d 100644 --- a/sys/i4b/layer1/i4b_elsa_mcall.c +++ b/sys/i4b/layer1/i4b_elsa_mcall.c @@ -33,7 +33,7 @@ * ELSA MicroLink MC/all card specific routines * -------------------------------------------- * - * $Id: i4b_elsa_mcall.c,v 1.2 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:26:29 1999] * diff --git a/sys/i4b/layer1/i4b_elsa_qs1i.c b/sys/i4b/layer1/i4b_elsa_qs1i.c index 573bb8672a6b..1dea51d676d6 100644 --- a/sys/i4b/layer1/i4b_elsa_qs1i.c +++ b/sys/i4b/layer1/i4b_elsa_qs1i.c @@ -27,7 +27,7 @@ * isic - I4B Siemens ISDN Chipset Driver for ELSA Quickstep 1000pro ISA * ===================================================================== * - * $Id: i4b_elsa_qs1i.c,v 1.15 1999/03/16 14:57:53 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Mar 16 15:42:10 1999] * diff --git a/sys/i4b/layer1/i4b_elsa_qs1p.c b/sys/i4b/layer1/i4b_elsa_qs1p.c index 0cc0a01b7b9f..3c80e68a6a70 100644 --- a/sys/i4b/layer1/i4b_elsa_qs1p.c +++ b/sys/i4b/layer1/i4b_elsa_qs1p.c @@ -27,7 +27,7 @@ * isic - I4B Siemens ISDN Chipset Driver for ELSA Quickstep 1000pro PCI * ===================================================================== * - * $Id: i4b_elsa_qs1p.c,v 1.6 1999/03/16 15:21:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 10 07:24:32 1999] * diff --git a/sys/i4b/layer1/i4b_hscx.c b/sys/i4b/layer1/i4b_hscx.c index 4ddf779736db..efa1e7b6f696 100644 --- a/sys/i4b/layer1/i4b_hscx.c +++ b/sys/i4b/layer1/i4b_hscx.c @@ -27,7 +27,7 @@ * i4b - Siemens HSCX chip (B-channel) handling * -------------------------------------------- * - * $Id: i4b_hscx.c,v 1.42 1999/03/17 13:44:50 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 17 11:59:05 1999] * diff --git a/sys/i4b/layer1/i4b_hscx.h b/sys/i4b/layer1/i4b_hscx.h index b611bf9955b3..ed4208ac4d45 100644 --- a/sys/i4b/layer1/i4b_hscx.h +++ b/sys/i4b/layer1/i4b_hscx.h @@ -30,7 +30,7 @@ * *--------------------------------------------------------------------------- * - * $Id: i4b_hscx.h,v 1.4 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:26:56 1999] * diff --git a/sys/i4b/layer1/i4b_ipac.h b/sys/i4b/layer1/i4b_ipac.h index e58c4b8bde0b..4c2483e1feeb 100644 --- a/sys/i4b/layer1/i4b_ipac.h +++ b/sys/i4b/layer1/i4b_ipac.h @@ -27,7 +27,7 @@ * i4b_ipac.h - definitions for the Siemens IPAC PSB2115 chip * ========================================================== * - * $Id: i4b_ipac.h,v 1.6 1999/06/08 08:13:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Jun 8 09:53:26 1999] * diff --git a/sys/i4b/layer1/i4b_isac.c b/sys/i4b/layer1/i4b_isac.c index 71ec0c3120bb..64d20e772f57 100644 --- a/sys/i4b/layer1/i4b_isac.c +++ b/sys/i4b/layer1/i4b_isac.c @@ -27,7 +27,7 @@ * i4b_isac.c - i4b siemens isdn chipset driver ISAC handler * --------------------------------------------------------- * - * $Id: i4b_isac.c,v 1.30 1999/02/14 19:51:01 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:27:09 1999] * diff --git a/sys/i4b/layer1/i4b_isac.h b/sys/i4b/layer1/i4b_isac.h index 942b9cc4dad8..82fb523ad0ac 100644 --- a/sys/i4b/layer1/i4b_isac.h +++ b/sys/i4b/layer1/i4b_isac.h @@ -30,7 +30,7 @@ * *--------------------------------------------------------------------------- * - * $Id: i4b_isac.h,v 1.6 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:27:13 1999] * diff --git a/sys/i4b/layer1/i4b_isic.c b/sys/i4b/layer1/i4b_isic.c index a2361b986656..b1a141ed087c 100644 --- a/sys/i4b/layer1/i4b_isic.c +++ b/sys/i4b/layer1/i4b_isic.c @@ -27,7 +27,7 @@ * i4b_isic.c - global isic stuff * ============================== * - * $Id: i4b_isic.c,v 1.51 1999/07/26 09:03:49 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 26 10:59:56 1999] * diff --git a/sys/i4b/layer1/i4b_isic_isa.c b/sys/i4b/layer1/i4b_isic_isa.c index ba927c40ddd6..c240a80e8725 100644 --- a/sys/i4b/layer1/i4b_isic_isa.c +++ b/sys/i4b/layer1/i4b_isic_isa.c @@ -27,7 +27,7 @@ * i4b_isic_isa.c - ISA bus interface * ================================== * - * $Id: i4b_isic_isa.c,v 1.24 1999/07/26 09:03:49 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 26 10:59:51 1999] * diff --git a/sys/i4b/layer1/i4b_isic_pci.c b/sys/i4b/layer1/i4b_isic_pci.c index f732dd180309..59ef6d77e3b7 100644 --- a/sys/i4b/layer1/i4b_isic_pci.c +++ b/sys/i4b/layer1/i4b_isic_pci.c @@ -27,7 +27,7 @@ * i4b_isic_pci.c - PCI bus interface * ================================== * - * $Id: i4b_isic_pci.c,v 1.14 1999/04/28 04:12:51 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Apr 21 09:57:37 1999] * diff --git a/sys/i4b/layer1/i4b_isic_pcmcia.c b/sys/i4b/layer1/i4b_isic_pcmcia.c index f6ceb5d2dab2..bf32211afab6 100644 --- a/sys/i4b/layer1/i4b_isic_pcmcia.c +++ b/sys/i4b/layer1/i4b_isic_pcmcia.c @@ -35,7 +35,7 @@ * i4b_isic_pcmcia.c - i4b FreeBSD PCMCIA support * ---------------------------------------------- * - * $Id: i4b_isic_pcmcia.c,v 1.9 1999/04/27 09:49:49 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Apr 26 10:52:57 1999] * diff --git a/sys/i4b/layer1/i4b_isic_pnp.c b/sys/i4b/layer1/i4b_isic_pnp.c index 0e534eb58ff6..e83061a7eb42 100644 --- a/sys/i4b/layer1/i4b_isic_pnp.c +++ b/sys/i4b/layer1/i4b_isic_pnp.c @@ -37,7 +37,7 @@ * i4b_isic_pnp.c - i4b pnp support * -------------------------------- * - * $Id: i4b_isic_pnp.c,v 1.23 1999/07/05 14:00:04 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 5 15:57:01 1999] * diff --git a/sys/i4b/layer1/i4b_itk_ix1.c b/sys/i4b/layer1/i4b_itk_ix1.c index c46af2b6ca84..9ec4cf3c0e78 100644 --- a/sys/i4b/layer1/i4b_itk_ix1.c +++ b/sys/i4b/layer1/i4b_itk_ix1.c @@ -26,7 +26,7 @@ * i4b_itk_ix1.c - ITK ix1 micro passive card driver for isdn4bsd * -------------------------------------------------------------- * - * $Id: i4b_itk_ix1.c,v 1.3 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:00 1999] * diff --git a/sys/i4b/layer1/i4b_l1.c b/sys/i4b/layer1/i4b_l1.c index 79774bb313c1..847bb4fbb056 100644 --- a/sys/i4b/layer1/i4b_l1.c +++ b/sys/i4b/layer1/i4b_l1.c @@ -27,7 +27,7 @@ * i4b_l1.c - isdn4bsd layer 1 handler * ----------------------------------- * - * $Id: i4b_l1.c,v 1.29 1999/02/14 19:51:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:10 1999] * diff --git a/sys/i4b/layer1/i4b_l1.h b/sys/i4b/layer1/i4b_l1.h index f013bbbea3d3..3bf196f9da82 100644 --- a/sys/i4b/layer1/i4b_l1.h +++ b/sys/i4b/layer1/i4b_l1.h @@ -27,7 +27,7 @@ * i4b_l1.h - isdn4bsd layer 1 header file * --------------------------------------- * - * $Id: i4b_l1.h,v 1.64 1999/07/05 13:46:46 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 5 15:32:02 1999] * diff --git a/sys/i4b/layer1/i4b_l1fsm.c b/sys/i4b/layer1/i4b_l1fsm.c index f4134e405bd9..142cff3d8081 100644 --- a/sys/i4b/layer1/i4b_l1fsm.c +++ b/sys/i4b/layer1/i4b_l1fsm.c @@ -27,7 +27,7 @@ * i4b_l1fsm.c - isdn4bsd layer 1 I.430 state machine * -------------------------------------------------- * - * $Id: i4b_l1fsm.c,v 1.28 1999/02/14 19:51:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:26 1999] * diff --git a/sys/i4b/layer1/i4b_siemens_isurf.c b/sys/i4b/layer1/i4b_siemens_isurf.c index 09e6f471d46c..ed48a66d53e6 100644 --- a/sys/i4b/layer1/i4b_siemens_isurf.c +++ b/sys/i4b/layer1/i4b_siemens_isurf.c @@ -37,7 +37,7 @@ * Siemens I-Surf 2.0 PnP specific routines for isic driver * -------------------------------------------------------- * - * $Id: i4b_siemens_isurf.c,v 1.2 1999/07/05 13:22:12 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon 14 Jun 16:46:27 CEST 1999] * diff --git a/sys/i4b/layer1/i4b_sws.c b/sys/i4b/layer1/i4b_sws.c index 8de924595389..4759762ce769 100644 --- a/sys/i4b/layer1/i4b_sws.c +++ b/sys/i4b/layer1/i4b_sws.c @@ -47,7 +47,7 @@ * EXPERIMENTAL !!!! * ================= * - * $Id: i4b_sws.c,v 1.13 1999/02/14 09:44:59 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:31 1999] * diff --git a/sys/i4b/layer1/i4b_tel_s016.c b/sys/i4b/layer1/i4b_tel_s016.c index e62d6a16457a..3a8424985ff4 100644 --- a/sys/i4b/layer1/i4b_tel_s016.c +++ b/sys/i4b/layer1/i4b_tel_s016.c @@ -37,7 +37,7 @@ * isic - I4B Siemens ISDN Chipset Driver for Teles S0/16 and clones * ================================================================= * - * $Id: i4b_tel_s016.c,v 1.13 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:38 1999] * diff --git a/sys/i4b/layer1/i4b_tel_s0163.c b/sys/i4b/layer1/i4b_tel_s0163.c index 4b6f1b532caa..0d36135ce9e3 100644 --- a/sys/i4b/layer1/i4b_tel_s0163.c +++ b/sys/i4b/layer1/i4b_tel_s0163.c @@ -37,7 +37,7 @@ * isic - I4B Siemens ISDN Chipset Driver for Teles S0/16.3 * ======================================================== * - * $Id: i4b_tel_s0163.c,v 1.19 1999/07/26 09:03:25 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 26 10:59:38 1999] * diff --git a/sys/i4b/layer1/i4b_tel_s08.c b/sys/i4b/layer1/i4b_tel_s08.c index 8f4f284af42b..7fb53e639292 100644 --- a/sys/i4b/layer1/i4b_tel_s08.c +++ b/sys/i4b/layer1/i4b_tel_s08.c @@ -37,7 +37,7 @@ * isic - I4B Siemens ISDN Chipset Driver for Teles S0/8 and clones * ================================================================ * - * $Id: i4b_tel_s08.c,v 1.14 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:28:53 1999] * diff --git a/sys/i4b/layer1/i4b_tel_s0P.c b/sys/i4b/layer1/i4b_tel_s0P.c index f0315b071822..afbc6a5ff5ff 100644 --- a/sys/i4b/layer1/i4b_tel_s0P.c +++ b/sys/i4b/layer1/i4b_tel_s0P.c @@ -38,7 +38,7 @@ * EXPERIMENTAL !!! * ================ * - * $Id: i4b_tel_s0P.c,v 1.14 1999/03/16 11:12:31 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Mar 16 10:39:14 1999] * diff --git a/sys/i4b/layer1/i4b_usr_sti.c b/sys/i4b/layer1/i4b_usr_sti.c index d8b8792c7397..9c58ee816ba4 100644 --- a/sys/i4b/layer1/i4b_usr_sti.c +++ b/sys/i4b/layer1/i4b_usr_sti.c @@ -27,7 +27,7 @@ * i4b_usr_sti.c - USRobotics Sportster ISDN TA intern (Tina-pp) * ------------------------------------------------------------- * - * $Id: i4b_usr_sti.c,v 1.17 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:29:05 1999] * diff --git a/sys/i4b/layer1/isa_isic.c b/sys/i4b/layer1/isa_isic.c index bd6b8c53ba86..c89bb5d2572c 100644 --- a/sys/i4b/layer1/isa_isic.c +++ b/sys/i4b/layer1/isa_isic.c @@ -33,7 +33,7 @@ * isa_isic.c - ISA bus frontend for i4b_isic driver * -------------------------------------------------- * - * $Id: isa_isic.c,v 1.23 1999/07/19 14:40:47 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Jul 19 16:39:02 1999] * diff --git a/sys/i4b/layer1/isapnp_isic.c b/sys/i4b/layer1/isapnp_isic.c index a90299542c94..a72189b73dff 100644 --- a/sys/i4b/layer1/isapnp_isic.c +++ b/sys/i4b/layer1/isapnp_isic.c @@ -33,7 +33,7 @@ * isapnp_isic.c - ISA-P&P bus frontend for i4b_isic driver * -------------------------------------------------------- * - * $Id: isapnp_isic.c,v 1.11 1999/05/03 08:48:25 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun May 2 11:57:08 1999] * diff --git a/sys/i4b/layer1/isic_supio.c b/sys/i4b/layer1/isic_supio.c index 0a80fbb2595a..709dbcee4f03 100644 --- a/sys/i4b/layer1/isic_supio.c +++ b/sys/i4b/layer1/isic_supio.c @@ -38,7 +38,7 @@ * But we attach to the supio, so just see "isic" or "isicII". * ----------------------------------------------------------- * - * $Id: isic_supio.c,v 1.7 1999/03/24 10:09:03 hm Exp $ + * $FreeBSD$ * * last edit-date: [Mon Mar 22 22:49:20 MET 1999] * diff --git a/sys/i4b/layer1/pci_isic.c b/sys/i4b/layer1/pci_isic.c index 7e0a69988996..a339c2a289be 100644 --- a/sys/i4b/layer1/pci_isic.c +++ b/sys/i4b/layer1/pci_isic.c @@ -33,7 +33,7 @@ * pci_isic.c - pcmcia bus frontend for i4b_isic driver * ------------------------------------------------------- * - * $Id: pci_isic.c,v 1.3 1999/03/16 15:21:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 10 07:22:08 1999] * diff --git a/sys/i4b/layer1/pci_isic.h b/sys/i4b/layer1/pci_isic.h index 0ac1918c9dd7..a19025c8aaf0 100644 --- a/sys/i4b/layer1/pci_isic.h +++ b/sys/i4b/layer1/pci_isic.h @@ -33,7 +33,7 @@ * pci_isic.h - pci bus frontend for i4b_isic driver * ------------------------------------------------- * - * $Id: pci_isic.h,v 1.1 1999/05/03 08:52:05 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 10 07:22:08 1999] * diff --git a/sys/i4b/layer1/pcmcia_isic.c b/sys/i4b/layer1/pcmcia_isic.c index cb6ff4ce07d4..d4e0f8ec6c09 100644 --- a/sys/i4b/layer1/pcmcia_isic.c +++ b/sys/i4b/layer1/pcmcia_isic.c @@ -33,7 +33,7 @@ * pcmcia_isic.c - pcmcia bus frontend for i4b_isic driver * ------------------------------------------------------- * - * $Id: pcmcia_isic.c,v 1.5 1999/04/20 12:19:57 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Apr 20 14:09:16 1999] * diff --git a/sys/i4b/layer1/pcmcia_isic.h b/sys/i4b/layer1/pcmcia_isic.h index d5953f01102f..c5426bde0c87 100644 --- a/sys/i4b/layer1/pcmcia_isic.h +++ b/sys/i4b/layer1/pcmcia_isic.h @@ -33,7 +33,7 @@ * pcmcia_isic.h - common definitions for pcmcia isic cards * -------------------------------------------------------- * - * $Id: pcmcia_isic.h,v 1.2 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:29:33 1999] * diff --git a/sys/i4b/layer2/i4b_iframe.c b/sys/i4b/layer2/i4b_iframe.c index 3b3686cf4a4c..a043d851340f 100644 --- a/sys/i4b/layer2/i4b_iframe.c +++ b/sys/i4b/layer2/i4b_iframe.c @@ -27,7 +27,7 @@ * i4b_iframe.c - i frame handling routines * ------------------------------------------ * - * $Id: i4b_iframe.c,v 1.20 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 15:52:41 1999] * diff --git a/sys/i4b/layer2/i4b_l2.c b/sys/i4b/layer2/i4b_l2.c index f282dd45c5e2..cee25ab9bbb6 100644 --- a/sys/i4b/layer2/i4b_l2.c +++ b/sys/i4b/layer2/i4b_l2.c @@ -27,7 +27,7 @@ * i4b_l2.c - ISDN layer 2 (Q.921) * ------------------------------- * - * $Id: i4b_l2.c,v 1.27 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:15:39 1999] * diff --git a/sys/i4b/layer2/i4b_l2.h b/sys/i4b/layer2/i4b_l2.h index af0809f0c657..0b838b0fd29d 100644 --- a/sys/i4b/layer2/i4b_l2.h +++ b/sys/i4b/layer2/i4b_l2.h @@ -27,7 +27,7 @@ * i4b_l2.h - ISDN layer 2 (Q.921) definitions * --------------------------------------------- * - * $Id: i4b_l2.h,v 1.18 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 15:51:17 1999] * diff --git a/sys/i4b/layer2/i4b_l2fsm.c b/sys/i4b/layer2/i4b_l2fsm.c index ea046622d5ab..051c5b2a064d 100644 --- a/sys/i4b/layer2/i4b_l2fsm.c +++ b/sys/i4b/layer2/i4b_l2fsm.c @@ -27,7 +27,7 @@ * i4b_l2fsm.c - layer 2 FSM * ------------------------- * - * $Id: i4b_l2fsm.c,v 1.15 1999/03/16 15:29:06 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Mar 16 16:27:12 1999] * diff --git a/sys/i4b/layer2/i4b_l2fsm.h b/sys/i4b/layer2/i4b_l2fsm.h index 00b82d623fa4..ae3f6def3aa5 100644 --- a/sys/i4b/layer2/i4b_l2fsm.h +++ b/sys/i4b/layer2/i4b_l2fsm.h @@ -27,7 +27,7 @@ * i4b_l2fsm.h - layer 2 FSM * ------------------------- * - * $Id: i4b_l2fsm.h,v 1.4 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:31:43 1999] * diff --git a/sys/i4b/layer2/i4b_l2timer.c b/sys/i4b/layer2/i4b_l2timer.c index 7a7db049fdbd..50ace65d6caf 100644 --- a/sys/i4b/layer2/i4b_l2timer.c +++ b/sys/i4b/layer2/i4b_l2timer.c @@ -27,7 +27,7 @@ * i4b_l2timer.c - layer 2 timer handling * -------------------------------------- * - * $Id: i4b_l2timer.c,v 1.15 1999/04/21 07:36:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Apr 21 09:17:58 1999] * diff --git a/sys/i4b/layer2/i4b_lme.c b/sys/i4b/layer2/i4b_lme.c index 8c5059e18d7b..cdfddee41cb1 100644 --- a/sys/i4b/layer2/i4b_lme.c +++ b/sys/i4b/layer2/i4b_lme.c @@ -27,7 +27,7 @@ * i4b_lme.c - layer management entity * ------------------------------------- * - * $Id: i4b_lme.c,v 1.9 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:31:55 1999] * diff --git a/sys/i4b/layer2/i4b_mbuf.c b/sys/i4b/layer2/i4b_mbuf.c index 9da6d40e6178..21b12bb6eb25 100644 --- a/sys/i4b/layer2/i4b_mbuf.c +++ b/sys/i4b/layer2/i4b_mbuf.c @@ -27,7 +27,7 @@ * i4b - mbuf handling support routines * ------------------------------------ * - * $Id: i4b_mbuf.c,v 1.11 1999/02/14 09:45:00 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:32:00 1999] * diff --git a/sys/i4b/layer2/i4b_sframe.c b/sys/i4b/layer2/i4b_sframe.c index 59afdf69dfb1..309d952e36e8 100644 --- a/sys/i4b/layer2/i4b_sframe.c +++ b/sys/i4b/layer2/i4b_sframe.c @@ -27,7 +27,7 @@ * i4b_sframe.c - s frame handling routines * ---------------------------------------- * - * $Id: i4b_sframe.c,v 1.10 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:14:04 1999] * diff --git a/sys/i4b/layer2/i4b_tei.c b/sys/i4b/layer2/i4b_tei.c index b0299186f348..1ca81aa84b5e 100644 --- a/sys/i4b/layer2/i4b_tei.c +++ b/sys/i4b/layer2/i4b_tei.c @@ -27,7 +27,7 @@ * i4b_tei.c - tei handling procedures * ----------------------------------- * - * $Id: i4b_tei.c,v 1.15 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:14:14 1999] * diff --git a/sys/i4b/layer2/i4b_uframe.c b/sys/i4b/layer2/i4b_uframe.c index c27cfb8b256c..127bb303ce36 100644 --- a/sys/i4b/layer2/i4b_uframe.c +++ b/sys/i4b/layer2/i4b_uframe.c @@ -27,7 +27,7 @@ * i4b_uframe.c - routines for handling U-frames * ----------------------------------------------- * - * $Id: i4b_uframe.c,v 1.8 1999/05/28 15:03:32 hm Exp $ + * $FreeBSD$ * * last edit-date: [Fri May 28 16:14:32 1999] * diff --git a/sys/i4b/layer2/i4b_util.c b/sys/i4b/layer2/i4b_util.c index 141bef08e1d5..32666672aff1 100644 --- a/sys/i4b/layer2/i4b_util.c +++ b/sys/i4b/layer2/i4b_util.c @@ -27,7 +27,7 @@ * i4b_util.c - layer 2 utility routines * ------------------------------------- * - * $Id: i4b_util.c,v 1.20 1999/04/15 09:53:55 hm Exp $ + * $FreeBSD$ * * last edit-date: [Thu Apr 15 10:47:52 1999] * diff --git a/sys/i4b/layer3/i4b_l2if.c b/sys/i4b/layer3/i4b_l2if.c index 36ca34c04f0c..f5e3d320e79d 100644 --- a/sys/i4b/layer3/i4b_l2if.c +++ b/sys/i4b/layer3/i4b_l2if.c @@ -27,7 +27,7 @@ * i4b_l2if.c - Layer 3 interface to Layer 2 * ------------------------------------------- * - * $Id: i4b_l2if.c,v 1.16 1999/05/25 10:05:40 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue May 25 11:55:15 1999] * diff --git a/sys/i4b/layer3/i4b_l3.h b/sys/i4b/layer3/i4b_l3.h index 66a40b6e7355..32e6d806b8e9 100644 --- a/sys/i4b/layer3/i4b_l3.h +++ b/sys/i4b/layer3/i4b_l3.h @@ -27,7 +27,7 @@ * i4b_l3.h - layer 3 header file * ------------------------------ * - * $Id: i4b_l3.h,v 1.9 1999/02/14 09:45:01 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:33:19 1999] * diff --git a/sys/i4b/layer3/i4b_l3fsm.c b/sys/i4b/layer3/i4b_l3fsm.c index a022bf8b866f..6bc0e671458e 100644 --- a/sys/i4b/layer3/i4b_l3fsm.c +++ b/sys/i4b/layer3/i4b_l3fsm.c @@ -27,7 +27,7 @@ * i4b_l3fsm.c - layer 3 FSM * ------------------------- * - * $Id: i4b_l3fsm.c,v 1.16 1999/04/21 07:50:31 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Apr 21 09:42:26 1999] * diff --git a/sys/i4b/layer3/i4b_l3fsm.h b/sys/i4b/layer3/i4b_l3fsm.h index a7553d5d3cd7..3b46875e8ae4 100644 --- a/sys/i4b/layer3/i4b_l3fsm.h +++ b/sys/i4b/layer3/i4b_l3fsm.h @@ -27,7 +27,7 @@ * i4b_l3fsm.c - layer 3 FSM * ------------------------- * - * $Id: i4b_l3fsm.h,v 1.6 1999/02/14 09:45:01 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:33:31 1999] * diff --git a/sys/i4b/layer3/i4b_l3timer.c b/sys/i4b/layer3/i4b_l3timer.c index a4a01bef7aa4..70c916d3a0aa 100644 --- a/sys/i4b/layer3/i4b_l3timer.c +++ b/sys/i4b/layer3/i4b_l3timer.c @@ -27,7 +27,7 @@ * i4b_l3timer.c - timer and timeout handling for layer 3 * ------------------------------------------------------ * - * $Id: i4b_l3timer.c,v 1.12 1999/04/21 07:50:31 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Apr 21 09:46:59 1999] * diff --git a/sys/i4b/layer3/i4b_l4if.c b/sys/i4b/layer3/i4b_l4if.c index 46210d66da48..fa6ea162b650 100644 --- a/sys/i4b/layer3/i4b_l4if.c +++ b/sys/i4b/layer3/i4b_l4if.c @@ -27,7 +27,7 @@ * i4b_l4if.c - Layer 3 interface to Layer 4 * ------------------------------------------- * - * $Id: i4b_l4if.c,v 1.19 1999/04/27 14:47:58 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Apr 27 16:46:51 1999] * diff --git a/sys/i4b/layer3/i4b_q931.c b/sys/i4b/layer3/i4b_q931.c index 6e0256587ede..cc6d9040c58c 100644 --- a/sys/i4b/layer3/i4b_q931.c +++ b/sys/i4b/layer3/i4b_q931.c @@ -27,7 +27,7 @@ * i4b_q931.c - Q931 received messages handling * -------------------------------------------- * - * $Id: i4b_q931.c,v 1.21 1999/04/27 10:08:13 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Apr 27 12:04:35 1999] * diff --git a/sys/i4b/layer3/i4b_q931.h b/sys/i4b/layer3/i4b_q931.h index 8c7a8a82dfa5..376d5ffb91ef 100644 --- a/sys/i4b/layer3/i4b_q931.h +++ b/sys/i4b/layer3/i4b_q931.h @@ -27,7 +27,7 @@ * i4b_q931.h - Q931 handling header file * -------------------------------------- * - * $Id: i4b_q931.h,v 1.6 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:33:56 1999] * diff --git a/sys/i4b/layer3/i4b_q932fac.c b/sys/i4b/layer3/i4b_q932fac.c index fc28f9fcbd4b..e180b9d24970 100644 --- a/sys/i4b/layer3/i4b_q932fac.c +++ b/sys/i4b/layer3/i4b_q932fac.c @@ -27,7 +27,7 @@ * i4b_q932fac.c - Q932 facility handling * -------------------------------------- * - * $Id: i4b_q932fac.c,v 1.6 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:34:02 1999] * diff --git a/sys/i4b/layer3/i4b_q932fac.h b/sys/i4b/layer3/i4b_q932fac.h index 7e83fce46f3c..4e745ea4a733 100644 --- a/sys/i4b/layer3/i4b_q932fac.h +++ b/sys/i4b/layer3/i4b_q932fac.h @@ -27,7 +27,7 @@ * i4b_q932fac.h - Q932 facility handling header file * -------------------------------------------------- * - * $Id: i4b_q932fac.h,v 1.6 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:34:08 1999] * diff --git a/sys/i4b/layer4/i4b_i4bdrv.c b/sys/i4b/layer4/i4b_i4bdrv.c index fb2d129a8843..19a2fbaa7b0d 100644 --- a/sys/i4b/layer4/i4b_i4bdrv.c +++ b/sys/i4b/layer4/i4b_i4bdrv.c @@ -27,7 +27,7 @@ * i4b_i4bdrv.c - i4b userland interface driver * -------------------------------------------- * - * $Id: i4b_i4bdrv.c,v 1.7 1999/08/06 14:02:45 hm Exp $ + * $FreeBSD$ * * last edit-date: [Tue Jun 8 19:48:16 1999] * diff --git a/sys/i4b/layer4/i4b_l4.c b/sys/i4b/layer4/i4b_l4.c index 33960856597f..60cf4dc34123 100644 --- a/sys/i4b/layer4/i4b_l4.c +++ b/sys/i4b/layer4/i4b_l4.c @@ -27,7 +27,7 @@ * i4b_l4.c - kernel interface to userland * ----------------------------------------- * - * $Id: i4b_l4.c,v 1.39 1999/04/08 16:37:56 hm Exp $ + * $FreeBSD$ * * last edit-date: [Thu Apr 8 17:31:52 1999] * diff --git a/sys/i4b/layer4/i4b_l4.h b/sys/i4b/layer4/i4b_l4.h index 5d011b416935..0225137d6fee 100644 --- a/sys/i4b/layer4/i4b_l4.h +++ b/sys/i4b/layer4/i4b_l4.h @@ -27,7 +27,7 @@ * i4b_l4.h - kernel interface to userland header file * --------------------------------------------------- * - * $Id: i4b_l4.h,v 1.15 1999/03/18 14:33:41 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Mar 17 16:20:10 1999] * diff --git a/sys/i4b/layer4/i4b_l4mgmt.c b/sys/i4b/layer4/i4b_l4mgmt.c index 6090f297269a..aff1ecaee74e 100644 --- a/sys/i4b/layer4/i4b_l4mgmt.c +++ b/sys/i4b/layer4/i4b_l4mgmt.c @@ -27,7 +27,7 @@ * i4b_l4mgmt.c - layer 4 calldescriptor management utilites * ----------------------------------------------------------- * - * $Id: i4b_l4mgmt.c,v 1.24 1999/02/14 09:45:02 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sun Feb 14 10:35:13 1999] * diff --git a/sys/i4b/layer4/i4b_l4timer.c b/sys/i4b/layer4/i4b_l4timer.c index 02bd758f5be4..fefb25d3f2a9 100644 --- a/sys/i4b/layer4/i4b_l4timer.c +++ b/sys/i4b/layer4/i4b_l4timer.c @@ -27,7 +27,7 @@ * i4b_l4timer.c - timer and timeout handling for layer 4 * -------------------------------------------------------- * - * $Id: i4b_l4timer.c,v 1.13 1999/04/21 07:50:31 hm Exp $ + * $FreeBSD$ * * last edit-date: [Wed Apr 21 09:49:08 1999] * diff --git a/sys/i4b/tina-dd/i4b_tina_dd.c b/sys/i4b/tina-dd/i4b_tina_dd.c index aba50027556d..f6d343f31373 100644 --- a/sys/i4b/tina-dd/i4b_tina_dd.c +++ b/sys/i4b/tina-dd/i4b_tina_dd.c @@ -28,7 +28,7 @@ * i4b_tina_dd.c - i4b Stollman Tina-dd control device driver * ---------------------------------------------------------- * - * $Id: i4b_tina_dd.c,v 1.2 1999/01/12 11:05:03 eivind Exp $ + * $FreeBSD$ * * last edit-date: [Sat Dec 5 18:41:38 1998] * diff --git a/sys/i4b/tina-dd/i4b_tina_ioctl.h b/sys/i4b/tina-dd/i4b_tina_ioctl.h index d51f16d731a4..ec422f0b1df6 100644 --- a/sys/i4b/tina-dd/i4b_tina_ioctl.h +++ b/sys/i4b/tina-dd/i4b_tina_ioctl.h @@ -31,7 +31,7 @@ * i4b_tina_ioctl.h - i4b Stollman Tina-dd ioctl header file * --------------------------------------------------------- * - * $Id: i4b_tina_ioctl.h,v 1.2 1998/12/05 18:06:20 hm Exp $ + * $FreeBSD$ * * last edit-date: [Sat Dec 5 18:41:51 1998] * diff --git a/sys/isa/atkbd_isa.c b/sys/isa/atkbd_isa.c index a8d638121b1d..f686170ec949 100644 --- a/sys/isa/atkbd_isa.c +++ b/sys/isa/atkbd_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbd_isa.c,v 1.4 1999/05/08 21:59:28 dfr Exp $ + * $FreeBSD$ */ #include "atkbd.h" diff --git a/sys/isa/atkbdc_isa.c b/sys/isa/atkbdc_isa.c index 387f9a534153..eae6e14fec84 100644 --- a/sys/isa/atkbdc_isa.c +++ b/sys/isa/atkbdc_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atkbdc_isa.c,v 1.9 1999/06/29 17:35:09 yokota Exp $ + * $FreeBSD$ */ #include "atkbdc.h" diff --git a/sys/isa/atrtc.c b/sys/isa/atrtc.c index 188e20bc0f47..8a3e1c93030c 100644 --- a/sys/isa/atrtc.c +++ b/sys/isa/atrtc.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.142 1999/07/29 01:20:47 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isa/bt_isa.c b/sys/isa/bt_isa.c index 6a45d50a2de5..b51fe8eb9ed8 100644 --- a/sys/isa/bt_isa.c +++ b/sys/isa/bt_isa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_isa.c,v 1.15 1999/06/28 09:19:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isa/fd.c b/sys/isa/fd.c index c2670fdea655..ce2ea33bc405 100644 --- a/sys/isa/fd.c +++ b/sys/isa/fd.c @@ -47,7 +47,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.153 1999/08/23 20:58:59 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/isa/fdc.h b/sys/isa/fdc.h index 83e291f98131..c1a4470514ab 100644 --- a/sys/isa/fdc.h +++ b/sys/isa/fdc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fdc.h,v 1.13 1999/01/15 09:15:27 bde Exp $ + * $FreeBSD$ * */ diff --git a/sys/isa/fdreg.h b/sys/isa/fdreg.h index 7fef8ad098d4..4d01c4121cea 100644 --- a/sys/isa/fdreg.h +++ b/sys/isa/fdreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fdreg.h 7.1 (Berkeley) 5/9/91 - * $Id: fdreg.h,v 1.10 1997/02/22 09:36:11 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isa/ic/esp.h b/sys/isa/ic/esp.h index 6621e6503917..a381ee7d22aa 100644 --- a/sys/isa/ic/esp.h +++ b/sys/isa/ic/esp.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _IC_ESP_H_ diff --git a/sys/isa/ic/nec765.h b/sys/isa/ic/nec765.h index 3a5561888e87..c08b73b7d600 100644 --- a/sys/isa/ic/nec765.h +++ b/sys/isa/ic/nec765.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)nec765.h 7.1 (Berkeley) 5/9/91 - * $Id: nec765.h,v 1.6 1997/02/22 09:38:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isa/ic/ns16550.h b/sys/isa/ic/ns16550.h index ba338886c764..e8fad7da832e 100644 --- a/sys/isa/ic/ns16550.h +++ b/sys/isa/ic/ns16550.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ns16550.h 7.1 (Berkeley) 5/9/91 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c index e1106ca8d265..c16b6632f1a5 100644 --- a/sys/isa/isa_common.c +++ b/sys/isa/isa_common.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa_common.c,v 1.4 1999/07/29 01:02:56 mdodd Exp $ + * $FreeBSD$ */ /* * Modifications for Intel architecture by Garrett A. Wollman. diff --git a/sys/isa/isa_common.h b/sys/isa/isa_common.h index 844799243e2b..c63f1efac862 100644 --- a/sys/isa/isa_common.h +++ b/sys/isa/isa_common.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isa_common.h,v 1.1 1999/05/22 15:18:25 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isa/isa_if.m b/sys/isa/isa_if.m index 72daf4a8768c..051b0dee11aa 100644 --- a/sys/isa/isa_if.m +++ b/sys/isa/isa_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: isa_if.m,v 1.1 1999/05/22 15:18:26 dfr Exp $ +# $FreeBSD$ # INTERFACE isa; diff --git a/sys/isa/isahint.c b/sys/isa/isahint.c index 31323ccfaaa1..9bb333fb93c8 100644 --- a/sys/isa/isahint.c +++ b/sys/isa/isahint.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isahint.c,v 1.3 1999/05/28 09:25:00 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isa/isareg.h b/sys/isa/isareg.h index e15f7cd9875f..a2162cd4dfca 100644 --- a/sys/isa/isareg.h +++ b/sys/isa/isareg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id: isareg.h,v 1.2 1999/01/06 05:49:30 yokota Exp $ + * $FreeBSD$ */ #ifdef PC98 diff --git a/sys/isa/isavar.h b/sys/isa/isavar.h index 2f63e627d99e..2d157aae08b7 100644 --- a/sys/isa/isavar.h +++ b/sys/isa/isavar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: isavar.h,v 1.8 1999/05/28 09:25:02 dfr Exp $ + * $FreeBSD$ */ #ifndef _ISA_ISAVAR_H_ diff --git a/sys/isa/pnp.h b/sys/isa/pnp.h index 049eb7bc5b8a..cc50a1a00b77 100644 --- a/sys/isa/pnp.h +++ b/sys/isa/pnp.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * from: pnp.h,v 1.7 1998/09/13 22:15:44 eivind Exp */ diff --git a/sys/isa/ppc.c b/sys/isa/ppc.c index 073eab558d8f..436caebf84a2 100644 --- a/sys/isa/ppc.c +++ b/sys/isa/ppc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppc.c,v 1.20 1999/02/14 22:02:47 nsouch Exp $ + * $FreeBSD$ * */ #include "ppc.h" diff --git a/sys/isa/ppcreg.h b/sys/isa/ppcreg.h index 3a61ae7675a9..faecb9771ff8 100644 --- a/sys/isa/ppcreg.h +++ b/sys/isa/ppcreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ppcreg.h,v 1.7 1999/01/10 16:41:13 nsouch Exp $ + * $FreeBSD$ * */ #ifndef __PPCREG_H diff --git a/sys/isa/psm.c b/sys/isa/psm.c index e7c82c97dd47..6e861ccdba9c 100644 --- a/sys/isa/psm.c +++ b/sys/isa/psm.c @@ -20,7 +20,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: psm.c,v 1.16 1999/08/22 06:11:52 yokota Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isa/rtc.h b/sys/isa/rtc.h index ea187d9e186e..6f78657db0e1 100644 --- a/sys/isa/rtc.h +++ b/sys/isa/rtc.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)rtc.h 7.1 (Berkeley) 5/12/91 - * $Id: rtc.h,v 1.10 1997/02/22 09:37:03 peter Exp $ + * $FreeBSD$ */ #ifndef _I386_ISA_RTC_H_ diff --git a/sys/isa/sio.c b/sys/isa/sio.c index 7a8c247fe2a8..962074416053 100644 --- a/sys/isa/sio.c +++ b/sys/isa/sio.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sio.c,v 1.255 1999/08/09 11:02:38 phk Exp $ + * $FreeBSD$ * from: @(#)com.c 7.5 (Berkeley) 5/16/91 * from: i386/isa sio.c,v 1.234 */ diff --git a/sys/isa/sioreg.h b/sys/isa/sioreg.h index cb7aa5fbd198..052106525998 100644 --- a/sys/isa/sioreg.h +++ b/sys/isa/sioreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)comreg.h 7.2 (Berkeley) 5/9/91 - * $Id: sioreg.h,v 1.11 1998/09/26 14:00:29 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/isa/syscons_isa.c b/sys/isa/syscons_isa.c index 499a9026ac0f..2f8111dfdccb 100644 --- a/sys/isa/syscons_isa.c +++ b/sys/isa/syscons_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons_isa.c,v 1.6 1999/06/24 09:06:48 yokota Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/isa/vga_isa.c b/sys/isa/vga_isa.c index 813458e3531f..decd080c42dc 100644 --- a/sys/isa/vga_isa.c +++ b/sys/isa/vga_isa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: vga_isa.c,v 1.10 1999/05/30 16:52:49 phk Exp $ + * $FreeBSD$ */ #include "vga.h" diff --git a/sys/isofs/cd9660/TODO b/sys/isofs/cd9660/TODO index cf3fadc5d882..b8d7f3efebb9 100644 --- a/sys/isofs/cd9660/TODO +++ b/sys/isofs/cd9660/TODO @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ 2) should understand Rock Ridge diff --git a/sys/isofs/cd9660/cd9660_bmap.c b/sys/isofs/cd9660/cd9660_bmap.c index e787f83a98cc..e5fcd9ab32b3 100644 --- a/sys/isofs/cd9660/cd9660_bmap.c +++ b/sys/isofs/cd9660/cd9660_bmap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94 - * $Id: cd9660_bmap.c,v 1.6 1997/02/22 09:38:47 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_lookup.c b/sys/isofs/cd9660/cd9660_lookup.c index 971322048310..b9aabbc7e2b8 100644 --- a/sys/isofs/cd9660/cd9660_lookup.c +++ b/sys/isofs/cd9660/cd9660_lookup.c @@ -38,7 +38,7 @@ * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91 * * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_lookup.c,v 1.21 1999/01/27 21:49:54 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index ea22187acb74..d7093fe3fd7f 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_node.c,v 1.27 1999/01/27 21:49:54 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_node.h b/sys/isofs/cd9660/cd9660_node.h index 46e54466fb9a..0409efe2d817 100644 --- a/sys/isofs/cd9660/cd9660_node.h +++ b/sys/isofs/cd9660/cd9660_node.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.h 8.6 (Berkeley) 5/14/95 - * $Id: cd9660_node.h,v 1.17 1998/02/03 21:39:30 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/isofs/cd9660/cd9660_rrip.c b/sys/isofs/cd9660/cd9660_rrip.c index c4ad1d7b19a6..b4f97a98e112 100644 --- a/sys/isofs/cd9660/cd9660_rrip.c +++ b/sys/isofs/cd9660/cd9660_rrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.c 8.6 (Berkeley) 12/5/94 - * $Id: cd9660_rrip.c,v 1.15 1999/05/11 19:54:24 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_rrip.h b/sys/isofs/cd9660/cd9660_rrip.h index cacee390d074..5008abf2a0ac 100644 --- a/sys/isofs/cd9660/cd9660_rrip.h +++ b/sys/isofs/cd9660/cd9660_rrip.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.h 8.2 (Berkeley) 12/5/94 - * $Id: cd9660_rrip.h,v 1.3.2000.1 1996/09/30 12:46:48 dfr Exp $ + * $FreeBSD$ */ typedef struct { diff --git a/sys/isofs/cd9660/cd9660_util.c b/sys/isofs/cd9660/cd9660_util.c index 21d4b9bbc343..2a11dc2f6361 100644 --- a/sys/isofs/cd9660/cd9660_util.c +++ b/sys/isofs/cd9660/cd9660_util.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)cd9660_util.c 8.3 (Berkeley) 12/5/94 - * $Id: cd9660_util.c,v 1.11 1999/04/18 10:58:02 dcs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 59421d07a57f..0ed30ed79da8 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95 - * $Id: cd9660_vfsops.c,v 1.60 1999/08/25 12:24:39 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c index 86cd115b6634..ee2528b2d8cc 100644 --- a/sys/isofs/cd9660/cd9660_vnops.c +++ b/sys/isofs/cd9660/cd9660_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vnops.c 8.19 (Berkeley) 5/27/95 - * $Id: cd9660_vnops.c,v 1.56 1999/05/11 19:54:25 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/isofs/cd9660/iso.h b/sys/isofs/cd9660/iso.h index 5d211555e76a..6a685d2465e9 100644 --- a/sys/isofs/cd9660/iso.h +++ b/sys/isofs/cd9660/iso.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.6 (Berkeley) 5/10/95 - * $Id: iso.h,v 1.16 1997/05/07 13:23:04 joerg Exp $ + * $FreeBSD$ */ #define ISODCL(from, to) (to - from + 1) diff --git a/sys/isofs/cd9660/iso_rrip.h b/sys/isofs/cd9660/iso_rrip.h index 2b256d51eca0..0c06e98825ce 100644 --- a/sys/isofs/cd9660/iso_rrip.h +++ b/sys/isofs/cd9660/iso_rrip.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)iso_rrip.h 8.2 (Berkeley) 1/23/94 - * $Id: iso_rrip.h,v 1.4 1997/02/22 09:38:52 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/kern/bus_if.m b/sys/kern/bus_if.m index 869639f074f1..d701283a7718 100644 --- a/sys/kern/bus_if.m +++ b/sys/kern/bus_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: bus_if.m,v 1.12 1999/07/11 13:42:36 dfr Exp $ +# $FreeBSD$ # INTERFACE bus; diff --git a/sys/kern/device_if.m b/sys/kern/device_if.m index 181c5bfc000b..1d6215bf85c5 100644 --- a/sys/kern/device_if.m +++ b/sys/kern/device_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: device_if.m,v 1.5 1999/05/14 11:22:41 dfr Exp $ +# $FreeBSD$ # INTERFACE device; diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c index df983dec2d2e..0b3cbf5fc203 100644 --- a/sys/kern/imgact_aout.c +++ b/sys/kern/imgact_aout.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: imgact_aout.c,v 1.52 1999/05/17 00:53:36 alc Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/imgact_elf.c b/sys/kern/imgact_elf.c index 59f347c5eacf..d58d2741860b 100644 --- a/sys/kern/imgact_elf.c +++ b/sys/kern/imgact_elf.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_elf.c,v 1.61 1999/07/09 19:10:14 peter Exp $ + * $FreeBSD$ */ #include "opt_rlimit.h" diff --git a/sys/kern/imgact_gzip.c b/sys/kern/imgact_gzip.c index 09e52f17b265..f3c2e6001dff 100644 --- a/sys/kern/imgact_gzip.c +++ b/sys/kern/imgact_gzip.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: imgact_gzip.c,v 1.37 1999/05/09 16:04:09 peter Exp $ + * $FreeBSD$ * * This module handles execution of a.out files which have been run through * "gzip". This saves diskspace, but wastes cpu-cycles and VM. diff --git a/sys/kern/imgact_shell.c b/sys/kern/imgact_shell.c index 4a6e6f7bb21c..38bab6bf214e 100644 --- a/sys/kern/imgact_shell.c +++ b/sys/kern/imgact_shell.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: imgact_shell.c,v 1.18 1999/01/29 22:59:43 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/inflate.c b/sys/kern/inflate.c index 1db9b2c99642..f38e0bf07795 100644 --- a/sys/kern/inflate.c +++ b/sys/kern/inflate.c @@ -7,7 +7,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: inflate.c,v 1.11 1997/10/12 20:23:40 phk Exp $ + * $FreeBSD$ * * */ diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 7791f7f3b9df..7a0e216ac69d 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * @(#)init_main.c 8.9 (Berkeley) 1/21/94 - * $Id: init_main.c,v 1.124 1999/07/01 13:21:36 peter Exp $ + * $FreeBSD$ */ #include "opt_init_path.h" diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c index f76c2e2191b1..3222b1668235 100644 --- a/sys/kern/kern_acct.c +++ b/sys/kern/kern_acct.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_acct.c 8.1 (Berkeley) 6/14/93 - * $Id: kern_acct.c,v 1.20 1999/04/27 11:15:53 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index 18305494b612..4d7b6a94e46c 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_clock.c,v 1.96 1999/07/18 15:07:18 bde Exp $ + * $FreeBSD$ */ #include "opt_ntp.h" diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index 2f865348c8b6..58dc63f944ca 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_conf.c,v 1.59 1999/08/20 20:24:59 julian Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 653259694fb3..7e718a24f3fb 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94 - * $Id: kern_descrip.c,v 1.65 1999/08/04 18:53:44 green Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/kern_environment.c b/sys/kern/kern_environment.c index df235e46e8dd..fb5d71fd075e 100644 --- a/sys/kern/kern_environment.c +++ b/sys/kern/kern_environment.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_environment.c,v 1.5 1999/01/27 21:24:50 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index ef105514faf2..6bb57e09a17c 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.99 1999/04/27 11:15:55 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c index 10a54ac73ee7..50e29b8ccd48 100644 --- a/sys/kern/kern_exit.c +++ b/sys/kern/kern_exit.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_exit.c 8.7 (Berkeley) 2/12/94 - * $Id: kern_exit.c,v 1.81 1999/06/07 20:37:29 msmith Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 633e7e76becc..c02dadf2f94a 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 - * $Id: kern_fork.c,v 1.63 1999/07/03 20:58:44 peter Exp $ + * $FreeBSD$ */ #include "opt_ktrace.h" diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index 22565f73cd67..1e46c79059b3 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: kern_intr.c,v 1.21 1998/11/10 09:16:29 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c index e90a6897164c..16fd0487ecd1 100644 --- a/sys/kern/kern_jail.c +++ b/sys/kern/kern_jail.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: malloc.c,v 1.44 1999/03/28 14:16:05 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/kern/kern_ktrace.c b/sys/kern/kern_ktrace.c index 939888ec5786..19e4a6ad9313 100644 --- a/sys/kern/kern_ktrace.c +++ b/sys/kern/kern_ktrace.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_ktrace.c 8.2 (Berkeley) 9/23/93 - * $Id: kern_ktrace.c,v 1.26 1999/04/28 11:36:55 phk Exp $ + * $FreeBSD$ */ #include "opt_ktrace.h" diff --git a/sys/kern/kern_linker.c b/sys/kern/kern_linker.c index 26c1f6bfab24..8feb119b6285 100644 --- a/sys/kern/kern_linker.c +++ b/sys/kern/kern_linker.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_linker.c,v 1.35 1999/08/20 00:18:07 grog Exp $ + * $FreeBSD$ */ #include "opt_ddb.h" diff --git a/sys/kern/kern_lock.c b/sys/kern/kern_lock.c index 35f6567dabdd..2b2dfeb13c77 100644 --- a/sys/kern/kern_lock.c +++ b/sys/kern/kern_lock.c @@ -38,7 +38,7 @@ * SUCH DAMAGE. * * @(#)kern_lock.c 8.18 (Berkeley) 5/21/95 - * $Id: kern_lock.c,v 1.26 1999/06/26 02:46:00 mckusick Exp $ + * $FreeBSD$ */ #include "opt_lint.h" diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c index 21f38e2562de..27bb5c49f6af 100644 --- a/sys/kern/kern_lockf.c +++ b/sys/kern/kern_lockf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)ufs_lockf.c 8.3 (Berkeley) 1/6/94 - * $Id: kern_lockf.c,v 1.22 1999/05/08 22:46:46 dt Exp $ + * $FreeBSD$ */ #include "opt_debug_lockf.h" diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 4b3a42a4c587..98098ad69059 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94 - * $Id: kern_malloc.c,v 1.56 1999/05/12 11:11:27 bde Exp $ + * $FreeBSD$ */ #include "opt_vm.h" diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c index aa69b24bd5d4..91940022e488 100644 --- a/sys/kern/kern_mib.c +++ b/sys/kern/kern_mib.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 - * $Id: kern_mib.c,v 1.23 1999/08/08 18:42:48 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_module.c b/sys/kern/kern_module.c index 19dd2be31a66..c4e28a5842f1 100644 --- a/sys/kern/kern_module.c +++ b/sys/kern/kern_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_module.c,v 1.18 1999/05/20 00:00:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c index a5a81722d5b3..69130d68e995 100644 --- a/sys/kern/kern_physio.c +++ b/sys/kern/kern_physio.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: kern_physio.c,v 1.37 1999/08/21 06:48:16 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c index a8e35e173a7c..28e1f6d10b0a 100644 --- a/sys/kern/kern_proc.c +++ b/sys/kern/kern_proc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_proc.c 8.7 (Berkeley) 2/14/95 - * $Id: kern_proc.c,v 1.53 1999/07/17 20:29:10 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_prot.c b/sys/kern/kern_prot.c index e4ad6f5c5801..5c2635046a4c 100644 --- a/sys/kern/kern_prot.c +++ b/sys/kern/kern_prot.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_prot.c 8.6 (Berkeley) 1/21/94 - * $Id: kern_prot.c,v 1.46 1999/04/27 12:21:06 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/kern_random.c b/sys/kern/kern_random.c index 4268375a057c..c9c450fc4f02 100644 --- a/sys/kern/kern_random.c +++ b/sys/kern/kern_random.c @@ -1,7 +1,7 @@ /* * random_machdep.c -- A strong random number generator * - * $Id: random_machdep.c,v 1.30 1999/04/21 07:26:28 peter Exp $ + * $FreeBSD$ * * Version 0.95, last modified 18-Oct-95 * diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index 811ccf479b5f..813a978534df 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_resource.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_resource.c,v 1.47 1999/04/27 12:21:07 phk Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/kern_shutdown.c b/sys/kern/kern_shutdown.c index 5583a250c0ed..5cd4f85135d5 100644 --- a/sys/kern/kern_shutdown.c +++ b/sys/kern/kern_shutdown.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_shutdown.c 8.3 (Berkeley) 1/21/94 - * $Id: kern_shutdown.c,v 1.61 1999/08/21 06:24:20 msmith Exp $ + * $FreeBSD$ */ #include "opt_ddb.h" diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index 0b4a89c18ef3..49465fce8ba6 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_sig.c 8.7 (Berkeley) 4/18/94 - * $Id: kern_sig.c,v 1.60 1999/08/16 18:13:38 billf Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c index 73d7d2c8a092..2b32e3d10c70 100644 --- a/sys/kern/kern_subr.c +++ b/sys/kern/kern_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94 - * $Id: kern_subr.c,v 1.28 1999/03/12 03:09:29 julian Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index 17d3a6c63da3..be058daa54a7 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_synch.c 8.9 (Berkeley) 5/19/95 - * $Id: kern_synch.c,v 1.76 1999/03/05 16:38:12 bde Exp $ + * $FreeBSD$ */ #include "opt_ktrace.h" diff --git a/sys/kern/kern_syscalls.c b/sys/kern/kern_syscalls.c index 562ad477b785..3ba15ad4502a 100644 --- a/sys/kern/kern_syscalls.c +++ b/sys/kern/kern_syscalls.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_syscalls.c,v 1.3 1999/01/17 18:58:04 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index c6877f60344c..af6c32aff393 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 - * $Id: kern_sysctl.c,v 1.88 1999/04/28 11:37:00 phk Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index 18305494b612..4d7b6a94e46c 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_clock.c,v 1.96 1999/07/18 15:07:18 bde Exp $ + * $FreeBSD$ */ #include "opt_ntp.h" diff --git a/sys/kern/kern_threads.c b/sys/kern/kern_threads.c index ba5b35d46c5a..3531e2c6d361 100644 --- a/sys/kern/kern_threads.c +++ b/sys/kern/kern_threads.c @@ -46,7 +46,7 @@ * in Germany will I accept domestic beer. This code may or may not work * and I certainly make no claims as to its fitness for *any* purpose. * - * $Id: kern_threads.c,v 1.13 1999/01/28 17:31:59 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c index 880f97221766..032b0385981e 100644 --- a/sys/kern/kern_time.c +++ b/sys/kern/kern_time.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_time.c 8.1 (Berkeley) 6/10/93 - * $Id: kern_time.c,v 1.65 1999/04/27 11:16:07 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index c7d44016f1cf..45bc266c567b 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * From: @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_timeout.c,v 1.56 1999/03/06 04:46:19 wollman Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/kern_xxx.c b/sys/kern/kern_xxx.c index 92b26cee0cea..5009db2585f2 100644 --- a/sys/kern/kern_xxx.c +++ b/sys/kern/kern_xxx.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_xxx.c 8.2 (Berkeley) 11/14/93 - * $Id: kern_xxx.c,v 1.29 1999/04/27 11:16:09 phk Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/link_aout.c b/sys/kern/link_aout.c index e7955ec5d0af..50d1e1c88452 100644 --- a/sys/kern/link_aout.c +++ b/sys/kern/link_aout.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: link_aout.c,v 1.20 1999/05/08 13:03:47 peter Exp $ + * $FreeBSD$ */ #ifndef __alpha__ diff --git a/sys/kern/link_elf.c b/sys/kern/link_elf.c index e30294e89c4e..e481e2cfbbb0 100644 --- a/sys/kern/link_elf.c +++ b/sys/kern/link_elf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: link_elf.c,v 1.17 1999/05/08 13:03:49 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/link_elf_obj.c b/sys/kern/link_elf_obj.c index e30294e89c4e..e481e2cfbbb0 100644 --- a/sys/kern/link_elf_obj.c +++ b/sys/kern/link_elf_obj.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: link_elf.c,v 1.17 1999/05/08 13:03:49 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/makedevops.pl b/sys/kern/makedevops.pl index 6c6ec306d31d..85f6bc5284bc 100644 --- a/sys/kern/makedevops.pl +++ b/sys/kern/makedevops.pl @@ -35,7 +35,7 @@ # From @(#)makedevops.sh 1.1 1998/06/14 13:53:12 dfr Exp $ # From @(#)makedevops.sh ?.? 1998/10/05 # -# $Id: makedevops.pl,v 1.9 1999/08/18 08:39:14 n_hibma Exp $ +# $FreeBSD$ # # Script to produce device front-end sugar. diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index 0cbd2475f9d1..413d2b88f51d 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -1,6 +1,6 @@ #! /bin/sh - # @(#)makesyscalls.sh 8.1 (Berkeley) 6/10/93 -# $Id: makesyscalls.sh,v 1.34 1998/06/09 03:32:05 bde Exp $ +# $FreeBSD$ set -e diff --git a/sys/kern/md5c.c b/sys/kern/md5c.c index d6175ee11367..c4e3791f5342 100644 --- a/sys/kern/md5c.c +++ b/sys/kern/md5c.c @@ -22,7 +22,7 @@ * These notices must be retained in any copies of any part of this * documentation and/or software. * - * $Id: md5c.c,v 1.14 1998/05/01 16:40:19 bde Exp $ + * $FreeBSD$ * * This code is the same as the code published by RSA Inc. It has been * edited for clarity and style only. diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c index 3e90dc5a5031..4de4ee940e43 100644 --- a/sys/kern/subr_autoconf.c +++ b/sys/kern/subr_autoconf.c @@ -41,7 +41,7 @@ * * @(#)subr_autoconf.c 8.1 (Berkeley) 6/10/93 * - * $Id: subr_autoconf.c,v 1.10 1999/04/17 09:12:35 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_blist.c b/sys/kern/subr_blist.c index 79dc27c22a71..080bec794813 100644 --- a/sys/kern/subr_blist.c +++ b/sys/kern/subr_blist.c @@ -60,7 +60,7 @@ * * This code can be compiled stand-alone for debugging. * - * $Id$ + * $FreeBSD$ */ #ifdef KERNEL diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 27e280e6a300..d03e65685c49 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_bus.c,v 1.38 1999/08/14 13:32:25 n_hibma Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index b1e5edaa5c37..a7d1daf79e8e 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: tty_subr.c,v 1.30 1998/07/15 02:32:12 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/subr_devstat.c b/sys/kern/subr_devstat.c index 18c3fcb1efd4..448b869c47c7 100644 --- a/sys/kern/subr_devstat.c +++ b/sys/kern/subr_devstat.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_devstat.c,v 1.10 1999/04/11 02:27:06 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_disklabel.c b/sys/kern/subr_disklabel.c index a46e11ab7b0c..a52efbd9ef57 100644 --- a/sys/kern/subr_disklabel.c +++ b/sys/kern/subr_disklabel.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94 - * $Id: ufs_disksubr.c,v 1.40 1999/06/26 02:46:44 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_diskmbr.c b/sys/kern/subr_diskmbr.c index d6be12a9ddd0..342537904b6e 100644 --- a/sys/kern/subr_diskmbr.c +++ b/sys/kern/subr_diskmbr.c @@ -35,7 +35,7 @@ * * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: diskslice_machdep.c,v 1.35 1999/06/26 02:47:09 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_diskslice.c b/sys/kern/subr_diskslice.c index d72940ec0b30..4d154c91300e 100644 --- a/sys/kern/subr_diskslice.c +++ b/sys/kern/subr_diskslice.c @@ -43,7 +43,7 @@ * from: wd.c,v 1.55 1994/10/22 01:57:12 phk Exp $ * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: subr_diskslice.c,v 1.66 1999/08/14 11:40:43 phk Exp $ + * $FreeBSD$ */ #include "opt_devfs.h" diff --git a/sys/kern/subr_dkbad.c b/sys/kern/subr_dkbad.c index 13cf4e5dc1e2..d09541814fec 100644 --- a/sys/kern/subr_dkbad.c +++ b/sys/kern/subr_dkbad.c @@ -43,7 +43,7 @@ * from: wd.c,v 1.55 1994/10/22 01:57:12 phk Exp $ * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: subr_dkbad.c,v 1.10 1999/06/26 02:46:03 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_eventhandler.c b/sys/kern/subr_eventhandler.c index 2caef177298d..997afa7a5a92 100644 --- a/sys/kern/subr_eventhandler.c +++ b/sys/kern/subr_eventhandler.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_log.c b/sys/kern/subr_log.c index 7272789fc8f5..b08a3f8705a0 100644 --- a/sys/kern/subr_log.c +++ b/sys/kern/subr_log.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_log.c 8.1 (Berkeley) 6/10/93 - * $Id: subr_log.c,v 1.36 1999/05/31 11:27:35 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/subr_module.c b/sys/kern/subr_module.c index 7eb635a13bde..15df73bbf1e1 100644 --- a/sys/kern/subr_module.c +++ b/sys/kern/subr_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_module.c,v 1.3 1998/10/12 09:03:48 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_param.c b/sys/kern/subr_param.c index b9a906281f18..9a0a85f08a0a 100644 --- a/sys/kern/subr_param.c +++ b/sys/kern/subr_param.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)param.c 8.3 (Berkeley) 8/20/94 - * $Id: param.c,v 1.33 1999/04/09 16:28:11 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 932b6e5fd1b7..e8d523e393d8 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 - * $Id: subr_prf.c,v 1.59 1999/08/07 20:13:32 green Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c index bed6aa038ce4..ed9c0d8b77e3 100644 --- a/sys/kern/subr_prof.c +++ b/sys/kern/subr_prof.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_prof.c 8.3 (Berkeley) 9/23/93 - * $Id: subr_prof.c,v 1.28 1998/09/05 14:30:11 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c index 609937eddf32..ed9a633ab761 100644 --- a/sys/kern/subr_rman.c +++ b/sys/kern/subr_rman.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_rman.c,v 1.7 1999/04/16 21:22:39 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/subr_scanf.c b/sys/kern/subr_scanf.c index 8b1f7404c26d..ea3c03df6743 100644 --- a/sys/kern/subr_scanf.c +++ b/sys/kern/subr_scanf.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_scanf.c,v 1.5 1999/02/14 20:58:21 dillon Exp $ + * $FreeBSD$ * From: Id: vfscanf.c,v 1.13 1998/09/25 12:20:27 obrien Exp */ diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 969cd0892495..283ed1701a3c 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.106 1999/07/20 06:52:26 msmith Exp $ + * $FreeBSD$ */ #include "opt_smp.h" diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index e717563e7ed5..5e3ed49ee48a 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.139 1999/06/18 14:32:16 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/subr_xxx.c b/sys/kern/subr_xxx.c index 5339179923e9..e0298f71702c 100644 --- a/sys/kern/subr_xxx.c +++ b/sys/kern/subr_xxx.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_xxx.c 8.1 (Berkeley) 6/10/93 - * $Id: subr_xxx.c,v 1.12 1998/11/08 12:39:02 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c index 2a8104355398..e187c21dea20 100644 --- a/sys/kern/sys_generic.c +++ b/sys/kern/sys_generic.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)sys_generic.c 8.5 (Berkeley) 1/21/94 - * $Id: sys_generic.c,v 1.46 1999/03/27 21:16:33 alc Exp $ + * $FreeBSD$ */ #include "opt_ktrace.h" diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 06b897f69a91..e4f6d506d9e4 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: sys_pipe.c,v 1.52 1999/06/05 03:53:57 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 814db9845c5e..8a40fb4eb339 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sys_process.c,v 1.46 1999/07/01 22:52:40 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/sys_socket.c b/sys/kern/sys_socket.c index 123ff936aaf9..6ad438328dc6 100644 --- a/sys/kern/sys_socket.c +++ b/sys/kern/sys_socket.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)sys_socket.c 8.1 (Berkeley) 6/10/93 - * $Id: sys_socket.c,v 1.24 1999/04/04 21:41:16 dt Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index dc2ca3c25b96..843cc9d135b6 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ - $Id: syscalls.master,v 1.61 1999/08/05 08:18:45 jkh Exp $ + $FreeBSD$ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 ; ; System call name/number master file. diff --git a/sys/kern/sysv_ipc.c b/sys/kern/sysv_ipc.c index 116ae31ec405..4a006add5be3 100644 --- a/sys/kern/sysv_ipc.c +++ b/sys/kern/sysv_ipc.c @@ -1,4 +1,4 @@ -/* $Id: sysv_ipc.c,v 1.10 1999/04/27 11:16:15 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: sysv_ipc.c,v 1.7 1994/06/29 06:33:11 cgd Exp $ */ /* diff --git a/sys/kern/sysv_msg.c b/sys/kern/sysv_msg.c index 4d0e3e7b7461..badbdc498c0f 100644 --- a/sys/kern/sysv_msg.c +++ b/sys/kern/sysv_msg.c @@ -1,4 +1,4 @@ -/* $Id: sysv_msg.c,v 1.21 1999/04/27 11:16:16 phk Exp $ */ +/* $FreeBSD$ */ /* * Implementation of SVID messages diff --git a/sys/kern/sysv_sem.c b/sys/kern/sysv_sem.c index 8a27aa936379..534f75431bb9 100644 --- a/sys/kern/sysv_sem.c +++ b/sys/kern/sysv_sem.c @@ -1,4 +1,4 @@ -/* $Id: sysv_sem.c,v 1.22 1998/12/14 08:34:55 dillon Exp $ */ +/* $FreeBSD$ */ /* * Implementation of SVID semaphores diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 637188786fd6..533502cc5c0a 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -1,4 +1,4 @@ -/* $Id: sysv_shm.c,v 1.41 1999/04/27 12:21:09 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: sysv_shm.c,v 1.23 1994/07/04 23:25:12 glass Exp $ */ /* diff --git a/sys/kern/tty.c b/sys/kern/tty.c index fca46ba78601..ee1b6e76577c 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 - * $Id: tty.c,v 1.120 1999/08/08 19:47:31 phk Exp $ + * $FreeBSD$ */ /*- diff --git a/sys/kern/tty_compat.c b/sys/kern/tty_compat.c index fa2ae5c002ff..c104e223c106 100644 --- a/sys/kern/tty_compat.c +++ b/sys/kern/tty_compat.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_compat.c 8.1 (Berkeley) 6/10/93 - * $Id: tty_compat.c,v 1.27 1998/02/25 06:16:37 bde Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/tty_conf.c b/sys/kern/tty_conf.c index 12f26e0f8f52..43c73be8ac7e 100644 --- a/sys/kern/tty_conf.c +++ b/sys/kern/tty_conf.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty_conf.c 8.4 (Berkeley) 1/21/94 - * $Id: tty_conf.c,v 1.12 1997/12/16 17:40:27 eivind Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/tty_cons.c b/sys/kern/tty_cons.c index 397b56b7941a..4fef6f65cc32 100644 --- a/sys/kern/tty_cons.c +++ b/sys/kern/tty_cons.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)cons.c 7.2 (Berkeley) 5/9/91 - * $Id: tty_cons.c,v 1.73 1999/08/13 10:52:22 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index 47b7df93f24a..a29687c84ddd 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_pty.c 8.4 (Berkeley) 2/20/95 - * $Id: tty_pty.c,v 1.65 1999/08/20 20:25:00 julian Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/tty_snoop.c b/sys/kern/tty_snoop.c index 0e7bf1afd7a8..756368655884 100644 --- a/sys/kern/tty_snoop.c +++ b/sys/kern/tty_snoop.c @@ -12,7 +12,7 @@ * * Snoop stuff. * - * $Id: tty_snoop.c,v 1.40 1999/06/17 23:42:44 gpalmer Exp $ + * $FreeBSD$ */ #include "snp.h" diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c index b1e5edaa5c37..a7d1daf79e8e 100644 --- a/sys/kern/tty_subr.c +++ b/sys/kern/tty_subr.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: tty_subr.c,v 1.30 1998/07/15 02:32:12 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/tty_tb.c b/sys/kern/tty_tb.c index 8f4c84c66383..39b75c2bf387 100644 --- a/sys/kern/tty_tb.c +++ b/sys/kern/tty_tb.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_tb.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include "tb.h" diff --git a/sys/kern/tty_tty.c b/sys/kern/tty_tty.c index 1109c07382f0..1ee95bcaaa90 100644 --- a/sys/kern/tty_tty.c +++ b/sys/kern/tty_tty.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_tty.c 8.2 (Berkeley) 9/23/93 - * $Id: tty_tty.c,v 1.27 1999/05/31 11:27:41 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/uipc_domain.c b/sys/kern/uipc_domain.c index cb6f6efdb748..d4aa88fa8ca7 100644 --- a/sys/kern/uipc_domain.c +++ b/sys/kern/uipc_domain.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_domain.c 8.2 (Berkeley) 10/18/93 - * $Id: uipc_domain.c,v 1.20 1999/01/21 00:26:41 julian Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 92505fb6b8ab..fdf341dc6cc2 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94 - * $Id: uipc_mbuf.c,v 1.40 1999/07/01 13:21:39 peter Exp $ + * $FreeBSD$ */ #include "opt_param.h" diff --git a/sys/kern/uipc_proto.c b/sys/kern/uipc_proto.c index 7d6e3b64bd5b..d114feef1a41 100644 --- a/sys/kern/uipc_proto.c +++ b/sys/kern/uipc_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_proto.c 8.1 (Berkeley) 6/10/93 - * $Id: uipc_proto.c,v 1.18 1999/02/16 10:49:49 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/uipc_sockbuf.c b/sys/kern/uipc_sockbuf.c index 14d73c32741e..f6115a97186e 100644 --- a/sys/kern/uipc_sockbuf.c +++ b/sys/kern/uipc_sockbuf.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket2.c 8.1 (Berkeley) 6/10/93 - * $Id: uipc_socket2.c,v 1.47 1999/06/17 23:54:48 green Exp $ + * $FreeBSD$ */ #include "opt_param.h" diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c index 3bda374aba2e..0cf3c048d793 100644 --- a/sys/kern/uipc_socket.c +++ b/sys/kern/uipc_socket.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket.c 8.3 (Berkeley) 4/15/94 - * $Id: uipc_socket.c,v 1.59 1999/06/04 02:27:02 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c index 14d73c32741e..f6115a97186e 100644 --- a/sys/kern/uipc_socket2.c +++ b/sys/kern/uipc_socket2.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket2.c 8.1 (Berkeley) 6/10/93 - * $Id: uipc_socket2.c,v 1.47 1999/06/17 23:54:48 green Exp $ + * $FreeBSD$ */ #include "opt_param.h" diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c index 5cf6100c53da..05fb328ac9b1 100644 --- a/sys/kern/uipc_syscalls.c +++ b/sys/kern/uipc_syscalls.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)uipc_syscalls.c 8.4 (Berkeley) 2/21/94 - * $Id: uipc_syscalls.c,v 1.55 1999/01/27 21:49:57 dillon Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index 0d749bc06d83..d1c261368885 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94 - * $Id: uipc_usrreq.c,v 1.44 1999/05/10 18:09:39 truckman Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index 7d5fd4fa2f0d..7caf954a1ca3 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -13,7 +13,7 @@ * bad that happens because of using this software isn't the responsibility * of the author. This software is distributed AS-IS. * - * $Id: vfs_aio.c,v 1.56 1999/08/13 10:10:01 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index f23db16e163c..6b037752d8c7 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vfs_bio.c,v 1.225 1999/08/08 18:42:48 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index ac6082f26267..7c7afa3bd0fa 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)vfs_cache.c 8.5 (Berkeley) 3/22/95 - * $Id: vfs_cache.c,v 1.38 1998/09/09 07:41:41 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index f6fc890b3dca..f498b189fc2b 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94 - * $Id: vfs_cluster.c,v 1.86 1999/07/04 00:31:17 mckusick Exp $ + * $FreeBSD$ */ #include "opt_debug_cluster.h" diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index c2c53f73aa7b..87f3e4a7bc93 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94 - * $Id: vfs_conf.c,v 1.30 1999/07/03 08:24:00 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_default.c b/sys/kern/vfs_default.c index 140f2d01f218..f10fcf590d86 100644 --- a/sys/kern/vfs_default.c +++ b/sys/kern/vfs_default.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index dc2502dba2b6..c677e19c3aa0 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.220 1999/08/25 12:24:34 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c index 6b6a687112ae..ae7aeeb4ad7f 100644 --- a/sys/kern/vfs_extattr.c +++ b/sys/kern/vfs_extattr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.132 1999/08/22 16:50:30 jdp Exp $ + * $FreeBSD$ */ /* For 4.3 integer FS ID compatibility */ diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 8ea1226d1e0e..afe642c89cfd 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94 - * $Id: vfs_init.c,v 1.45 1999/03/07 16:06:41 dfr Exp $ + * $FreeBSD$ */ diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c index 7d31e499f3b0..e168ce58c18d 100644 --- a/sys/kern/vfs_lookup.c +++ b/sys/kern/vfs_lookup.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_lookup.c 8.4 (Berkeley) 2/16/94 - * $Id: vfs_lookup.c,v 1.33 1999/01/28 00:57:47 dillon Exp $ + * $FreeBSD$ */ #include "opt_ktrace.h" diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index c2c53f73aa7b..87f3e4a7bc93 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94 - * $Id: vfs_conf.c,v 1.30 1999/07/03 08:24:00 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index dc2502dba2b6..c677e19c3aa0 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.220 1999/08/25 12:24:34 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 6b6a687112ae..ae7aeeb4ad7f 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.132 1999/08/22 16:50:30 jdp Exp $ + * $FreeBSD$ */ /* For 4.3 integer FS ID compatibility */ diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index a91ca18672f8..0a08938ae24b 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94 - * $Id: vfs_vnops.c,v 1.75 1999/08/25 11:44:11 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/kern/vnode_if.pl b/sys/kern/vnode_if.pl index 07e0e91781c5..9c042dbac7d8 100644 --- a/sys/kern/vnode_if.pl +++ b/sys/kern/vnode_if.pl @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 -# $Id: vnode_if.sh,v 1.17 1999/02/28 11:30:00 bde Exp $ +# $FreeBSD$ # # Script to produce VFS front-end sugar. diff --git a/sys/kern/vnode_if.sh b/sys/kern/vnode_if.sh index 07e0e91781c5..9c042dbac7d8 100644 --- a/sys/kern/vnode_if.sh +++ b/sys/kern/vnode_if.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 -# $Id: vnode_if.sh,v 1.17 1999/02/28 11:30:00 bde Exp $ +# $FreeBSD$ # # Script to produce VFS front-end sugar. diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index b60ff4a8492d..bac48ddfdeea 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -31,7 +31,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.src 8.12 (Berkeley) 5/14/95 -# $Id: vnode_if.src,v 1.20 1999/03/27 03:08:07 eivind Exp $ +# $FreeBSD$ # # diff --git a/sys/libkern/adddi3.c b/sys/libkern/adddi3.c index 38b9df95e66b..51793da73f70 100644 --- a/sys/libkern/adddi3.c +++ b/sys/libkern/adddi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/anddi3.c b/sys/libkern/anddi3.c index 9f92718ea670..d278a3619463 100644 --- a/sys/libkern/anddi3.c +++ b/sys/libkern/anddi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/ashldi3.c b/sys/libkern/ashldi3.c index 74fa0fdcdbce..4e8e8d6441b3 100644 --- a/sys/libkern/ashldi3.c +++ b/sys/libkern/ashldi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/ashrdi3.c b/sys/libkern/ashrdi3.c index 7d22f9d77371..031fcc0523b4 100644 --- a/sys/libkern/ashrdi3.c +++ b/sys/libkern/ashrdi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/bcmp.c b/sys/libkern/bcmp.c index cf0e525e0f68..7c09ce539414 100644 --- a/sys/libkern/bcmp.c +++ b/sys/libkern/bcmp.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bcmp.c,v 1.4 1997/02/22 09:39:51 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/cmpdi2.c b/sys/libkern/cmpdi2.c index d9c486bfe044..55198b90d89f 100644 --- a/sys/libkern/cmpdi2.c +++ b/sys/libkern/cmpdi2.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cmpdi2.c,v 1.4 1997/02/22 09:39:52 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/divdi3.c b/sys/libkern/divdi3.c index 73a21b3256cd..b221ce58240c 100644 --- a/sys/libkern/divdi3.c +++ b/sys/libkern/divdi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/ffs.c b/sys/libkern/ffs.c index 74e24502caee..533b8ec483a3 100644 --- a/sys/libkern/ffs.c +++ b/sys/libkern/ffs.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/index.c b/sys/libkern/index.c index c9483e7123b2..63512232fa2f 100644 --- a/sys/libkern/index.c +++ b/sys/libkern/index.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/iordi3.c b/sys/libkern/iordi3.c index 2819cf8e5a0a..8477ac24ea8b 100644 --- a/sys/libkern/iordi3.c +++ b/sys/libkern/iordi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/locc.c b/sys/libkern/locc.c index 9c9b9213a86b..a4510cad9c56 100644 --- a/sys/libkern/locc.c +++ b/sys/libkern/locc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)locc.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/lshldi3.c b/sys/libkern/lshldi3.c index 0aba85e00813..5d20c1d233cf 100644 --- a/sys/libkern/lshldi3.c +++ b/sys/libkern/lshldi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/lshrdi3.c b/sys/libkern/lshrdi3.c index b93de210cec7..6cce84eb658d 100644 --- a/sys/libkern/lshrdi3.c +++ b/sys/libkern/lshrdi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/mcount.c b/sys/libkern/mcount.c index 7eaf3825e57c..ca3c1c4c1209 100644 --- a/sys/libkern/mcount.c +++ b/sys/libkern/mcount.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/moddi3.c b/sys/libkern/moddi3.c index d914dc17be64..c0e51b32fb7a 100644 --- a/sys/libkern/moddi3.c +++ b/sys/libkern/moddi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: moddi3.c,v 1.5 1997/02/22 09:39:56 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/muldi3.c b/sys/libkern/muldi3.c index 82515630e8a1..f17a2474dbdb 100644 --- a/sys/libkern/muldi3.c +++ b/sys/libkern/muldi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/negdi2.c b/sys/libkern/negdi2.c index c4065e218d03..a803bf40e8f7 100644 --- a/sys/libkern/negdi2.c +++ b/sys/libkern/negdi2.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/notdi2.c b/sys/libkern/notdi2.c index f451088c3500..0a1e97e9e4eb 100644 --- a/sys/libkern/notdi2.c +++ b/sys/libkern/notdi2.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/qdivrem.c b/sys/libkern/qdivrem.c index 82a363581a1d..241adeb7a6cb 100644 --- a/sys/libkern/qdivrem.c +++ b/sys/libkern/qdivrem.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: qdivrem.c,v 1.6 1997/02/22 09:39:57 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/libkern/qsort.c b/sys/libkern/qsort.c index 42f5932598a6..407ad6b0e67e 100644 --- a/sys/libkern/qsort.c +++ b/sys/libkern/qsort.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: qsort.c,v 1.8 1998/04/15 17:46:34 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/quad.h b/sys/libkern/quad.h index 0c9c9dd044cb..14f57542f761 100644 --- a/sys/libkern/quad.h +++ b/sys/libkern/quad.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)quad.h 8.1 (Berkeley) 6/4/93 - * $Id: quad.h,v 1.7 1999/05/14 05:05:32 gibbs Exp $ + * $FreeBSD$ */ /* diff --git a/sys/libkern/random.c b/sys/libkern/random.c index 97b4c8e4273b..35ddea1add68 100644 --- a/sys/libkern/random.c +++ b/sys/libkern/random.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)random.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/rindex.c b/sys/libkern/rindex.c index bd661fbeb065..f51abccb84d4 100644 --- a/sys/libkern/rindex.c +++ b/sys/libkern/rindex.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/scanc.c b/sys/libkern/scanc.c index 0233e2c81d62..2a68f583f014 100644 --- a/sys/libkern/scanc.c +++ b/sys/libkern/scanc.c @@ -32,7 +32,7 @@ * * @(#)scanc.c 8.1 (Berkeley) 6/10/93 * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/skpc.c b/sys/libkern/skpc.c index 9348b0e3ece6..8ea07da266a7 100644 --- a/sys/libkern/skpc.c +++ b/sys/libkern/skpc.c @@ -32,7 +32,7 @@ * * @(#)skpc.c 8.1 (Berkeley) 6/10/93 * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strcat.c b/sys/libkern/strcat.c index 707cb145c355..2d9da767828f 100644 --- a/sys/libkern/strcat.c +++ b/sys/libkern/strcat.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strcat.c,v 1.4 1997/02/22 09:40:02 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strcmp.c b/sys/libkern/strcmp.c index 494e21f10848..77c5f66233e9 100644 --- a/sys/libkern/strcmp.c +++ b/sys/libkern/strcmp.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strcmp.c,v 1.5 1997/02/22 09:40:02 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strcpy.c b/sys/libkern/strcpy.c index 93de5b9914e1..cf6bd4ff029b 100644 --- a/sys/libkern/strcpy.c +++ b/sys/libkern/strcpy.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strcpy.c,v 1.5 1997/08/02 14:31:50 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strlen.c b/sys/libkern/strlen.c index 52e0da1bed17..e3e50cbfca29 100644 --- a/sys/libkern/strlen.c +++ b/sys/libkern/strlen.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strlen.c,v 1.4 1997/02/22 09:40:03 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strncmp.c b/sys/libkern/strncmp.c index d089d8920a9e..523a456fe4ef 100644 --- a/sys/libkern/strncmp.c +++ b/sys/libkern/strncmp.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strncmp.c,v 1.5 1997/02/22 09:40:03 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/strncpy.c b/sys/libkern/strncpy.c index 44ebc0ed4e10..2b36d1a19459 100644 --- a/sys/libkern/strncpy.c +++ b/sys/libkern/strncpy.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: strncpy.c,v 1.4 1997/02/22 09:40:04 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/subdi3.c b/sys/libkern/subdi3.c index cb54477a4d45..9f34e6b4e370 100644 --- a/sys/libkern/subdi3.c +++ b/sys/libkern/subdi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/libkern/ucmpdi2.c b/sys/libkern/ucmpdi2.c index 2d23081f6559..5cce1827ed30 100644 --- a/sys/libkern/ucmpdi2.c +++ b/sys/libkern/ucmpdi2.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ucmpdi2.c,v 1.6 1999/05/14 17:39:54 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/libkern/udivdi3.c b/sys/libkern/udivdi3.c index 153c715c693f..0827fbdc826c 100644 --- a/sys/libkern/udivdi3.c +++ b/sys/libkern/udivdi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/umoddi3.c b/sys/libkern/umoddi3.c index b076b0e232ae..30fb30713f3a 100644 --- a/sys/libkern/umoddi3.c +++ b/sys/libkern/umoddi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/libkern/xordi3.c b/sys/libkern/xordi3.c index e49190902a22..b666446f049e 100644 --- a/sys/libkern/xordi3.c +++ b/sys/libkern/xordi3.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include "quad.h" diff --git a/sys/miscfs/deadfs/dead_vnops.c b/sys/miscfs/deadfs/dead_vnops.c index 4e3853ce54c5..f9acbd043587 100644 --- a/sys/miscfs/deadfs/dead_vnops.c +++ b/sys/miscfs/deadfs/dead_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dead_vnops.c 8.1 (Berkeley) 6/10/93 - * $Id: dead_vnops.c,v 1.24 1998/08/23 11:43:29 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/devfs/devfs_tree.c b/sys/miscfs/devfs/devfs_tree.c index c7bfb5680c3d..0c8e434ce6ac 100644 --- a/sys/miscfs/devfs/devfs_tree.c +++ b/sys/miscfs/devfs/devfs_tree.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_tree.c,v 1.62 1999/08/25 22:50:11 julian Exp $ + * $FreeBSD$ */ diff --git a/sys/miscfs/devfs/devfs_vfsops.c b/sys/miscfs/devfs/devfs_vfsops.c index f3611f18d5a8..dbc2f31a37be 100644 --- a/sys/miscfs/devfs/devfs_vfsops.c +++ b/sys/miscfs/devfs/devfs_vfsops.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_vfsops.c,v 1.35 1998/12/07 21:58:30 archie Exp $ + * $FreeBSD$ * */ diff --git a/sys/miscfs/devfs/devfs_vnops.c b/sys/miscfs/devfs/devfs_vnops.c index 5506961ce841..9d6ce1339979 100644 --- a/sys/miscfs/devfs/devfs_vnops.c +++ b/sys/miscfs/devfs/devfs_vnops.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_vnops.c,v 1.78 1999/08/25 02:04:40 julian Exp $ + * $FreeBSD$ */ diff --git a/sys/miscfs/devfs/devfsdefs.h b/sys/miscfs/devfs/devfsdefs.h index ece7f7e3bfcb..7df378ccade8 100644 --- a/sys/miscfs/devfs/devfsdefs.h +++ b/sys/miscfs/devfs/devfsdefs.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfsdefs.h,v 1.18 1998/11/09 07:03:04 peter Exp $ + * $FreeBSD$ */ #ifdef DEVFS_DEBUG #define DBPRINT(A) printf(A) diff --git a/sys/miscfs/fdesc/fdesc.h b/sys/miscfs/fdesc/fdesc.h index bbba54dcfdd8..463e52836918 100644 --- a/sys/miscfs/fdesc/fdesc.h +++ b/sys/miscfs/fdesc/fdesc.h @@ -35,7 +35,7 @@ * * @(#)fdesc.h 8.5 (Berkeley) 1/21/94 * - * $Id: fdesc.h,v 1.5 1997/02/22 09:40:14 peter Exp $ + * $FreeBSD$ */ #ifdef KERNEL diff --git a/sys/miscfs/fdesc/fdesc_vfsops.c b/sys/miscfs/fdesc/fdesc_vfsops.c index 758f3b5abbe6..157454c502ef 100644 --- a/sys/miscfs/fdesc/fdesc_vfsops.c +++ b/sys/miscfs/fdesc/fdesc_vfsops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94 * - * $Id: fdesc_vfsops.c,v 1.17 1999/01/12 11:49:30 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/fdesc/fdesc_vnops.c b/sys/miscfs/fdesc/fdesc_vnops.c index bc0cb5b48b7d..17a38d5be9d6 100644 --- a/sys/miscfs/fdesc/fdesc_vnops.c +++ b/sys/miscfs/fdesc/fdesc_vnops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vnops.c 8.9 (Berkeley) 1/21/94 * - * $Id: fdesc_vnops.c,v 1.42 1999/05/31 11:27:49 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/fifofs/fifo.h b/sys/miscfs/fifofs/fifo.h index ec186d0daccb..e63020752863 100644 --- a/sys/miscfs/fifofs/fifo.h +++ b/sys/miscfs/fifofs/fifo.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo.h 8.6 (Berkeley) 5/21/95 - * $Id: fifo.h,v 1.14 1997/09/14 02:57:51 peter Exp $ + * $FreeBSD$ */ extern vop_t **fifo_vnodeop_p; diff --git a/sys/miscfs/fifofs/fifo_vnops.c b/sys/miscfs/fifofs/fifo_vnops.c index f7e47e1284fb..4a8199a672b5 100644 --- a/sys/miscfs/fifofs/fifo_vnops.c +++ b/sys/miscfs/fifofs/fifo_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo_vnops.c 8.10 (Berkeley) 5/27/95 - * $Id: fifo_vnops.c,v 1.42 1998/02/04 22:32:45 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/kernfs/kernfs.h b/sys/miscfs/kernfs/kernfs.h index 47a80cfc9afd..361d4899bead 100644 --- a/sys/miscfs/kernfs/kernfs.h +++ b/sys/miscfs/kernfs/kernfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs.h 8.6 (Berkeley) 3/29/95 - * $Id: kernfs.h,v 1.9 1998/03/01 22:46:12 msmith Exp $ + * $FreeBSD$ */ #define _PATH_KERNFS "/kern" /* Default mountpoint */ diff --git a/sys/miscfs/kernfs/kernfs_vfsops.c b/sys/miscfs/kernfs/kernfs_vfsops.c index 295b647dea17..522f77d00877 100644 --- a/sys/miscfs/kernfs/kernfs_vfsops.c +++ b/sys/miscfs/kernfs/kernfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs_vfsops.c 8.10 (Berkeley) 5/14/95 - * $Id: kernfs_vfsops.c,v 1.29 1999/08/13 10:29:22 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/kernfs/kernfs_vnops.c b/sys/miscfs/kernfs/kernfs_vnops.c index cf5b8d7bf648..0488709374dd 100644 --- a/sys/miscfs/kernfs/kernfs_vnops.c +++ b/sys/miscfs/kernfs/kernfs_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs_vnops.c 8.15 (Berkeley) 5/21/95 - * $Id: kernfs_vnops.c,v 1.38 1999/01/27 22:42:06 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/nullfs/null.h b/sys/miscfs/nullfs/null.h index 7d46a11cd4ac..f796d18c6706 100644 --- a/sys/miscfs/nullfs/null.h +++ b/sys/miscfs/nullfs/null.h @@ -35,7 +35,7 @@ * * @(#)null.h 8.3 (Berkeley) 8/20/94 * - * $Id: null.h,v 1.7 1997/05/25 04:50:02 peter Exp $ + * $FreeBSD$ */ struct null_args { diff --git a/sys/miscfs/nullfs/null_subr.c b/sys/miscfs/nullfs/null_subr.c index 603f418fb1c3..1504fc84ac0e 100644 --- a/sys/miscfs/nullfs/null_subr.c +++ b/sys/miscfs/nullfs/null_subr.c @@ -35,7 +35,7 @@ * * @(#)null_subr.c 8.7 (Berkeley) 5/14/95 * - * $Id: null_subr.c,v 1.18 1998/07/15 02:32:18 bde Exp $ + * $FreeBSD$ */ #include "opt_debug_nullfs.h" diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c index 4ead5bd50c9f..f6ac5a0f749a 100644 --- a/sys/miscfs/nullfs/null_vfsops.c +++ b/sys/miscfs/nullfs/null_vfsops.c @@ -36,7 +36,7 @@ * @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94 * * @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92 - * $Id: null_vfsops.c,v 1.27 1998/07/30 17:40:45 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/nullfs/null_vnops.c b/sys/miscfs/nullfs/null_vnops.c index 638b9edfa69f..c9019210da55 100644 --- a/sys/miscfs/nullfs/null_vnops.c +++ b/sys/miscfs/nullfs/null_vnops.c @@ -37,11 +37,11 @@ * * Ancestors: * @(#)lofs_vnops.c 1.2 (Berkeley) 6/18/92 - * $Id: null_vnops.c,v 1.33 1999/06/16 23:27:38 mckusick Exp $ + * $FreeBSD$ * ...and... * @(#)null_vnodeops.c 1.20 92/07/07 UCLA Ficus project * - * $Id: null_vnops.c,v 1.33 1999/06/16 23:27:38 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/portal/portal.h b/sys/miscfs/portal/portal.h index d60826e6a169..6e781455d75b 100644 --- a/sys/miscfs/portal/portal.h +++ b/sys/miscfs/portal/portal.h @@ -35,7 +35,7 @@ * * @(#)portal.h 8.4 (Berkeley) 1/21/94 * - * $Id: portal.h,v 1.4 1997/02/22 09:40:24 peter Exp $ + * $FreeBSD$ */ struct portal_args { diff --git a/sys/miscfs/portal/portal_vfsops.c b/sys/miscfs/portal/portal_vfsops.c index 633bf776e10b..d447664171f1 100644 --- a/sys/miscfs/portal/portal_vfsops.c +++ b/sys/miscfs/portal/portal_vfsops.c @@ -35,7 +35,7 @@ * * @(#)portal_vfsops.c 8.11 (Berkeley) 5/14/95 * - * $Id: portal_vfsops.c,v 1.21 1998/05/06 05:29:35 msmith Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/portal/portal_vnops.c b/sys/miscfs/portal/portal_vnops.c index ad96332d4510..f158eadffd07 100644 --- a/sys/miscfs/portal/portal_vnops.c +++ b/sys/miscfs/portal/portal_vnops.c @@ -35,7 +35,7 @@ * * @(#)portal_vnops.c 8.14 (Berkeley) 5/21/95 * - * $Id: portal_vnops.c,v 1.35 1999/01/12 11:49:30 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/procfs/README b/sys/miscfs/procfs/README index 5f1b6cc7229b..f816b321b432 100644 --- a/sys/miscfs/procfs/README +++ b/sys/miscfs/procfs/README @@ -110,4 +110,4 @@ the debugger, the debugger should fork and the child should stop itself "attach". as before, the child will hit a breakpoint on the first instruction in any newly exec'd image. -$Id$ +$FreeBSD$ diff --git a/sys/miscfs/procfs/procfs.h b/sys/miscfs/procfs/procfs.h index f813070e699e..07c6da215a58 100644 --- a/sys/miscfs/procfs/procfs.h +++ b/sys/miscfs/procfs/procfs.h @@ -37,7 +37,7 @@ * @(#)procfs.h 8.9 (Berkeley) 5/14/95 * * From: - * $Id: procfs.h,v 1.26 1999/06/13 20:53:13 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/procfs/procfs_ctl.c b/sys/miscfs/procfs/procfs_ctl.c index 21724e5c294c..4f4d84bf02af 100644 --- a/sys/miscfs/procfs/procfs_ctl.c +++ b/sys/miscfs/procfs/procfs_ctl.c @@ -37,7 +37,7 @@ * @(#)procfs_ctl.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_ctl.c,v 1.16 1997/04/27 21:32:21 alex Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_dbregs.c b/sys/miscfs/procfs/procfs_dbregs.c index 02509e006d78..ce990e983745 100644 --- a/sys/miscfs/procfs/procfs_dbregs.c +++ b/sys/miscfs/procfs/procfs_dbregs.c @@ -40,7 +40,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_fpregs.c b/sys/miscfs/procfs/procfs_fpregs.c index 14c3fd39c04e..b3331e5a726e 100644 --- a/sys/miscfs/procfs/procfs_fpregs.c +++ b/sys/miscfs/procfs/procfs_fpregs.c @@ -37,7 +37,7 @@ * @(#)procfs_fpregs.c 8.2 (Berkeley) 6/15/94 * * From: - * $Id: procfs_fpregs.c,v 1.7 1997/08/02 14:32:11 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_map.c b/sys/miscfs/procfs/procfs_map.c index 47a0ce17c7e7..83d73ab320d3 100644 --- a/sys/miscfs/procfs/procfs_map.c +++ b/sys/miscfs/procfs/procfs_map.c @@ -36,7 +36,7 @@ * * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 * - * $Id: procfs_map.c,v 1.21 1999/02/07 21:48:21 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_mem.c b/sys/miscfs/procfs/procfs_mem.c index 5fe9ef6794d9..35ee564e074b 100644 --- a/sys/miscfs/procfs/procfs_mem.c +++ b/sys/miscfs/procfs/procfs_mem.c @@ -37,7 +37,7 @@ * * @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94 * - * $Id: procfs_mem.c,v 1.36 1999/04/27 11:16:37 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/procfs/procfs_note.c b/sys/miscfs/procfs/procfs_note.c index 8bfde33b640a..273010b32956 100644 --- a/sys/miscfs/procfs/procfs_note.c +++ b/sys/miscfs/procfs/procfs_note.c @@ -36,7 +36,7 @@ * * @(#)procfs_note.c 8.2 (Berkeley) 1/21/94 * - * $Id: procfs_note.c,v 1.4 1997/02/22 09:40:28 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_regs.c b/sys/miscfs/procfs/procfs_regs.c index d215d44a33cf..0edb9ad60639 100644 --- a/sys/miscfs/procfs/procfs_regs.c +++ b/sys/miscfs/procfs/procfs_regs.c @@ -37,7 +37,7 @@ * @(#)procfs_regs.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_regs.c,v 1.7 1997/08/02 14:32:16 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_rlimit.c b/sys/miscfs/procfs/procfs_rlimit.c index 07bcd1061936..5f00aafd072e 100644 --- a/sys/miscfs/procfs/procfs_rlimit.c +++ b/sys/miscfs/procfs/procfs_rlimit.c @@ -36,7 +36,7 @@ * * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94 * - * $Id: procfs_rlimit.c,v 1.2 1999/07/09 17:56:59 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/procfs/procfs_status.c b/sys/miscfs/procfs/procfs_status.c index 2c8cb697ad63..b3ebd1f1983c 100644 --- a/sys/miscfs/procfs/procfs_status.c +++ b/sys/miscfs/procfs/procfs_status.c @@ -37,7 +37,7 @@ * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94 * * From: - * $Id: procfs_status.c,v 1.14 1999/05/22 20:10:26 dt Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_subr.c b/sys/miscfs/procfs/procfs_subr.c index cf313e863856..01e8ae9e014a 100644 --- a/sys/miscfs/procfs/procfs_subr.c +++ b/sys/miscfs/procfs/procfs_subr.c @@ -36,7 +36,7 @@ * * @(#)procfs_subr.c 8.6 (Berkeley) 5/14/95 * - * $Id: procfs_subr.c,v 1.24 1999/04/30 13:04:21 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_type.c b/sys/miscfs/procfs/procfs_type.c index 8f85c548b03f..cb2a45f6a3d6 100644 --- a/sys/miscfs/procfs/procfs_type.c +++ b/sys/miscfs/procfs/procfs_type.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: procfs_type.c,v 1.4 1997/03/24 11:24:42 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index 2c22020e4fc0..0478e386d51c 100644 --- a/sys/miscfs/procfs/procfs_vfsops.c +++ b/sys/miscfs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95 * - * $Id: procfs_vfsops.c,v 1.26 1998/09/07 13:17:01 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/procfs/procfs_vnops.c b/sys/miscfs/procfs/procfs_vnops.c index 9040c5bf4b41..2eb893415eea 100644 --- a/sys/miscfs/procfs/procfs_vnops.c +++ b/sys/miscfs/procfs/procfs_vnops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vnops.c 8.18 (Berkeley) 5/21/95 * - * $Id: procfs_vnops.c,v 1.70 1999/07/09 04:16:00 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/specfs/spec_vnops.c b/sys/miscfs/specfs/spec_vnops.c index ca1835e5cd83..1afc40017da4 100644 --- a/sys/miscfs/specfs/spec_vnops.c +++ b/sys/miscfs/specfs/spec_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95 - * $Id: spec_vnops.c,v 1.98 1999/08/25 00:26:34 julian Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/umapfs/umap.h b/sys/miscfs/umapfs/umap.h index 0c6ca3418245..09963cbe2b65 100644 --- a/sys/miscfs/umapfs/umap.h +++ b/sys/miscfs/umapfs/umap.h @@ -35,7 +35,7 @@ * * @(#)umap.h 8.4 (Berkeley) 8/20/94 * - * $Id: umap.h,v 1.8 1997/02/22 09:40:37 peter Exp $ + * $FreeBSD$ */ #define MAPFILEENTRIES 64 diff --git a/sys/miscfs/umapfs/umap_subr.c b/sys/miscfs/umapfs/umap_subr.c index 4974f03c110c..ed316a944cb1 100644 --- a/sys/miscfs/umapfs/umap_subr.c +++ b/sys/miscfs/umapfs/umap_subr.c @@ -35,7 +35,7 @@ * * @(#)umap_subr.c 8.9 (Berkeley) 5/14/95 * - * $Id: umap_subr.c,v 1.15 1998/11/09 09:21:25 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c index 3acc700a64fc..658a4ceee182 100644 --- a/sys/miscfs/umapfs/umap_vfsops.c +++ b/sys/miscfs/umapfs/umap_vfsops.c @@ -35,7 +35,7 @@ * * @(#)umap_vfsops.c 8.8 (Berkeley) 5/14/95 * - * $Id: umap_vfsops.c,v 1.24 1999/03/12 19:40:39 imp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/umapfs/umap_vnops.c b/sys/miscfs/umapfs/umap_vnops.c index ae47731b9215..0b73ccbb39dc 100644 --- a/sys/miscfs/umapfs/umap_vnops.c +++ b/sys/miscfs/umapfs/umap_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)umap_vnops.c 8.6 (Berkeley) 5/22/95 - * $Id: umap_vnops.c,v 1.27 1999/06/16 23:27:41 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/union/union.h b/sys/miscfs/union/union.h index 6a4aa226203e..1fc5f996cab0 100644 --- a/sys/miscfs/union/union.h +++ b/sys/miscfs/union/union.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union.h 8.9 (Berkeley) 12/10/94 - * $Id: union.h,v 1.12 1998/02/26 03:23:51 kato Exp $ + * $FreeBSD$ */ struct union_args { diff --git a/sys/miscfs/union/union_subr.c b/sys/miscfs/union/union_subr.c index 5ced12f6e322..6334810ae622 100644 --- a/sys/miscfs/union/union_subr.c +++ b/sys/miscfs/union/union_subr.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_subr.c 8.20 (Berkeley) 5/20/95 - * $Id: union_subr.c,v 1.36 1998/12/14 05:00:59 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/miscfs/union/union_vfsops.c b/sys/miscfs/union/union_vfsops.c index db4d4d3b14e8..a02fb9a71f8f 100644 --- a/sys/miscfs/union/union_vfsops.c +++ b/sys/miscfs/union/union_vfsops.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vfsops.c 8.20 (Berkeley) 5/20/95 - * $Id: union_vfsops.c,v 1.30 1998/09/07 13:17:02 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/miscfs/union/union_vnops.c b/sys/miscfs/union/union_vnops.c index 25d2dfd2bf87..145f8ca6f0ad 100644 --- a/sys/miscfs/union/union_vnops.c +++ b/sys/miscfs/union/union_vnops.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vnops.c 8.32 (Berkeley) 6/23/95 - * $Id: union_vnops.c,v 1.61 1999/06/16 23:27:43 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/Makefile b/sys/modules/Makefile index db7bdd1b6685..2f28cb759685 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.72 1999/08/21 17:40:39 wpaul Exp $ +# $FreeBSD$ # XXX present but broken: atapi ip_mroute_mod joy pcic diff --git a/sys/modules/Makefile.inc b/sys/modules/Makefile.inc index 5aa863d3f3b9..2e4c96d251b4 100644 --- a/sys/modules/Makefile.inc +++ b/sys/modules/Makefile.inc @@ -1,3 +1,3 @@ -# $Id$ +# $FreeBSD$ KLDMOD= true diff --git a/sys/modules/atapi/Makefile b/sys/modules/atapi/Makefile index 22b5a7e23774..a145312597c9 100644 --- a/sys/modules/atapi/Makefile +++ b/sys/modules/atapi/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1998/02/25 01:40:54 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/isa KMOD = atapi diff --git a/sys/modules/ax/Makefile b/sys/modules/ax/Makefile index 0d320364369b..49c977f91bff 100644 --- a/sys/modules/ax/Makefile +++ b/sys/modules/ax/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/24 20:55:04 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/bktr/Makefile b/sys/modules/bktr/Makefile index f74deb73799b..cb17db2a800f 100644 --- a/sys/modules/bktr/Makefile +++ b/sys/modules/bktr/Makefile @@ -9,7 +9,7 @@ # Note - as the driver requires contiguous memory, loading the driver once # memory has filled or become fragmented may fail. -# $Id: Makefile,v 1.1 1999/06/12 15:00:19 roger Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/ccd/Makefile b/sys/modules/ccd/Makefile index 93cf3c10dee8..223ad52b8ef5 100644 --- a/sys/modules/ccd/Makefile +++ b/sys/modules/ccd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/02/01 18:12:12 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../dev/ccd KMOD= ccd diff --git a/sys/modules/cd9660/Makefile b/sys/modules/cd9660/Makefile index 9c2dd4ba36d6..757725ac10e7 100644 --- a/sys/modules/cd9660/Makefile +++ b/sys/modules/cd9660/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1998/02/06 23:54:19 eivind Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../isofs/cd9660 KMOD= cd9660 diff --git a/sys/modules/coda/Makefile b/sys/modules/coda/Makefile index f30ec7b464a2..d3ce37ebd1f0 100644 --- a/sys/modules/coda/Makefile +++ b/sys/modules/coda/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1998/10/16 04:30:42 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../coda KMOD= coda diff --git a/sys/modules/coff/Makefile b/sys/modules/coff/Makefile index 759158538e9a..ab7ecd123ad2 100644 --- a/sys/modules/coff/Makefile +++ b/sys/modules/coff/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/10/16 04:30:42 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/ibcs2 KMOD= ibcs2_coff diff --git a/sys/modules/fdesc/Makefile b/sys/modules/fdesc/Makefile index 6052e62e063d..4981b5636dac 100644 --- a/sys/modules/fdesc/Makefile +++ b/sys/modules/fdesc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:47:49 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/fdesc KMOD= fdesc diff --git a/sys/modules/fdescfs/Makefile b/sys/modules/fdescfs/Makefile index 6052e62e063d..4981b5636dac 100644 --- a/sys/modules/fdescfs/Makefile +++ b/sys/modules/fdescfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:47:49 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/fdesc KMOD= fdesc diff --git a/sys/modules/fpu/Makefile b/sys/modules/fpu/Makefile index 680e3c78bcae..66c2ad1ae02a 100644 --- a/sys/modules/fpu/Makefile +++ b/sys/modules/fpu/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/07/20 08:46:27 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/i386 KMOD= fpu diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile index 607f4597af6f..d54f1532b8bd 100644 --- a/sys/modules/fxp/Makefile +++ b/sys/modules/fxp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1999/04/18 13:31:23 dfr Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/gnufpu/Makefile b/sys/modules/gnufpu/Makefile index 2332e4bc11b1..d7bfb676aa6f 100644 --- a/sys/modules/gnufpu/Makefile +++ b/sys/modules/gnufpu/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/08/26 13:49:26 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../gnu/i386/fpemul KMOD= gnufpu diff --git a/sys/modules/ibcs2/Makefile b/sys/modules/ibcs2/Makefile index 9bb8a5b303bf..f9e58255f0bd 100644 --- a/sys/modules/ibcs2/Makefile +++ b/sys/modules/ibcs2/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 1998/11/11 07:04:10 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/ibcs2 KMOD= ibcs2 diff --git a/sys/modules/ibcs2/ibcs2.8 b/sys/modules/ibcs2/ibcs2.8 index 3d21cece9d01..be34bd88ba48 100644 --- a/sys/modules/ibcs2/ibcs2.8 +++ b/sys/modules/ibcs2/ibcs2.8 @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ibcs2.8,v 1.8 1999/04/06 13:57:33 ghelmer Exp $ +.\" $FreeBSD$ .\" .Dd November 27, 1995 .Dt IBCS2 8 diff --git a/sys/modules/ibcs2/ibcs2.sh b/sys/modules/ibcs2/ibcs2.sh index 0fd465fa023e..c8bf2a809c81 100644 --- a/sys/modules/ibcs2/ibcs2.sh +++ b/sys/modules/ibcs2/ibcs2.sh @@ -24,7 +24,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: ibcs2,v 1.7 1997/02/22 12:47:59 peter Exp $ +# $FreeBSD$ PATH=/bin:/sbin:/usr/bin:/usr/sbin; export PATH diff --git a/sys/modules/if_disc/Makefile b/sys/modules/if_disc/Makefile index 65fc09e7ef1b..e5df9a67610e 100644 --- a/sys/modules/if_disc/Makefile +++ b/sys/modules/if_disc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1999/04/28 01:17:58 msmith Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../net KMOD= if_disc diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile index 14eaf4fd7e56..4f429dfab299 100644 --- a/sys/modules/if_ppp/Makefile +++ b/sys/modules/if_ppp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 1999/04/28 01:18:02 msmith Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../net KMOD= if_ppp diff --git a/sys/modules/if_sl/Makefile b/sys/modules/if_sl/Makefile index 96e3964f1ee8..5d177c34b719 100644 --- a/sys/modules/if_sl/Makefile +++ b/sys/modules/if_sl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1999/04/28 01:18:05 msmith Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../net KMOD= if_sl diff --git a/sys/modules/if_tun/Makefile b/sys/modules/if_tun/Makefile index 153a41e3939c..038ef19a37dd 100644 --- a/sys/modules/if_tun/Makefile +++ b/sys/modules/if_tun/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1999/04/28 01:18:08 msmith Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../net KMOD= if_tun diff --git a/sys/modules/ip_mroute_mod/Makefile b/sys/modules/ip_mroute_mod/Makefile index f44df9fe03c8..39412bcd95a6 100644 --- a/sys/modules/ip_mroute_mod/Makefile +++ b/sys/modules/ip_mroute_mod/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:48:12 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../netinet KMOD= ip_mroute diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile index a75c2124f586..963349f86576 100644 --- a/sys/modules/ipfw/Makefile +++ b/sys/modules/ipfw/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1998/10/16 04:30:46 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../netinet KMOD= ipfw diff --git a/sys/modules/joy/Makefile b/sys/modules/joy/Makefile index 335833f31b1d..a54ef87c389f 100644 --- a/sys/modules/joy/Makefile +++ b/sys/modules/joy/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1998/11/11 07:04:10 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/isa KMOD = joy diff --git a/sys/modules/joy/joy.8 b/sys/modules/joy/joy.8 index b88217905eeb..e073e4731a47 100644 --- a/sys/modules/joy/joy.8 +++ b/sys/modules/joy/joy.8 @@ -22,7 +22,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: joy.8,v 1.5 1999/04/06 13:54:18 ghelmer Exp $ +.\" $FreeBSD$ .\" .Dd March 16, 1996 .Dt JOY 8 diff --git a/sys/modules/joy/joy.sh b/sys/modules/joy/joy.sh index 3f165a6aa2a1..48c5482eb12b 100644 --- a/sys/modules/joy/joy.sh +++ b/sys/modules/joy/joy.sh @@ -1,4 +1,4 @@ #!/bin/sh -# $Id: joy,v 1.3 1997/02/22 12:48:17 peter Exp $ +# $FreeBSD$ kldload joy diff --git a/sys/modules/kernfs/Makefile b/sys/modules/kernfs/Makefile index d1c7500349aa..1b29c5244249 100644 --- a/sys/modules/kernfs/Makefile +++ b/sys/modules/kernfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:48:21 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/kernfs KMOD= kernfs diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 72485f0be1b7..0ac294c4c42e 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.25 1999/01/26 21:29:01 julian Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/linux KMOD= linux diff --git a/sys/modules/linux/linux.8 b/sys/modules/linux/linux.8 index df0d4973ad00..13f3f0b31f07 100644 --- a/sys/modules/linux/linux.8 +++ b/sys/modules/linux/linux.8 @@ -22,7 +22,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: linux.8,v 1.6 1999/08/04 18:58:37 nik Exp $ +.\" $FreeBSD$ .\" .Dd January 9, 1997 .Dt LINUX 8 diff --git a/sys/modules/linux/linux.sh b/sys/modules/linux/linux.sh index 8545fbbc47bc..aad1331a274c 100644 --- a/sys/modules/linux/linux.sh +++ b/sys/modules/linux/linux.sh @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: linux,v 1.5 1998/09/07 16:15:59 cracauer Exp $ +# $FreeBSD$ FOUND=`kldstat -v | egrep 'linux(aout|elf)'` diff --git a/sys/modules/mfs/Makefile b/sys/modules/mfs/Makefile index 6fde55f65ac3..a5cbc9e4ba73 100644 --- a/sys/modules/mfs/Makefile +++ b/sys/modules/mfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1998/10/16 04:30:47 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../ufs/mfs KMOD= mfs diff --git a/sys/modules/mii/Makefile b/sys/modules/mii/Makefile index 4e3d5d20563d..4cb73b089691 100644 --- a/sys/modules/mii/Makefile +++ b/sys/modules/mii/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/08/21 17:40:39 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/dev/mii diff --git a/sys/modules/msdos/Makefile b/sys/modules/msdos/Makefile index cc8102277349..777aa2a251b6 100644 --- a/sys/modules/msdos/Makefile +++ b/sys/modules/msdos/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/02/06 23:54:22 eivind Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../msdosfs KMOD= msdos diff --git a/sys/modules/msdosfs/Makefile b/sys/modules/msdosfs/Makefile index cc8102277349..777aa2a251b6 100644 --- a/sys/modules/msdosfs/Makefile +++ b/sys/modules/msdosfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/02/06 23:54:22 eivind Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../msdosfs KMOD= msdos diff --git a/sys/modules/mx/Makefile b/sys/modules/mx/Makefile index ae4ea4f67c77..cad21d2d87c8 100644 --- a/sys/modules/mx/Makefile +++ b/sys/modules/mx/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/24 20:55:05 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/nfs/Makefile b/sys/modules/nfs/Makefile index 719adcd2692a..113d58922c05 100644 --- a/sys/modules/nfs/Makefile +++ b/sys/modules/nfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1998/07/07 02:27:09 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../nfs KMOD= nfs diff --git a/sys/modules/nfsclient/Makefile b/sys/modules/nfsclient/Makefile index 719adcd2692a..113d58922c05 100644 --- a/sys/modules/nfsclient/Makefile +++ b/sys/modules/nfsclient/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1998/07/07 02:27:09 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../nfs KMOD= nfs diff --git a/sys/modules/nfsserver/Makefile b/sys/modules/nfsserver/Makefile index 719adcd2692a..113d58922c05 100644 --- a/sys/modules/nfsserver/Makefile +++ b/sys/modules/nfsserver/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1998/07/07 02:27:09 bde Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../nfs KMOD= nfs diff --git a/sys/modules/ntfs/Makefile b/sys/modules/ntfs/Makefile index 05beab5ac08f..0aea8277177b 100644 --- a/sys/modules/ntfs/Makefile +++ b/sys/modules/ntfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/01/02 01:12:19 semen Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../ntfs KMOD= ntfs diff --git a/sys/modules/nullfs/Makefile b/sys/modules/nullfs/Makefile index 4b1957611a31..3fd3568b8686 100644 --- a/sys/modules/nullfs/Makefile +++ b/sys/modules/nullfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/02/06 23:54:26 eivind Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/nullfs KMOD= null diff --git a/sys/modules/pcic/Makefile b/sys/modules/pcic/Makefile index 550d58922a49..3cf397460710 100644 --- a/sys/modules/pcic/Makefile +++ b/sys/modules/pcic/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/10/16 04:30:48 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../pccard KMOD= pcic diff --git a/sys/modules/pn/Makefile b/sys/modules/pn/Makefile index 839832652fdf..dc567a6ffdac 100644 --- a/sys/modules/pn/Makefile +++ b/sys/modules/pn/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/24 20:55:05 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/portal/Makefile b/sys/modules/portal/Makefile index 0d35dd9c5c88..f6037ff996f5 100644 --- a/sys/modules/portal/Makefile +++ b/sys/modules/portal/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:48:47 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/portal KMOD= portal diff --git a/sys/modules/portalfs/Makefile b/sys/modules/portalfs/Makefile index 0d35dd9c5c88..f6037ff996f5 100644 --- a/sys/modules/portalfs/Makefile +++ b/sys/modules/portalfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:48:47 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/portal KMOD= portal diff --git a/sys/modules/procfs/Makefile b/sys/modules/procfs/Makefile index 1ff51be5dd8c..068c51299563 100644 --- a/sys/modules/procfs/Makefile +++ b/sys/modules/procfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1998/10/16 04:30:48 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/procfs KMOD= procfs diff --git a/sys/modules/sf/Makefile b/sys/modules/sf/Makefile index d2de96eb0f67..0e7509634a32 100644 --- a/sys/modules/sf/Makefile +++ b/sys/modules/sf/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/25 04:32:38 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/sk/Makefile b/sys/modules/sk/Makefile index 3aefa89cd13c..da9f5075fc7a 100644 --- a/sys/modules/sk/Makefile +++ b/sys/modules/sk/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:47:56 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/splash/Makefile b/sys/modules/splash/Makefile index 3d3d48b05bf8..1c634bf4bf98 100644 --- a/sys/modules/splash/Makefile +++ b/sys/modules/splash/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/01/11 03:34:52 yokota Exp $ +# $FreeBSD$ SUBDIR= bmp pcx diff --git a/sys/modules/splash/Makefile.inc b/sys/modules/splash/Makefile.inc index 64212f6bfa21..265f86d1ed55 100644 --- a/sys/modules/splash/Makefile.inc +++ b/sys/modules/splash/Makefile.inc @@ -1,3 +1,3 @@ -# $Id: $ +# $FreeBSD$ .include "../Makefile.inc" diff --git a/sys/modules/splash/bmp/Makefile b/sys/modules/splash/bmp/Makefile index 798e7e428389..af009a282619 100644 --- a/sys/modules/splash/bmp/Makefile +++ b/sys/modules/splash/bmp/Makefile @@ -1,4 +1,4 @@ -# $Id: $ +# $FreeBSD$ KMOD= splash_bmp SRCS= splash_bmp.c diff --git a/sys/modules/splash/bmp/splash_bmp.c b/sys/modules/splash/bmp/splash_bmp.c index 6de5a28274d2..71a53b9c38a4 100644 --- a/sys/modules/splash/bmp/splash_bmp.c +++ b/sys/modules/splash/bmp/splash_bmp.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: splash_bmp.c,v 1.8 1999/06/16 14:04:45 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/splash/pcx/Makefile b/sys/modules/splash/pcx/Makefile index baf064c5b972..a64a61864db2 100644 --- a/sys/modules/splash/pcx/Makefile +++ b/sys/modules/splash/pcx/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ KMOD= splash_pcx SRCS= splash_pcx.c diff --git a/sys/modules/splash/pcx/splash_pcx.c b/sys/modules/splash/pcx/splash_pcx.c index 9b81c3f7ae7d..544e8c795785 100644 --- a/sys/modules/splash/pcx/splash_pcx.c +++ b/sys/modules/splash/pcx/splash_pcx.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: splash_pcx.c,v 1.2 1999/06/22 14:14:06 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/ste/Makefile b/sys/modules/ste/Makefile index 423e2ad353e7..d078a43666df 100644 --- a/sys/modules/ste/Makefile +++ b/sys/modules/ste/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/24 20:55:04 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/streams/Makefile b/sys/modules/streams/Makefile index 8c83443d32b0..029846003497 100644 --- a/sys/modules/streams/Makefile +++ b/sys/modules/streams/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1999/02/01 00:52:21 grog Exp $ +# $FreeBSD$ MAINTAINER = newton@atdot.dotat.org SOURCE= ${.CURDIR}/../../dev/streams diff --git a/sys/modules/svr4/Makefile b/sys/modules/svr4/Makefile index 94a945b6a01c..8d9b050b19d1 100644 --- a/sys/modules/svr4/Makefile +++ b/sys/modules/svr4/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/01/30 06:29:48 newton Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../i386/svr4 ${.CURDIR}/../../svr4 KMOD= svr4 diff --git a/sys/modules/svr4/README b/sys/modules/svr4/README index c8a0aee38db4..0578721e3639 100644 --- a/sys/modules/svr4/README +++ b/sys/modules/svr4/README @@ -35,4 +35,4 @@ things)). Patches will be appreciated (use send-pr). - Mark Newton newton@atdot.dotat.org -$Id$ +$FreeBSD$ diff --git a/sys/modules/svr4/TO-DO b/sys/modules/svr4/TO-DO index ad4d46abbba4..078b80d8943a 100644 --- a/sys/modules/svr4/TO-DO +++ b/sys/modules/svr4/TO-DO @@ -12,4 +12,4 @@ TO-DO list * Make SysV emulator use SysV shared memory support (duh) -$Id$ +$FreeBSD$ diff --git a/sys/modules/svr4/svr4.sh b/sys/modules/svr4/svr4.sh index 6acf6689334a..4cb76777fdec 100644 --- a/sys/modules/svr4/svr4.sh +++ b/sys/modules/svr4/svr4.sh @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: svr4.sh,v 1.1 1999/01/30 06:29:48 newton Exp $ +# $FreeBSD$ STREAMS=`kldstat -v | egrep 'streams'` SVR4=`kldstat -v | egrep 'svr4elf'` diff --git a/sys/modules/syscons/Makefile b/sys/modules/syscons/Makefile index 14c8f2fee176..cbcdc08303a7 100644 --- a/sys/modules/syscons/Makefile +++ b/sys/modules/syscons/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/12/31 13:42:00 des Exp $ +# $FreeBSD$ SUBDIR= blank daemon fade green logo rain snake star warp fire diff --git a/sys/modules/syscons/Makefile.inc b/sys/modules/syscons/Makefile.inc index 60392e0a0bf3..265f86d1ed55 100644 --- a/sys/modules/syscons/Makefile.inc +++ b/sys/modules/syscons/Makefile.inc @@ -1,3 +1,3 @@ -# $Id$ +# $FreeBSD$ .include "../Makefile.inc" diff --git a/sys/modules/syscons/blank/Makefile b/sys/modules/syscons/blank/Makefile index 4f881865a818..e299c924f7a9 100644 --- a/sys/modules/syscons/blank/Makefile +++ b/sys/modules/syscons/blank/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/02/01 17:59:51 bde Exp $ +# $FreeBSD$ KMOD= blank_saver SRCS= blank_saver.c diff --git a/sys/modules/syscons/blank/blank_saver.c b/sys/modules/syscons/blank/blank_saver.c index 2979c0da9442..960acca5a512 100644 --- a/sys/modules/syscons/blank/blank_saver.c +++ b/sys/modules/syscons/blank/blank_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: blank_saver.c,v 1.15 1999/01/11 03:18:44 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/daemon/Makefile b/sys/modules/syscons/daemon/Makefile index 4f0e6a3624e0..ea3407784191 100644 --- a/sys/modules/syscons/daemon/Makefile +++ b/sys/modules/syscons/daemon/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1998/02/01 17:59:52 bde Exp $ +# $FreeBSD$ KMOD= daemon_saver SRCS= daemon_saver.c diff --git a/sys/modules/syscons/daemon/daemon_saver.c b/sys/modules/syscons/daemon/daemon_saver.c index ebedfaa2e8c0..bc03f6446401 100644 --- a/sys/modules/syscons/daemon/daemon_saver.c +++ b/sys/modules/syscons/daemon/daemon_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: daemon_saver.c,v 1.15 1999/02/05 12:40:15 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/fade/Makefile b/sys/modules/syscons/fade/Makefile index d5ac4067ecc2..5fc34ebfe19c 100644 --- a/sys/modules/syscons/fade/Makefile +++ b/sys/modules/syscons/fade/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/02/01 17:59:53 bde Exp $ +# $FreeBSD$ KMOD= fade_saver SRCS= fade_saver.c diff --git a/sys/modules/syscons/fade/fade_saver.c b/sys/modules/syscons/fade/fade_saver.c index 4a44c8519bcc..052fa9225908 100644 --- a/sys/modules/syscons/fade/fade_saver.c +++ b/sys/modules/syscons/fade/fade_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fade_saver.c,v 1.16 1999/01/11 03:18:46 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/fire/fire_saver.c b/sys/modules/syscons/fire/fire_saver.c index db4b80b1a7b0..59c707916160 100644 --- a/sys/modules/syscons/fire/fire_saver.c +++ b/sys/modules/syscons/fire/fire_saver.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fire_saver.c,v 1.4 1999/05/10 15:25:50 des Exp $ + * $FreeBSD$ */ /* diff --git a/sys/modules/syscons/green/Makefile b/sys/modules/syscons/green/Makefile index 9d8d1a3115ce..f62b1f4a2757 100644 --- a/sys/modules/syscons/green/Makefile +++ b/sys/modules/syscons/green/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/02/01 17:59:54 bde Exp $ +# $FreeBSD$ KMOD= green_saver SRCS= green_saver.c diff --git a/sys/modules/syscons/green/green_saver.c b/sys/modules/syscons/green/green_saver.c index 103154be7a8d..d6cfe80da689 100644 --- a/sys/modules/syscons/green/green_saver.c +++ b/sys/modules/syscons/green/green_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: green_saver.c,v 1.15 1999/01/11 03:18:48 yokota Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/logo/Makefile b/sys/modules/syscons/logo/Makefile index 1bccccdbde1a..2a9ede26cce9 100644 --- a/sys/modules/syscons/logo/Makefile +++ b/sys/modules/syscons/logo/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1998/12/28 14:22:57 des Exp $ +# $FreeBSD$ KMOD= logo_saver SRCS= logo_saver.c diff --git a/sys/modules/syscons/logo/logo_saver.c b/sys/modules/syscons/logo/logo_saver.c index 24da9644a17f..2d2c660847ac 100644 --- a/sys/modules/syscons/logo/logo_saver.c +++ b/sys/modules/syscons/logo/logo_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: logo_saver.c,v 1.6 1999/04/12 13:34:57 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/rain/Makefile b/sys/modules/syscons/rain/Makefile index 8b964f34a0fa..ecc5ec332581 100644 --- a/sys/modules/syscons/rain/Makefile +++ b/sys/modules/syscons/rain/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1998/12/27 22:03:09 des Exp $ +# $FreeBSD$ KMOD= rain_saver SRCS= rain_saver.c diff --git a/sys/modules/syscons/rain/rain_saver.c b/sys/modules/syscons/rain/rain_saver.c index 200dc59931f0..6d2ed39e4654 100644 --- a/sys/modules/syscons/rain/rain_saver.c +++ b/sys/modules/syscons/rain/rain_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rain_saver.c,v 1.3 1999/04/12 13:34:57 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/snake/Makefile b/sys/modules/syscons/snake/Makefile index 88a7bfc98722..6dab3edc9ac2 100644 --- a/sys/modules/syscons/snake/Makefile +++ b/sys/modules/syscons/snake/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/02/01 17:59:58 bde Exp $ +# $FreeBSD$ KMOD= snake_saver SRCS= snake_saver.c diff --git a/sys/modules/syscons/snake/snake_saver.c b/sys/modules/syscons/snake/snake_saver.c index 51e1746f5f9d..093e564bef13 100644 --- a/sys/modules/syscons/snake/snake_saver.c +++ b/sys/modules/syscons/snake/snake_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: snake_saver.c,v 1.23 1999/02/05 12:40:15 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/star/Makefile b/sys/modules/syscons/star/Makefile index 02a8456e8dc0..7ae11d782852 100644 --- a/sys/modules/syscons/star/Makefile +++ b/sys/modules/syscons/star/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/02/01 17:59:59 bde Exp $ +# $FreeBSD$ KMOD= star_saver SRCS= star_saver.c diff --git a/sys/modules/syscons/star/star_saver.c b/sys/modules/syscons/star/star_saver.c index 56408dc78cee..645e4fd3c354 100644 --- a/sys/modules/syscons/star/star_saver.c +++ b/sys/modules/syscons/star/star_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: star_saver.c,v 1.20 1999/02/05 12:40:16 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/syscons/warp/Makefile b/sys/modules/syscons/warp/Makefile index 3902ca0eac53..45a3af9ecb23 100644 --- a/sys/modules/syscons/warp/Makefile +++ b/sys/modules/syscons/warp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1998/12/27 22:03:09 des Exp $ +# $FreeBSD$ KMOD= warp_saver SRCS= warp_saver.c diff --git a/sys/modules/syscons/warp/warp_saver.c b/sys/modules/syscons/warp/warp_saver.c index cd6f42b3358b..7e5140720713 100644 --- a/sys/modules/syscons/warp/warp_saver.c +++ b/sys/modules/syscons/warp/warp_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: warp_saver.c,v 1.5 1999/04/12 13:34:58 des Exp $ + * $FreeBSD$ */ #include diff --git a/sys/modules/ti/Makefile b/sys/modules/ti/Makefile index 9fd0b6b0fc37..6f4844d7c6b5 100644 --- a/sys/modules/ti/Makefile +++ b/sys/modules/ti/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:47:58 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/tl/Makefile b/sys/modules/tl/Makefile index 250e268bb0ab..e1f03399e4e9 100644 --- a/sys/modules/tl/Makefile +++ b/sys/modules/tl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1999/08/27 19:45:18 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/umapfs/Makefile b/sys/modules/umapfs/Makefile index 6a1332c12723..28acc62ee646 100644 --- a/sys/modules/umapfs/Makefile +++ b/sys/modules/umapfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:49:25 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/umapfs KMOD= umap diff --git a/sys/modules/union/Makefile b/sys/modules/union/Makefile index defca0bcc7d1..ff0ab8a32539 100644 --- a/sys/modules/union/Makefile +++ b/sys/modules/union/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:49:27 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/union KMOD= union diff --git a/sys/modules/unionfs/Makefile b/sys/modules/unionfs/Makefile index defca0bcc7d1..ff0ab8a32539 100644 --- a/sys/modules/unionfs/Makefile +++ b/sys/modules/unionfs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:49:27 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/union KMOD= union diff --git a/sys/modules/vesa/Makefile b/sys/modules/vesa/Makefile index ab9be45aa612..f38483fb54c7 100644 --- a/sys/modules/vesa/Makefile +++ b/sys/modules/vesa/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1999/01/11 03:18:56 yokota Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../dev/syscons ${.CURDIR}/../../i386/isa KMOD = vesa diff --git a/sys/modules/vinum/Makefile b/sys/modules/vinum/Makefile index f8cb0bbcf23d..b717bbc2b7f1 100644 --- a/sys/modules/vinum/Makefile +++ b/sys/modules/vinum/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile.vinum,v 1.2 1999/02/11 05:19:49 grog Exp grog $ +# $FreeBSD$ MAINTAINER = grog@FreeBSD.org SOURCE= ${.CURDIR}/../../dev/vinum diff --git a/sys/modules/vn/Makefile b/sys/modules/vn/Makefile index 2f7407b470f1..929969d0cba7 100644 --- a/sys/modules/vn/Makefile +++ b/sys/modules/vn/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/01/21 17:18:34 peter Exp $ +# $FreeBSD$ .PATH: ${.CURDIR}/../../dev/vn KMOD= vn diff --git a/sys/modules/vr/Makefile b/sys/modules/vr/Makefile index 468419ae9d65..cd9257dd6639 100644 --- a/sys/modules/vr/Makefile +++ b/sys/modules/vr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:48:01 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/wb/Makefile b/sys/modules/wb/Makefile index 862449c77861..0b8f4de8b80d 100644 --- a/sys/modules/wb/Makefile +++ b/sys/modules/wb/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:48:01 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/modules/xl/Makefile b/sys/modules/xl/Makefile index 544cc4814948..6a5b533c1fcf 100644 --- a/sys/modules/xl/Makefile +++ b/sys/modules/xl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:48:01 wpaul Exp $ +# $FreeBSD$ S = ${.CURDIR}/../.. .PATH: $S/pci diff --git a/sys/msdosfs/bootsect.h b/sys/msdosfs/bootsect.h index 11b93371a534..666c0f8f41b1 100644 --- a/sys/msdosfs/bootsect.h +++ b/sys/msdosfs/bootsect.h @@ -1,4 +1,4 @@ -/* $Id: bootsect.h,v 1.5 1997/02/22 09:40:43 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: bootsect.h,v 1.9 1997/11/17 15:36:17 ws Exp $ */ /* diff --git a/sys/msdosfs/bpb.h b/sys/msdosfs/bpb.h index bc00a758de51..88b9eefb859a 100644 --- a/sys/msdosfs/bpb.h +++ b/sys/msdosfs/bpb.h @@ -1,4 +1,4 @@ -/* $Id: bpb.h,v 1.5 1997/02/22 09:40:44 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: bpb.h,v 1.7 1997/11/17 15:36:24 ws Exp $ */ /* diff --git a/sys/msdosfs/denode.h b/sys/msdosfs/denode.h index ba2ef8c65dab..49eac87a2075 100644 --- a/sys/msdosfs/denode.h +++ b/sys/msdosfs/denode.h @@ -1,4 +1,4 @@ -/* $Id: denode.h,v 1.17 1998/11/21 00:20:24 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: denode.h,v 1.25 1997/11/17 15:36:28 ws Exp $ */ /*- diff --git a/sys/msdosfs/direntry.h b/sys/msdosfs/direntry.h index 796fe78131c8..3225b78b8936 100644 --- a/sys/msdosfs/direntry.h +++ b/sys/msdosfs/direntry.h @@ -1,4 +1,4 @@ -/* $Id: direntry.h,v 1.12 1998/02/26 06:45:42 msmith Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: direntry.h,v 1.14 1997/11/17 15:36:32 ws Exp $ */ /*- diff --git a/sys/msdosfs/fat.h b/sys/msdosfs/fat.h index 74b05e2cf78d..9f20cbae4199 100644 --- a/sys/msdosfs/fat.h +++ b/sys/msdosfs/fat.h @@ -1,4 +1,4 @@ -/* $Id: fat.h,v 1.6 1997/02/22 09:40:45 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: fat.h,v 1.12 1997/11/17 15:36:36 ws Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_conv.c b/sys/msdosfs/msdosfs_conv.c index 2c792ebf89bb..8c43f93c0adc 100644 --- a/sys/msdosfs/msdosfs_conv.c +++ b/sys/msdosfs/msdosfs_conv.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_conv.c,v 1.27 1998/05/17 21:18:08 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_conv.c,v 1.25 1997/11/17 15:36:40 ws Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_denode.c b/sys/msdosfs/msdosfs_denode.c index 3c6f9d9179fc..d864ddb5cea9 100644 --- a/sys/msdosfs/msdosfs_denode.c +++ b/sys/msdosfs/msdosfs_denode.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_denode.c,v 1.44 1999/01/02 11:34:56 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_denode.c,v 1.28 1998/02/10 14:10:00 mrg Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_fat.c b/sys/msdosfs/msdosfs_fat.c index 1ec29db1d9c0..fae002774668 100644 --- a/sys/msdosfs/msdosfs_fat.c +++ b/sys/msdosfs/msdosfs_fat.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_fat.c,v 1.20 1998/04/06 11:39:04 phk Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_fat.c,v 1.28 1997/11/17 15:36:49 ws Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_lookup.c b/sys/msdosfs/msdosfs_lookup.c index d2ad431d7f44..95e8e898ad30 100644 --- a/sys/msdosfs/msdosfs_lookup.c +++ b/sys/msdosfs/msdosfs_lookup.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_lookup.c,v 1.28 1999/01/02 18:52:13 dt Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_lookup.c,v 1.37 1997/11/17 15:36:54 ws Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c index adb5b5a0ebbf..92f00846514d 100644 --- a/sys/msdosfs/msdosfs_vfsops.c +++ b/sys/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.48 1999/08/23 21:07:13 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */ /*- diff --git a/sys/msdosfs/msdosfs_vnops.c b/sys/msdosfs/msdosfs_vnops.c index 3c0a033e8d3f..2407e2e8a720 100644 --- a/sys/msdosfs/msdosfs_vnops.c +++ b/sys/msdosfs/msdosfs_vnops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vnops.c,v 1.87 1999/07/25 04:01:32 bde Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfs_vnops.c,v 1.68 1998/02/10 14:10:04 mrg Exp $ */ /*- diff --git a/sys/msdosfs/msdosfsmount.h b/sys/msdosfs/msdosfsmount.h index 31a2a6756066..6bd6551341f0 100644 --- a/sys/msdosfs/msdosfsmount.h +++ b/sys/msdosfs/msdosfsmount.h @@ -1,4 +1,4 @@ -/* $Id: msdosfsmount.h,v 1.15 1998/02/23 09:39:29 ache Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: msdosfsmount.h,v 1.17 1997/11/17 15:37:07 ws Exp $ */ /*- diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 511ec3e3a06b..0e73b83c6df5 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -37,7 +37,7 @@ * * @(#)bpf.c 8.2 (Berkeley) 3/28/94 * - * $Id: bpf.c,v 1.52 1999/07/06 19:23:10 des Exp $ + * $FreeBSD$ */ #include "bpf.h" diff --git a/sys/net/bpf.h b/sys/net/bpf.h index cc3ed962e7b9..fa5e46cc4844 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -38,7 +38,7 @@ * @(#)bpf.h 8.1 (Berkeley) 6/10/93 * @(#)bpf.h 1.34 (LBL) 6/16/96 * - * $Id: bpf.h,v 1.15 1998/09/15 19:35:37 fenner Exp $ + * $FreeBSD$ */ #ifndef _NET_BPF_H_ diff --git a/sys/net/bpf_compat.h b/sys/net/bpf_compat.h index c09d54c09a75..0936b8490316 100644 --- a/sys/net/bpf_compat.h +++ b/sys/net/bpf_compat.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)bpf_compat.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NET_BPF_COMPAT_H_ diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c index ab2b088e8ccc..bff916348c53 100644 --- a/sys/net/bpf_filter.c +++ b/sys/net/bpf_filter.c @@ -37,7 +37,7 @@ * * @(#)bpf_filter.c 8.1 (Berkeley) 6/10/93 * - * $Id: bpf_filter.c,v 1.13 1999/04/11 02:52:31 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h index 39ac4897915f..d87cc40b2f90 100644 --- a/sys/net/bpfdesc.h +++ b/sys/net/bpfdesc.h @@ -37,7 +37,7 @@ * * @(#)bpfdesc.h 8.1 (Berkeley) 6/10/93 * - * $Id: bpfdesc.h,v 1.11 1998/11/11 10:04:09 truckman Exp $ + * $FreeBSD$ */ #ifndef _NET_BPFDESC_H_ diff --git a/sys/net/bsd_comp.c b/sys/net/bsd_comp.c index fde1f92833dd..d5072cc11b7b 100644 --- a/sys/net/bsd_comp.c +++ b/sys/net/bsd_comp.c @@ -40,7 +40,7 @@ /* * This version is for use with mbufs on BSD-derived systems. * - * $Id: bsd_comp.c,v 1.9 1997/09/02 01:18:31 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/ethernet.h b/sys/net/ethernet.h index c9c03a7c9249..c8b62e0c5724 100644 --- a/sys/net/ethernet.h +++ b/sys/net/ethernet.h @@ -1,7 +1,7 @@ /* * Fundamental constants relating to ethernet. * - * $Id: ethernet.h,v 1.8 1997/02/22 09:40:58 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/net/fddi.h b/sys/net/fddi.h index 336ff4768cd6..fc6acc6c9c8f 100644 --- a/sys/net/fddi.h +++ b/sys/net/fddi.h @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)if_fddi.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_IF_FDDI_H_ diff --git a/sys/net/hostcache.c b/sys/net/hostcache.c index 74b3916ae5d0..0a1d4c00d912 100644 --- a/sys/net/hostcache.c +++ b/sys/net/hostcache.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: hostcache.c,v 1.4 1998/02/04 22:33:02 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/hostcache.h b/sys/net/hostcache.h index 1e1280349261..6ffb9ace5e3a 100644 --- a/sys/net/hostcache.h +++ b/sys/net/hostcache.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: hostcache.h,v 1.1 1997/06/18 01:24:22 wollman Exp $ + * $FreeBSD$ */ #ifndef _NET_HOSTCACHE_H diff --git a/sys/net/if.c b/sys/net/if.c index 1887c91a9c77..b5faac71040a 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if.c 8.3 (Berkeley) 1/4/94 - * $Id: if.c,v 1.73 1999/06/19 18:42:26 phk Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/net/if.h b/sys/net/if.h index 23f6dfcd3ca0..8ceea66b9fc0 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if.h 8.1 (Berkeley) 6/10/93 - * $Id: if.h,v 1.54 1999/06/19 18:42:27 phk Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_H_ diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index e33abaec7e5e..97902a75b945 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_arp.h 8.1 (Berkeley) 6/10/93 - * $Id: if_arp.h,v 1.10 1998/01/10 07:29:10 bde Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_ARP_H_ diff --git a/sys/net/if_disc.c b/sys/net/if_disc.c index c0375a735a63..a1981f74ace8 100644 --- a/sys/net/if_disc.c +++ b/sys/net/if_disc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)if_loop.c 8.1 (Berkeley) 6/10/93 - * $Id: if_disc.c,v 1.21 1998/12/14 01:59:16 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/if_dl.h b/sys/net/if_dl.h index 19a573c8bb9a..aac7c1439dce 100644 --- a/sys/net/if_dl.h +++ b/sys/net/if_dl.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_dl.h 8.1 (Berkeley) 6/10/93 - * $Id: if_dl.h,v 1.6 1997/02/22 09:41:00 peter Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_DL_H_ diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index ce72cbd72b16..489bcb2c3361 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ethersubr.c 8.1 (Berkeley) 6/10/93 - * $Id: if_ethersubr.c,v 1.55 1999/01/31 08:17:16 julian Exp $ + * $FreeBSD$ */ #include "opt_atalk.h" diff --git a/sys/net/if_fddisubr.c b/sys/net/if_fddisubr.c index dbc4be8e9236..c4d65ec4edf1 100644 --- a/sys/net/if_fddisubr.c +++ b/sys/net/if_fddisubr.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * from: if_ethersubr.c,v 1.5 1994/12/13 22:31:45 wollman Exp - * $Id: if_fddisubr.c,v 1.34 1999/01/27 22:42:13 dillon Exp $ + * $FreeBSD$ */ #include "opt_atalk.h" diff --git a/sys/net/if_iso88025subr.c b/sys/net/if_iso88025subr.c index 8df7aa3e0279..495362b5c130 100644 --- a/sys/net/if_iso88025subr.c +++ b/sys/net/if_iso88025subr.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_iso88025subr.c,v 1.2 1999/03/10 10:11:43 julian Exp $ + * $FreeBSD$ * */ diff --git a/sys/net/if_llc.h b/sys/net/if_llc.h index 3cdf6521679c..8bcd63e5646a 100644 --- a/sys/net/if_llc.h +++ b/sys/net/if_llc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_llc.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NET_IF_LLC_H_ diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 47663e829d04..e1607903f3df 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_loop.c 8.1 (Berkeley) 6/10/93 - * $Id: if_loop.c,v 1.40 1999/08/06 13:53:02 brian Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/if_media.c b/sys/net/if_media.c index 50369dac6f58..128b92469758 100644 --- a/sys/net/if_media.c +++ b/sys/net/if_media.c @@ -1,5 +1,5 @@ /* $NetBSD: if_media.c,v 1.1 1997/03/17 02:55:15 thorpej Exp $ */ -/* $Id: if_media.c,v 1.7 1999/04/16 21:22:45 peter Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1997 diff --git a/sys/net/if_media.h b/sys/net/if_media.h index e363485fa2cc..a097ce71a307 100644 --- a/sys/net/if_media.h +++ b/sys/net/if_media.h @@ -1,5 +1,5 @@ /* $NetBSD: if_media.h,v 1.3 1997/03/26 01:19:27 thorpej Exp $ */ -/* $Id: if_media.h,v 1.5 1999/03/07 04:39:25 wpaul Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1997 diff --git a/sys/net/if_mib.c b/sys/net/if_mib.c index b07927359f39..a4489ca01e4e 100644 --- a/sys/net/if_mib.c +++ b/sys/net/if_mib.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_mib.c,v 1.6 1998/12/04 22:54:52 archie Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/if_mib.h b/sys/net/if_mib.h index 94abc47ca66e..6c29389f6876 100644 --- a/sys/net/if_mib.h +++ b/sys/net/if_mib.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _NET_IF_MIB_H diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c index 4e666b385ccc..f781204da1e5 100644 --- a/sys/net/if_ppp.c +++ b/sys/net/if_ppp.c @@ -69,7 +69,7 @@ * Paul Mackerras (paulus@cs.anu.edu.au). */ -/* $Id: if_ppp.c,v 1.62 1999/08/06 13:53:02 brian Exp $ */ +/* $FreeBSD$ */ /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */ /* from NetBSD: if_ppp.c,v 1.15.2.2 1994/07/28 05:17:58 cgd Exp */ diff --git a/sys/net/if_ppp.h b/sys/net/if_ppp.h index d49a5dffc162..713d39a22a30 100644 --- a/sys/net/if_ppp.h +++ b/sys/net/if_ppp.h @@ -16,7 +16,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: if_ppp.h,v 1.12 1997/10/18 00:49:59 peter Exp $ + * $FreeBSD$ */ #ifndef _IF_PPP_H_ diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h index c764daf77728..e4b4fd7cfcc6 100644 --- a/sys/net/if_pppvar.h +++ b/sys/net/if_pppvar.h @@ -39,7 +39,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: if_pppvar.h,v 1.12 1997/10/18 00:46:10 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/if_sl.c b/sys/net/if_sl.c index cce2fa60b1fa..74aad170abe2 100644 --- a/sys/net/if_sl.c +++ b/sys/net/if_sl.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_sl.c 8.6 (Berkeley) 2/1/94 - * $Id: if_sl.c,v 1.75 1999/07/01 22:14:51 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h index db88bfdcd065..06ac4d961524 100644 --- a/sys/net/if_slvar.h +++ b/sys/net/if_slvar.h @@ -32,7 +32,7 @@ * * @(#)if_slvar.h 8.3 (Berkeley) 2/1/94 * - * $Id: if_slvar.h,v 1.14 1997/09/21 22:01:05 gibbs Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_SLVAR_H_ diff --git a/sys/net/if_sppp.h b/sys/net/if_sppp.h index 6c88766fcfd3..5d47287a4f11 100644 --- a/sys/net/if_sppp.h +++ b/sys/net/if_sppp.h @@ -16,7 +16,7 @@ * * From: Version 2.0, Fri Oct 6 20:39:21 MSK 1995 * - * $Id: if_sppp.h,v 1.13 1998/12/27 21:30:44 phk Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_SPPP_H_ diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c index 380f58877b74..1f079908cc6e 100644 --- a/sys/net/if_spppsubr.c +++ b/sys/net/if_spppsubr.c @@ -17,7 +17,7 @@ * * From: Version 2.4, Thu Apr 30 17:17:21 MSD 1997 * - * $Id: if_spppsubr.c,v 1.54 1999/02/23 15:08:44 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/if_tun.h b/sys/net/if_tun.h index 1a1fa6461954..999372bb9207 100644 --- a/sys/net/if_tun.h +++ b/sys/net/if_tun.h @@ -13,7 +13,7 @@ * UCL. This driver is based much more on read/write/select mode of * operation though. * - * $Id: if_tun.h,v 1.13 1998/04/17 22:36:56 des Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_TUN_H_ diff --git a/sys/net/if_tunvar.h b/sys/net/if_tunvar.h index 8a0e9b55d24b..2e9703f47962 100644 --- a/sys/net/if_tunvar.h +++ b/sys/net/if_tunvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_tunvar.h,v 1.4 1999/03/24 21:20:12 des Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_TUNVAR_H_ diff --git a/sys/net/if_types.h b/sys/net/if_types.h index 833ba471c378..ebcbcbfef19f 100644 --- a/sys/net/if_types.h +++ b/sys/net/if_types.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_types.h 8.2 (Berkeley) 4/20/94 - * $Id$ + * $FreeBSD$ */ #ifndef _NET_IF_TYPES_H_ diff --git a/sys/net/if_var.h b/sys/net/if_var.h index 8163f60e2fcc..a598d193973c 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)if.h 8.1 (Berkeley) 6/10/93 - * $Id: if_var.h,v 1.13 1999/05/16 17:09:20 pb Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_VAR_H_ diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c index 3e23fda037c1..dac28c8e520c 100644 --- a/sys/net/if_vlan.c +++ b/sys/net/if_vlan.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_vlan.c,v 1.7 1999/04/07 23:26:43 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/if_vlan_var.h b/sys/net/if_vlan_var.h index 7498cbfecccc..a9679ea0b5ef 100644 --- a/sys/net/if_vlan_var.h +++ b/sys/net/if_vlan_var.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_vlan_var.h,v 1.3 1999/03/15 00:33:02 wpaul Exp $ + * $FreeBSD$ */ #ifndef _NET_IF_VLAN_VAR_H_ diff --git a/sys/net/iso88025.h b/sys/net/iso88025.h index 70ecdc0c016f..ccb16e16836a 100644 --- a/sys/net/iso88025.h +++ b/sys/net/iso88025.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iso88025.h,v 1.10 1999/01/09 19:01:58 lile Exp $ + * $FreeBSD$ * * Information gathered from tokenring@freebsd, /sys/net/ethernet.h and * the Mach token ring driver. diff --git a/sys/net/netisr.h b/sys/net/netisr.h index 65aeb107327a..9ad7f6b2c399 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)netisr.h 8.1 (Berkeley) 6/10/93 - * $Id: netisr.h,v 1.14 1998/06/07 11:52:17 bde Exp $ + * $FreeBSD$ */ #ifndef _NET_NETISR_H_ diff --git a/sys/net/ppp_comp.h b/sys/net/ppp_comp.h index c187deee6920..b777bfc2d3b0 100644 --- a/sys/net/ppp_comp.h +++ b/sys/net/ppp_comp.h @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id: ppp_comp.h,v 1.6 1998/03/22 06:51:55 peter Exp $ + * $FreeBSD$ */ #ifndef _NET_PPP_COMP_H diff --git a/sys/net/ppp_deflate.c b/sys/net/ppp_deflate.c index bc152e83e0cd..fdc0c64fbd23 100644 --- a/sys/net/ppp_deflate.c +++ b/sys/net/ppp_deflate.c @@ -1,4 +1,4 @@ -/* $Id: ppp_deflate.c,v 1.10 1998/06/20 16:28:03 peter Exp $ */ +/* $FreeBSD$ */ /* * ppp_deflate.c - interface the zlib procedures for Deflate compression diff --git a/sys/net/ppp_defs.h b/sys/net/ppp_defs.h index 5dc126daf8bb..ac86be268788 100644 --- a/sys/net/ppp_defs.h +++ b/sys/net/ppp_defs.h @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id$ + * $FreeBSD$ */ #ifndef _PPP_DEFS_H_ diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c index 737c58192edd..78d427e5d85a 100644 --- a/sys/net/ppp_tty.c +++ b/sys/net/ppp_tty.c @@ -70,7 +70,7 @@ * Paul Mackerras (paulus@cs.anu.edu.au). */ -/* $Id: ppp_tty.c,v 1.39 1999/04/27 11:17:07 phk Exp $ */ +/* $FreeBSD$ */ #include "ppp.h" #if NPPP > 0 diff --git a/sys/net/radix.c b/sys/net/radix.c index 30608d849ebb..55887eb61eb9 100644 --- a/sys/net/radix.c +++ b/sys/net/radix.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)radix.c 8.4 (Berkeley) 11/2/94 - * $Id: radix.c,v 1.17 1999/04/29 03:22:16 luoqi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/radix.h b/sys/net/radix.h index cd18f7a12af8..f68f67aaecd5 100644 --- a/sys/net/radix.h +++ b/sys/net/radix.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)radix.h 8.2 (Berkeley) 10/31/94 - * $Id: radix.h,v 1.13 1997/10/12 20:25:13 phk Exp $ + * $FreeBSD$ */ #ifndef _RADIX_H_ diff --git a/sys/net/raw_cb.c b/sys/net/raw_cb.c index 9cbc31eaa380..97dbc102f616 100644 --- a/sys/net/raw_cb.c +++ b/sys/net/raw_cb.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_cb.c 8.1 (Berkeley) 6/10/93 - * $Id: raw_cb.c,v 1.14 1997/10/28 15:58:33 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/raw_cb.h b/sys/net/raw_cb.h index 23849ee3bf19..5184de6f1376 100644 --- a/sys/net/raw_cb.h +++ b/sys/net/raw_cb.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_cb.h 8.1 (Berkeley) 6/10/93 - * $Id: raw_cb.h,v 1.9 1997/04/27 20:00:58 wollman Exp $ + * $FreeBSD$ */ #ifndef _NET_RAW_CB_H_ diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c index 109c94289deb..07b316d18041 100644 --- a/sys/net/raw_usrreq.c +++ b/sys/net/raw_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93 - * $Id: raw_usrreq.c,v 1.16 1997/11/07 08:53:18 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/net/route.c b/sys/net/route.c index b0af484581d3..eddd18afe961 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)route.c 8.2 (Berkeley) 11/15/93 - * $Id: route.c,v 1.51 1999/01/27 22:42:14 dillon Exp $ + * $FreeBSD$ */ #include "opt_inet.h" diff --git a/sys/net/route.h b/sys/net/route.h index d37b3ae8fdb2..a30a0f96e125 100644 --- a/sys/net/route.h +++ b/sys/net/route.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)route.h 8.3 (Berkeley) 4/19/94 - * $Id: route.h,v 1.29 1999/05/06 18:12:56 peter Exp $ + * $FreeBSD$ */ #ifndef _NET_ROUTE_H_ diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index 22c7bb5c6cd1..0c02e78a2659 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)rtsock.c 8.5 (Berkeley) 11/2/94 - * $Id: rtsock.c,v 1.39 1999/04/28 11:37:38 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/net/slcompress.c b/sys/net/slcompress.c index afd6bf6e96be..f878bf55413e 100644 --- a/sys/net/slcompress.c +++ b/sys/net/slcompress.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)slcompress.c 8.2 (Berkeley) 4/16/94 - * $Id: slcompress.c,v 1.11 1997/08/19 14:10:47 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/slcompress.h b/sys/net/slcompress.h index 5c273ab02183..ca7ed031ccfc 100644 --- a/sys/net/slcompress.h +++ b/sys/net/slcompress.h @@ -34,7 +34,7 @@ * * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989: * - Initial distribution. - * $Id: slcompress.h,v 1.12 1997/08/19 14:10:48 peter Exp $ + * $FreeBSD$ */ #ifndef _NET_SLCOMPRESS_H_ diff --git a/sys/net/slip.h b/sys/net/slip.h index e7889e2ec7bd..917ebf0865b4 100644 --- a/sys/net/slip.h +++ b/sys/net/slip.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)slip.h 8.1 (Berkeley) 2/12/94 - * $Id$ + * $FreeBSD$ */ #ifndef _NET_SLIP_H_ diff --git a/sys/net/zlib.c b/sys/net/zlib.c index 687e3801eb9f..64c4ad0eaf6a 100644 --- a/sys/net/zlib.c +++ b/sys/net/zlib.c @@ -10,7 +10,7 @@ * - added inflateIncomp and deflateOutputPending * - allow strm->next_out to be NULL, meaning discard the output * - * $Id: zlib.c,v 1.7 1998/06/20 16:28:04 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/net/zlib.h b/sys/net/zlib.h index b9499cb72549..1f3ee5049f10 100644 --- a/sys/net/zlib.h +++ b/sys/net/zlib.h @@ -1,4 +1,4 @@ -/* $Id: zlib.h,v 1.4 1998/03/21 20:56:16 peter Exp $ */ +/* $FreeBSD$ */ /* * This file is derived from zlib.h and zconf.h from the zlib-1.0.4 diff --git a/sys/netatm/atm.h b/sys/netatm/atm.h index 46dfb8626a8e..1145a9c462f8 100644 --- a/sys/netatm/atm.h +++ b/sys/netatm/atm.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm.h,v 1.8 1998/07/30 22:30:43 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_aal5.c b/sys/netatm/atm_aal5.c index 7d6a22bd792b..2cf70c9e3cad 100644 --- a/sys/netatm/atm_aal5.c +++ b/sys/netatm/atm_aal5.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_aal5.c,v 1.3 1998/10/31 20:06:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -39,7 +39,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_aal5.c,v 1.3 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_cm.c b/sys/netatm/atm_cm.c index d2ab8b5d8ecb..e5bf21120bb8 100644 --- a/sys/netatm/atm_cm.c +++ b/sys/netatm/atm_cm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_cm.c,v 1.4 1999/01/27 22:16:15 dillon Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_cm.c,v 1.4 1999/01/27 22:16:15 dillon Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_cm.h b/sys/netatm/atm_cm.h index 9e000ab9e562..0507caa8fcfa 100644 --- a/sys/netatm/atm_cm.h +++ b/sys/netatm/atm_cm.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_cm.h,v 1.3 1998/03/24 20:41:40 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_device.c b/sys/netatm/atm_device.c index d68134fc03fe..9c645a590dc1 100644 --- a/sys/netatm/atm_device.c +++ b/sys/netatm/atm_device.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_device.c,v 1.3 1998/10/31 20:06:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_device.c,v 1.3 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_if.c b/sys/netatm/atm_if.c index b4f9ce6e117b..1825eaf0b413 100644 --- a/sys/netatm/atm_if.c +++ b/sys/netatm/atm_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_if.c,v 1.3 1998/12/04 22:54:52 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_if.c,v 1.3 1998/12/04 22:54:52 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_if.h b/sys/netatm/atm_if.h index ccf9d035d211..d2ea47180c32 100644 --- a/sys/netatm/atm_if.h +++ b/sys/netatm/atm_if.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_if.h,v 1.13 1998/08/07 22:10:37 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_ioctl.h b/sys/netatm/atm_ioctl.h index 898557cceda5..547432058435 100644 --- a/sys/netatm/atm_ioctl.h +++ b/sys/netatm/atm_ioctl.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_ioctl.h,v 1.1 1998/09/15 08:22:58 phk Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_pcb.h b/sys/netatm/atm_pcb.h index 12ac5d042fc8..b5518e8079ac 100644 --- a/sys/netatm/atm_pcb.h +++ b/sys/netatm/atm_pcb.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_pcb.h,v 1.2 1998/07/30 22:30:51 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_proto.c b/sys/netatm/atm_proto.c index 5327e4ed923a..a75024a94c20 100644 --- a/sys/netatm/atm_proto.c +++ b/sys/netatm/atm_proto.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_proto.c,v 1.1 1998/09/15 08:22:58 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_proto.c,v 1.1 1998/09/15 08:22:58 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_sap.h b/sys/netatm/atm_sap.h index 1386516a95da..35f54351c4f5 100644 --- a/sys/netatm/atm_sap.h +++ b/sys/netatm/atm_sap.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_sap.h,v 1.3 1998/02/19 19:59:38 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_sigmgr.h b/sys/netatm/atm_sigmgr.h index 1b9388e6543c..bd502a32424e 100644 --- a/sys/netatm/atm_sigmgr.h +++ b/sys/netatm/atm_sigmgr.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_sigmgr.h,v 1.7 1998/03/24 20:43:59 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_signal.c b/sys/netatm/atm_signal.c index 11660d5d5081..2ad3b54178f5 100644 --- a/sys/netatm/atm_signal.c +++ b/sys/netatm/atm_signal.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_signal.c,v 1.2 1998/10/31 20:06:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_signal.c,v 1.2 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_socket.c b/sys/netatm/atm_socket.c index 004fba4949d0..2976ff17ceae 100644 --- a/sys/netatm/atm_socket.c +++ b/sys/netatm/atm_socket.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_socket.c,v 1.2 1998/10/31 20:06:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_socket.c,v 1.2 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_stack.h b/sys/netatm/atm_stack.h index abd32c47fdfd..be7edc851821 100644 --- a/sys/netatm/atm_stack.h +++ b/sys/netatm/atm_stack.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_stack.h,v 1.5 1998/02/19 19:59:59 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_subr.c b/sys/netatm/atm_subr.c index 261ea109ad2e..507f4f1e0bab 100644 --- a/sys/netatm/atm_subr.c +++ b/sys/netatm/atm_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_subr.c,v 1.3 1998/10/31 20:06:54 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_subr.c,v 1.3 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_sys.h b/sys/netatm/atm_sys.h index d6e9745272d6..0c240bfceef8 100644 --- a/sys/netatm/atm_sys.h +++ b/sys/netatm/atm_sys.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_sys.h,v 1.1 1998/09/15 08:22:59 phk Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_usrreq.c b/sys/netatm/atm_usrreq.c index 2dd968e6b6cd..f88cf0d203f2 100644 --- a/sys/netatm/atm_usrreq.c +++ b/sys/netatm/atm_usrreq.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_usrreq.c,v 1.4 1999/01/27 22:42:20 dillon Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_usrreq.c,v 1.4 1999/01/27 22:42:20 dillon Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/atm_var.h b/sys/netatm/atm_var.h index ab5f8565b39c..d19a475bd33d 100644 --- a/sys/netatm/atm_var.h +++ b/sys/netatm/atm_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_var.h,v 1.9 1998/05/18 19:05:52 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/atm_vc.h b/sys/netatm/atm_vc.h index 1c7c7b0ad2f0..64d1b6f39a9d 100644 --- a/sys/netatm/atm_vc.h +++ b/sys/netatm/atm_vc.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_vc.h,v 1.6 1998/02/19 20:00:34 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/ipatm/ipatm.h b/sys/netatm/ipatm/ipatm.h index b3ce348a285f..887509c0fee8 100644 --- a/sys/netatm/ipatm/ipatm.h +++ b/sys/netatm/ipatm/ipatm.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm.h,v 1.5 1998/03/24 20:49:49 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/ipatm/ipatm_event.c b/sys/netatm/ipatm/ipatm_event.c index 66f736e6bbd0..0566d1cfd3b2 100644 --- a/sys/netatm/ipatm/ipatm_event.c +++ b/sys/netatm/ipatm/ipatm_event.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_event.c,v 1.2 1998/09/17 09:35:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_event.c,v 1.2 1998/09/17 09:35:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_if.c b/sys/netatm/ipatm/ipatm_if.c index 7cac3da4e319..eeb3c00659e6 100644 --- a/sys/netatm/ipatm/ipatm_if.c +++ b/sys/netatm/ipatm/ipatm_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_if.c,v 1.1 1998/09/15 08:23:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_if.c,v 1.1 1998/09/15 08:23:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_input.c b/sys/netatm/ipatm/ipatm_input.c index 5d292fe2c906..e3049cfb63dd 100644 --- a/sys/netatm/ipatm/ipatm_input.c +++ b/sys/netatm/ipatm/ipatm_input.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_input.c,v 1.1 1998/09/15 08:23:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_input.c,v 1.1 1998/09/15 08:23:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_load.c b/sys/netatm/ipatm/ipatm_load.c index edb251e14b78..29e9837687c4 100644 --- a/sys/netatm/ipatm/ipatm_load.c +++ b/sys/netatm/ipatm/ipatm_load.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_load.c,v 1.3 1999/01/27 22:42:20 dillon Exp $ + * @(#) $FreeBSD$ * */ @@ -46,7 +46,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_load.c,v 1.3 1999/01/27 22:42:20 dillon Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_output.c b/sys/netatm/ipatm/ipatm_output.c index 54def8a1e506..c7a1933d8dd2 100644 --- a/sys/netatm/ipatm/ipatm_output.c +++ b/sys/netatm/ipatm/ipatm_output.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_output.c,v 1.1 1998/09/15 08:23:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_output.c,v 1.1 1998/09/15 08:23:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_serv.h b/sys/netatm/ipatm/ipatm_serv.h index 20462137968f..a807b0672357 100644 --- a/sys/netatm/ipatm/ipatm_serv.h +++ b/sys/netatm/ipatm/ipatm_serv.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_serv.h,v 1.6 1998/02/19 20:14:21 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/ipatm/ipatm_usrreq.c b/sys/netatm/ipatm/ipatm_usrreq.c index 6fc94d6feb76..d10f7c743ee8 100644 --- a/sys/netatm/ipatm/ipatm_usrreq.c +++ b/sys/netatm/ipatm/ipatm_usrreq.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_usrreq.c,v 1.2 1998/10/31 20:06:55 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_usrreq.c,v 1.2 1998/10/31 20:06:55 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/ipatm/ipatm_var.h b/sys/netatm/ipatm/ipatm_var.h index 6048284b4d75..b587a6e0e4cd 100644 --- a/sys/netatm/ipatm/ipatm_var.h +++ b/sys/netatm/ipatm/ipatm_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_var.h,v 1.8 1998/03/24 20:56:57 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/ipatm/ipatm_vcm.c b/sys/netatm/ipatm/ipatm_vcm.c index 8bfab7e5e064..409c3357aa94 100644 --- a/sys/netatm/ipatm/ipatm_vcm.c +++ b/sys/netatm/ipatm/ipatm_vcm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_vcm.c,v 1.2 1998/09/17 09:35:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: ipatm_vcm.c,v 1.2 1998/09/17 09:35:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/kern_include.h b/sys/netatm/kern_include.h index 78700db9595f..36a4071931e2 100644 --- a/sys/netatm/kern_include.h +++ b/sys/netatm/kern_include.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: kern_include.h,v 1.1 1998/09/15 08:22:59 phk Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/port.h b/sys/netatm/port.h index fac693adedf7..d9a0b133c4ec 100644 --- a/sys/netatm/port.h +++ b/sys/netatm/port.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: port.h,v 1.7 1998/03/24 20:25:28 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/queue.h b/sys/netatm/queue.h index 8a8febf5e07e..67bff75481a8 100644 --- a/sys/netatm/queue.h +++ b/sys/netatm/queue.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: queue.h,v 1.2 1997/05/06 22:14:38 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/sigpvc/sigpvc.h b/sys/netatm/sigpvc/sigpvc.h index 893a68255b77..8cc8374b1ee5 100644 --- a/sys/netatm/sigpvc/sigpvc.h +++ b/sys/netatm/sigpvc/sigpvc.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sigpvc.h,v 1.2 1997/05/06 22:15:43 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/sigpvc/sigpvc_if.c b/sys/netatm/sigpvc/sigpvc_if.c index 7cdef3f4e995..bbd7d28d2840 100644 --- a/sys/netatm/sigpvc/sigpvc_if.c +++ b/sys/netatm/sigpvc/sigpvc_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sigpvc_if.c,v 1.4 1999/01/19 23:11:39 mks Exp $ + * @(#) $FreeBSD$ * */ @@ -46,7 +46,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sigpvc_if.c,v 1.4 1999/01/19 23:11:39 mks Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/sigpvc/sigpvc_subr.c b/sys/netatm/sigpvc/sigpvc_subr.c index 63e3b64fd577..adf462b0256f 100644 --- a/sys/netatm/sigpvc/sigpvc_subr.c +++ b/sys/netatm/sigpvc/sigpvc_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sigpvc_subr.c,v 1.1 1998/09/15 08:23:02 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sigpvc_subr.c,v 1.1 1998/09/15 08:23:02 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif extern struct sp_info sigpvc_vcpool; diff --git a/sys/netatm/sigpvc/sigpvc_var.h b/sys/netatm/sigpvc/sigpvc_var.h index 24f92c0f2943..2cb96bcda2f0 100644 --- a/sys/netatm/sigpvc/sigpvc_var.h +++ b/sys/netatm/sigpvc/sigpvc_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sigpvc_var.h,v 1.5 1998/02/19 20:16:28 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/spans/spans_arp.c b/sys/netatm/spans/spans_arp.c index b291e55f8301..0c445ae7e9f6 100644 --- a/sys/netatm/spans/spans_arp.c +++ b/sys/netatm/spans/spans_arp.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_arp.c,v 1.4 1999/01/19 23:11:40 mks Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_arp.c,v 1.4 1999/01/19 23:11:40 mks Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/spans/spans_cls.c b/sys/netatm/spans/spans_cls.c index d4c9c953e99f..44daad7eda4a 100644 --- a/sys/netatm/spans/spans_cls.c +++ b/sys/netatm/spans/spans_cls.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_cls.c,v 1.4 1999/01/27 22:42:22 dillon Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_cls.c,v 1.4 1999/01/27 22:42:22 dillon Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/spans/spans_cls.h b/sys/netatm/spans/spans_cls.h index d2cacaca99e5..02e2f6a12a07 100644 --- a/sys/netatm/spans/spans_cls.h +++ b/sys/netatm/spans/spans_cls.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_cls.h,v 1.6 1998/05/18 19:11:17 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/spans/spans_if.c b/sys/netatm/spans/spans_if.c index 12c9a163bbb7..5cdd77872d99 100644 --- a/sys/netatm/spans/spans_if.c +++ b/sys/netatm/spans/spans_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_if.c,v 1.4 1998/12/04 22:54:53 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -46,7 +46,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_if.c,v 1.4 1998/12/04 22:54:53 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/spans/spans_kxdr.c b/sys/netatm/spans/spans_kxdr.c index 3843341c2241..d2e4ee4aea4c 100644 --- a/sys/netatm/spans/spans_kxdr.c +++ b/sys/netatm/spans/spans_kxdr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_kxdr.c,v 1.1 1998/09/15 08:23:03 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_kxdr.c,v 1.1 1998/09/15 08:23:03 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/spans/spans_msg.c b/sys/netatm/spans/spans_msg.c index 486da9ae4745..09c4c9f3cdbf 100644 --- a/sys/netatm/spans/spans_msg.c +++ b/sys/netatm/spans/spans_msg.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_msg.c,v 1.3 1998/10/31 20:06:56 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_msg.c,v 1.3 1998/10/31 20:06:56 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/spans/spans_print.c b/sys/netatm/spans/spans_print.c index 4068be94c233..3e280685893e 100644 --- a/sys/netatm/spans/spans_print.c +++ b/sys/netatm/spans/spans_print.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_print.c,v 1.4 1998/12/04 22:54:53 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_print.c,v 1.4 1998/12/04 22:54:53 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/spans/spans_proto.c b/sys/netatm/spans/spans_proto.c index 2cd2f7226242..47e4edc82d93 100644 --- a/sys/netatm/spans/spans_proto.c +++ b/sys/netatm/spans/spans_proto.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_proto.c,v 1.2 1998/09/17 09:35:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_proto.c,v 1.2 1998/09/17 09:35:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/spans/spans_subr.c b/sys/netatm/spans/spans_subr.c index b2a418c454b5..a53d31de2263 100644 --- a/sys/netatm/spans/spans_subr.c +++ b/sys/netatm/spans/spans_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_subr.c,v 1.2 1998/09/17 09:35:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_subr.c,v 1.2 1998/09/17 09:35:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/spans/spans_util.c b/sys/netatm/spans/spans_util.c index 904f176d2d56..e174e16de6c0 100644 --- a/sys/netatm/spans/spans_util.c +++ b/sys/netatm/spans/spans_util.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_util.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: spans_util.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/spans/spans_var.h b/sys/netatm/spans/spans_var.h index 8f9ac8a31b56..f93d1fc5a2d2 100644 --- a/sys/netatm/spans/spans_var.h +++ b/sys/netatm/spans/spans_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_var.h,v 1.7 1998/04/09 14:24:18 johnc Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/spans/spans_xdr.x b/sys/netatm/spans/spans_xdr.x index 7e53f5371c02..1f46857d73fb 100644 --- a/sys/netatm/spans/spans_xdr.x +++ b/sys/netatm/spans/spans_xdr.x @@ -23,7 +23,7 @@ % * Copies of this Software may be made, however, the above copyright % * notice must be reproduced on all copies. % * -% * @(#) $Id: spans_xdr.x,v 1.4 1997/05/06 22:17:36 mks Exp $ +% * @(#) $FreeBSD$ % * % */ % @@ -61,7 +61,7 @@ % */ % %#ifndef lint -%static char *RCSid = "@(#) $Id: spans_xdr.x,v 1.4 1997/05/06 22:17:36 mks Exp $"; +%static char *RCSid = "@(#) $FreeBSD$"; %#endif % #endif diff --git a/sys/netatm/uni/q2110_sigaa.c b/sys/netatm/uni/q2110_sigaa.c index 381356f6c7e8..cdec794f522f 100644 --- a/sys/netatm/uni/q2110_sigaa.c +++ b/sys/netatm/uni/q2110_sigaa.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: q2110_sigaa.c,v 1.1 1998/09/15 08:23:05 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: q2110_sigaa.c,v 1.1 1998/09/15 08:23:05 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/q2110_sigcpcs.c b/sys/netatm/uni/q2110_sigcpcs.c index 7752fd04278e..6fdf512cfb75 100644 --- a/sys/netatm/uni/q2110_sigcpcs.c +++ b/sys/netatm/uni/q2110_sigcpcs.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: q2110_sigcpcs.c,v 1.1 1998/09/15 08:23:05 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: q2110_sigcpcs.c,v 1.1 1998/09/15 08:23:05 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/q2110_subr.c b/sys/netatm/uni/q2110_subr.c index 32f3833aa134..f1ea3776572d 100644 --- a/sys/netatm/uni/q2110_subr.c +++ b/sys/netatm/uni/q2110_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: q2110_subr.c,v 1.1 1998/09/15 08:23:05 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: q2110_subr.c,v 1.1 1998/09/15 08:23:05 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/qsaal1_sigaa.c b/sys/netatm/uni/qsaal1_sigaa.c index 1788794c5b00..579e08bdeb22 100644 --- a/sys/netatm/uni/qsaal1_sigaa.c +++ b/sys/netatm/uni/qsaal1_sigaa.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: qsaal1_sigaa.c,v 1.1 1998/09/15 08:23:05 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: qsaal1_sigaa.c,v 1.1 1998/09/15 08:23:05 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/qsaal1_sigcpcs.c b/sys/netatm/uni/qsaal1_sigcpcs.c index 203e483e6a03..8f579845de14 100644 --- a/sys/netatm/uni/qsaal1_sigcpcs.c +++ b/sys/netatm/uni/qsaal1_sigcpcs.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: qsaal1_sigcpcs.c,v 1.1 1998/09/15 08:23:05 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: qsaal1_sigcpcs.c,v 1.1 1998/09/15 08:23:05 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/qsaal1_subr.c b/sys/netatm/uni/qsaal1_subr.c index 9ad2468dc52a..ee18866be373 100644 --- a/sys/netatm/uni/qsaal1_subr.c +++ b/sys/netatm/uni/qsaal1_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: qsaal1_subr.c,v 1.1 1998/09/15 08:23:06 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: qsaal1_subr.c,v 1.1 1998/09/15 08:23:06 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscf_uni.c b/sys/netatm/uni/sscf_uni.c index 9f6824b81abc..7a8bbaaacd0a 100644 --- a/sys/netatm/uni/sscf_uni.c +++ b/sys/netatm/uni/sscf_uni.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscf_uni.c,v 1.4 1998/12/04 22:54:53 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscf_uni.c,v 1.4 1998/12/04 22:54:53 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscf_uni.h b/sys/netatm/uni/sscf_uni.h index cf244462d503..e55d6b8e9d30 100644 --- a/sys/netatm/uni/sscf_uni.h +++ b/sys/netatm/uni/sscf_uni.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscf_uni.h,v 1.2 1997/05/06 22:19:34 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/sscf_uni_lower.c b/sys/netatm/uni/sscf_uni_lower.c index 56db85fd7de9..c1690667d522 100644 --- a/sys/netatm/uni/sscf_uni_lower.c +++ b/sys/netatm/uni/sscf_uni_lower.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscf_uni_lower.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscf_uni_lower.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscf_uni_upper.c b/sys/netatm/uni/sscf_uni_upper.c index 24a41f555be3..df0ea2565df1 100644 --- a/sys/netatm/uni/sscf_uni_upper.c +++ b/sys/netatm/uni/sscf_uni_upper.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscf_uni_upper.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscf_uni_upper.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscf_uni_var.h b/sys/netatm/uni/sscf_uni_var.h index ffed7ded6447..f8b70aacaf76 100644 --- a/sys/netatm/uni/sscf_uni_var.h +++ b/sys/netatm/uni/sscf_uni_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscf_uni_var.h,v 1.5 1998/02/19 20:22:05 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/sscop.c b/sys/netatm/uni/sscop.c index b4fb6e25671d..ad50d3d25219 100644 --- a/sys/netatm/uni/sscop.c +++ b/sys/netatm/uni/sscop.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop.c,v 1.3 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop.c,v 1.3 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop.h b/sys/netatm/uni/sscop.h index 2f786b3be8fd..89ca468bcc37 100644 --- a/sys/netatm/uni/sscop.h +++ b/sys/netatm/uni/sscop.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop.h,v 1.4 1998/08/26 23:29:19 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/sscop_lower.c b/sys/netatm/uni/sscop_lower.c index 3810f91123fd..393a39413e5f 100644 --- a/sys/netatm/uni/sscop_lower.c +++ b/sys/netatm/uni/sscop_lower.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_lower.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_lower.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_misc.h b/sys/netatm/uni/sscop_misc.h index 4348cef90015..5fcea10bcc0f 100644 --- a/sys/netatm/uni/sscop_misc.h +++ b/sys/netatm/uni/sscop_misc.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_misc.h,v 1.4 1998/08/26 23:29:19 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/sscop_pdu.c b/sys/netatm/uni/sscop_pdu.c index 03562841d8ca..5fd4c07bb9af 100644 --- a/sys/netatm/uni/sscop_pdu.c +++ b/sys/netatm/uni/sscop_pdu.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_pdu.c,v 1.2 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_pdu.c,v 1.2 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/uni/sscop_pdu.h b/sys/netatm/uni/sscop_pdu.h index 387a6028606c..9a930d0feaff 100644 --- a/sys/netatm/uni/sscop_pdu.h +++ b/sys/netatm/uni/sscop_pdu.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_pdu.h,v 1.3 1997/05/06 22:20:15 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/sscop_sigaa.c b/sys/netatm/uni/sscop_sigaa.c index 675398216139..5e91d7cde51f 100644 --- a/sys/netatm/uni/sscop_sigaa.c +++ b/sys/netatm/uni/sscop_sigaa.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_sigaa.c,v 1.1 1998/09/15 08:23:07 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_sigaa.c,v 1.1 1998/09/15 08:23:07 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_sigcpcs.c b/sys/netatm/uni/sscop_sigcpcs.c index 6b1c477bbb01..9223bb2cfec0 100644 --- a/sys/netatm/uni/sscop_sigcpcs.c +++ b/sys/netatm/uni/sscop_sigcpcs.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_sigcpcs.c,v 1.1 1998/09/15 08:23:08 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_sigcpcs.c,v 1.1 1998/09/15 08:23:08 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_subr.c b/sys/netatm/uni/sscop_subr.c index 44d0808aa09b..1a70d3bc033e 100644 --- a/sys/netatm/uni/sscop_subr.c +++ b/sys/netatm/uni/sscop_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_subr.c,v 1.3 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_subr.c,v 1.3 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_timer.c b/sys/netatm/uni/sscop_timer.c index e6b1b906d7f2..42a98fb07215 100644 --- a/sys/netatm/uni/sscop_timer.c +++ b/sys/netatm/uni/sscop_timer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_timer.c,v 1.3 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_timer.c,v 1.3 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_upper.c b/sys/netatm/uni/sscop_upper.c index f2ad1bd95c5e..5f345fc61a51 100644 --- a/sys/netatm/uni/sscop_upper.c +++ b/sys/netatm/uni/sscop_upper.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_upper.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: sscop_upper.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/sscop_var.h b/sys/netatm/uni/sscop_var.h index 9a739d39090c..f29108a40d0b 100644 --- a/sys/netatm/uni/sscop_var.h +++ b/sys/netatm/uni/sscop_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_var.h,v 1.6 1998/04/07 23:21:57 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/uni.h b/sys/netatm/uni/uni.h index 700e859ca684..b7cd1bd48b4a 100644 --- a/sys/netatm/uni/uni.h +++ b/sys/netatm/uni/uni.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uni.h,v 1.2 1997/05/06 22:20:39 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/uni_load.c b/sys/netatm/uni/uni_load.c index 7be1eba01a0c..bd51a4774b06 100644 --- a/sys/netatm/uni/uni_load.c +++ b/sys/netatm/uni/uni_load.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uni_load.c,v 1.1 1998/09/15 08:23:09 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uni_load.c,v 1.1 1998/09/15 08:23:09 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif /* diff --git a/sys/netatm/uni/uniarp.c b/sys/netatm/uni/uniarp.c index 48140996665f..7c23a01b473c 100644 --- a/sys/netatm/uni/uniarp.c +++ b/sys/netatm/uni/uniarp.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp.c,v 1.5 1999/01/19 23:16:11 mks Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp.c,v 1.5 1999/01/19 23:16:11 mks Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniarp_cache.c b/sys/netatm/uni/uniarp_cache.c index 88a26a59c76b..6e08e57db388 100644 --- a/sys/netatm/uni/uniarp_cache.c +++ b/sys/netatm/uni/uniarp_cache.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp_cache.c,v 1.2 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp_cache.c,v 1.2 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniarp_input.c b/sys/netatm/uni/uniarp_input.c index 80920292226f..afa9927a58ba 100644 --- a/sys/netatm/uni/uniarp_input.c +++ b/sys/netatm/uni/uniarp_input.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp_input.c,v 1.3 1998/12/04 22:54:53 archie Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp_input.c,v 1.3 1998/12/04 22:54:53 archie Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniarp_output.c b/sys/netatm/uni/uniarp_output.c index 4f7a16388d09..f8cd594caac1 100644 --- a/sys/netatm/uni/uniarp_output.c +++ b/sys/netatm/uni/uniarp_output.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp_output.c,v 1.1 1998/09/15 08:23:09 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp_output.c,v 1.1 1998/09/15 08:23:09 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniarp_timer.c b/sys/netatm/uni/uniarp_timer.c index b65ca568cdd8..2b550ad9d342 100644 --- a/sys/netatm/uni/uniarp_timer.c +++ b/sys/netatm/uni/uniarp_timer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp_timer.c,v 1.1 1998/09/15 08:23:10 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp_timer.c,v 1.1 1998/09/15 08:23:10 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniarp_vcm.c b/sys/netatm/uni/uniarp_vcm.c index e2e9c2d28973..95e20e2785d2 100644 --- a/sys/netatm/uni/uniarp_vcm.c +++ b/sys/netatm/uni/uniarp_vcm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniarp_vcm.c,v 1.2 1998/09/17 09:35:02 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniarp_vcm.c,v 1.2 1998/09/17 09:35:02 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniip.c b/sys/netatm/uni/uniip.c index 88e79a020487..c0a40854bfd9 100644 --- a/sys/netatm/uni/uniip.c +++ b/sys/netatm/uni/uniip.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniip.c,v 1.2 1998/10/31 20:07:00 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: uniip.c,v 1.2 1998/10/31 20:07:00 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/uniip_var.h b/sys/netatm/uni/uniip_var.h index ea1eb8c98cd3..409d2ad6de0f 100644 --- a/sys/netatm/uni/uniip_var.h +++ b/sys/netatm/uni/uniip_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: uniip_var.h,v 1.9 1998/07/13 00:00:39 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig.h b/sys/netatm/uni/unisig.h index b69714d2c25a..1f06f5ccffc1 100644 --- a/sys/netatm/uni/unisig.h +++ b/sys/netatm/uni/unisig.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig.h,v 1.2 1997/05/06 22:21:33 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_decode.c b/sys/netatm/uni/unisig_decode.c index 08fe4b728a7c..6cd9bde21412 100644 --- a/sys/netatm/uni/unisig_decode.c +++ b/sys/netatm/uni/unisig_decode.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_decode.c,v 1.2 1998/09/17 09:35:02 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_decode.c,v 1.2 1998/09/17 09:35:02 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif #define ALLOC_IE(ie) \ diff --git a/sys/netatm/uni/unisig_decode.h b/sys/netatm/uni/unisig_decode.h index dbd184aedee9..3a181f06abd7 100644 --- a/sys/netatm/uni/unisig_decode.h +++ b/sys/netatm/uni/unisig_decode.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_decode.h,v 1.5 1998/08/26 23:29:21 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_encode.c b/sys/netatm/uni/unisig_encode.c index 34a039aec159..9789ae94fa7c 100644 --- a/sys/netatm/uni/unisig_encode.c +++ b/sys/netatm/uni/unisig_encode.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_encode.c,v 1.2 1998/09/17 09:35:02 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_encode.c,v 1.2 1998/09/17 09:35:02 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_if.c b/sys/netatm/uni/unisig_if.c index 33bfb488dc83..08dad264ae36 100644 --- a/sys/netatm/uni/unisig_if.c +++ b/sys/netatm/uni/unisig_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_if.c,v 1.5 1998/12/11 21:47:46 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -47,7 +47,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_if.c,v 1.5 1998/12/11 21:47:46 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_mbuf.c b/sys/netatm/uni/unisig_mbuf.c index c7f00912c9e3..af6d47821a7c 100644 --- a/sys/netatm/uni/unisig_mbuf.c +++ b/sys/netatm/uni/unisig_mbuf.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_mbuf.c,v 1.3 1998/10/31 20:07:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_mbuf.c,v 1.3 1998/10/31 20:07:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_mbuf.h b/sys/netatm/uni/unisig_mbuf.h index f394047eeb35..986ae43ab5cb 100644 --- a/sys/netatm/uni/unisig_mbuf.h +++ b/sys/netatm/uni/unisig_mbuf.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_mbuf.h,v 1.5 1998/08/26 23:29:22 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_msg.c b/sys/netatm/uni/unisig_msg.c index f52f46e8f446..7d4125883832 100644 --- a/sys/netatm/uni/unisig_msg.c +++ b/sys/netatm/uni/unisig_msg.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_msg.c,v 1.3 1998/10/31 20:07:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_msg.c,v 1.3 1998/10/31 20:07:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_msg.h b/sys/netatm/uni/unisig_msg.h index 1305bc77e0de..9ea3c4db924f 100644 --- a/sys/netatm/uni/unisig_msg.h +++ b/sys/netatm/uni/unisig_msg.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_msg.h,v 1.1 1998/09/15 08:23:11 phk Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_print.c b/sys/netatm/uni/unisig_print.c index 93133cad3d6e..174b7518902f 100644 --- a/sys/netatm/uni/unisig_print.c +++ b/sys/netatm/uni/unisig_print.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_print.c,v 1.1 1998/09/15 08:23:12 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_print.c,v 1.1 1998/09/15 08:23:12 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_print.h b/sys/netatm/uni/unisig_print.h index 5e906c8284a7..22f440a06abc 100644 --- a/sys/netatm/uni/unisig_print.h +++ b/sys/netatm/uni/unisig_print.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_print.h,v 1.2 1997/05/06 22:22:27 mks Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_proto.c b/sys/netatm/uni/unisig_proto.c index 8a3daac6753a..39aa8b0e44a6 100644 --- a/sys/netatm/uni/unisig_proto.c +++ b/sys/netatm/uni/unisig_proto.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_proto.c,v 1.2 1998/09/17 09:35:02 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -43,7 +43,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_proto.c,v 1.2 1998/09/17 09:35:02 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_sigmgr_state.c b/sys/netatm/uni/unisig_sigmgr_state.c index e2213bf2ec6a..b4360c9a5f21 100644 --- a/sys/netatm/uni/unisig_sigmgr_state.c +++ b/sys/netatm/uni/unisig_sigmgr_state.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_sigmgr_state.c,v 1.3 1998/10/31 20:07:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -47,7 +47,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_sigmgr_state.c,v 1.3 1998/10/31 20:07:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_subr.c b/sys/netatm/uni/unisig_subr.c index 888cedcf99ab..124784a5eae8 100644 --- a/sys/netatm/uni/unisig_subr.c +++ b/sys/netatm/uni/unisig_subr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_subr.c,v 1.4 1998/10/31 20:08:03 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_subr.c,v 1.4 1998/10/31 20:08:03 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_util.c b/sys/netatm/uni/unisig_util.c index a3a2ab2ba3cb..5243628dd0b2 100644 --- a/sys/netatm/uni/unisig_util.c +++ b/sys/netatm/uni/unisig_util.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_util.c,v 1.3 1998/10/31 20:07:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -42,7 +42,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_util.c,v 1.3 1998/10/31 20:07:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netatm/uni/unisig_var.h b/sys/netatm/uni/unisig_var.h index b8d422930250..ca7e7faf56d5 100644 --- a/sys/netatm/uni/unisig_var.h +++ b/sys/netatm/uni/unisig_var.h @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_var.h,v 1.1 1998/09/15 08:23:13 phk Exp $ + * @(#) $FreeBSD$ * */ diff --git a/sys/netatm/uni/unisig_vc_state.c b/sys/netatm/uni/unisig_vc_state.c index 84f995e9cf31..b6775095d730 100644 --- a/sys/netatm/uni/unisig_vc_state.c +++ b/sys/netatm/uni/unisig_vc_state.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_vc_state.c,v 1.3 1998/10/31 20:07:01 phk Exp $ + * @(#) $FreeBSD$ * */ @@ -44,7 +44,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: unisig_vc_state.c,v 1.3 1998/10/31 20:07:01 phk Exp $"); +__RCSID("@(#) $FreeBSD$"); #endif diff --git a/sys/netinet/fil.c b/sys/netinet/fil.c index f91ee3dec08b..ee0ff9096f38 100644 --- a/sys/netinet/fil.c +++ b/sys/netinet/fil.c @@ -7,7 +7,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)fil.c 1.36 6/5/96 (C) 1993-1996 Darren Reed"; -static const char rcsid[] = "@(#)$Id: fil.c,v 1.3 1998/06/20 18:37:49 peter Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #include "opt_ipfilter.h" @@ -1098,7 +1098,7 @@ nodata: * SUCH DAMAGE. * * @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94 - * $Id: fil.c,v 1.3 1998/06/20 18:37:49 peter Exp $ + * $FreeBSD$ */ /* * Copy data from an mbuf chain starting "off" bytes from the beginning, diff --git a/sys/netinet/icmp_var.h b/sys/netinet/icmp_var.h index c19cc3540cc1..02d147c31331 100644 --- a/sys/netinet/icmp_var.h +++ b/sys/netinet/icmp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)icmp_var.h 8.1 (Berkeley) 6/10/93 - * $Id: icmp_var.h,v 1.12 1998/12/04 04:21:25 dillon Exp $ + * $FreeBSD$ */ #ifndef _NETINET_ICMP_VAR_H_ diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 9b7e4156a30a..197f7a0f421e 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.c 8.1 (Berkeley) 6/10/93 - * $Id: if_ether.c,v 1.57 1999/04/15 17:58:24 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index 3540119748c5..79f1252781c7 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.h 8.3 (Berkeley) 5/2/95 - * $Id: if_ether.h,v 1.20 1997/02/22 09:41:25 peter Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IF_ETHER_H_ diff --git a/sys/netinet/if_fddi.h b/sys/netinet/if_fddi.h index 336ff4768cd6..fc6acc6c9c8f 100644 --- a/sys/netinet/if_fddi.h +++ b/sys/netinet/if_fddi.h @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)if_fddi.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_IF_FDDI_H_ diff --git a/sys/netinet/igmp.c b/sys/netinet/igmp.c index c1c90c041642..83cc650c21a5 100644 --- a/sys/netinet/igmp.c +++ b/sys/netinet/igmp.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp.c 8.1 (Berkeley) 7/19/93 - * $Id: igmp.c,v 1.26 1998/12/12 21:45:49 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netinet/igmp.h b/sys/netinet/igmp.h index 01d6d0917977..7d943d6eb548 100644 --- a/sys/netinet/igmp.h +++ b/sys/netinet/igmp.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_IGMP_H_ diff --git a/sys/netinet/igmp_var.h b/sys/netinet/igmp_var.h index 84485e328f99..0dd330fb19e0 100644 --- a/sys/netinet/igmp_var.h +++ b/sys/netinet/igmp_var.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)igmp_var.h 8.1 (Berkeley) 7/19/93 - * $Id: igmp_var.h,v 1.13 1999/02/16 10:49:51 dfr Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IGMP_VAR_H_ diff --git a/sys/netinet/in.c b/sys/netinet/in.c index 0c78b995ebbc..4562672f1e6c 100644 --- a/sys/netinet/in.c +++ b/sys/netinet/in.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in.c 8.4 (Berkeley) 1/9/95 - * $Id: in.c,v 1.40 1999/04/24 12:28:51 luigi Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/in.h b/sys/netinet/in.h index 1838defb6f6b..ba5d24f91ad4 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in.h 8.3 (Berkeley) 1/3/94 - * $Id: in.h,v 1.42 1999/05/08 14:28:52 peter Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IN_H_ diff --git a/sys/netinet/in_cksum.c b/sys/netinet/in_cksum.c index 5da488f6594d..eaf14935070a 100644 --- a/sys/netinet/in_cksum.c +++ b/sys/netinet/in_cksum.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_cksum.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netinet/in_hostcache.c b/sys/netinet/in_hostcache.c index a3f08b6db1d9..33e0187565fa 100644 --- a/sys/netinet/in_hostcache.c +++ b/sys/netinet/in_hostcache.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: in_hostcache.c,v 1.1 1997/06/18 01:24:28 wollman Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/in_hostcache.h b/sys/netinet/in_hostcache.h index 81ae4bdb99e6..98e8fd433ecb 100644 --- a/sys/netinet/in_hostcache.h +++ b/sys/netinet/in_hostcache.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_IN_HOSTCACHE_H diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index bc48c3bd31b1..162eaa392256 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_pcb.c 8.4 (Berkeley) 5/24/95 - * $Id: in_pcb.c,v 1.51 1999/06/25 23:46:47 pb Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index 33d8d7a73dcf..0912fea898ea 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_pcb.h 8.1 (Berkeley) 6/10/93 - * $Id: in_pcb.h,v 1.26 1998/05/15 20:11:33 wollman Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IN_PCB_H_ diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index 083d10bd686f..786b4e8c7669 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_proto.c 8.2 (Berkeley) 2/9/95 - * $Id: in_proto.c,v 1.47 1998/08/23 03:07:14 wollman Exp $ + * $FreeBSD$ */ #include "opt_ipdivert.h" diff --git a/sys/netinet/in_rmx.c b/sys/netinet/in_rmx.c index 98f86c6410a1..52d062dd7830 100644 --- a/sys/netinet/in_rmx.c +++ b/sys/netinet/in_rmx.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: in_rmx.c,v 1.35 1998/08/05 16:59:20 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netinet/in_systm.h b/sys/netinet/in_systm.h index aa6f0d719ca6..5d18c56e7175 100644 --- a/sys/netinet/in_systm.h +++ b/sys/netinet/in_systm.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_systm.h 8.1 (Berkeley) 6/10/93 - * $Id: in_systm.h,v 1.6 1998/06/07 17:12:14 dfr Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IN_SYSTM_H_ diff --git a/sys/netinet/in_var.h b/sys/netinet/in_var.h index 5fd0a09f08cc..9569f48f59a1 100644 --- a/sys/netinet/in_var.h +++ b/sys/netinet/in_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_var.h 8.2 (Berkeley) 1/9/95 - * $Id: in_var.h,v 1.29 1998/06/07 17:12:14 dfr Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IN_VAR_H_ diff --git a/sys/netinet/ip.h b/sys/netinet/ip.h index c5e916bbf36b..0b6f1b6361d5 100644 --- a/sys/netinet/ip.h +++ b/sys/netinet/ip.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip.h 8.2 (Berkeley) 6/1/94 - * $Id: ip.h,v 1.14 1998/02/26 08:31:52 dima Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IP_H_ diff --git a/sys/netinet/ip_auth.c b/sys/netinet/ip_auth.c index dab93b0ef0c2..4afda70b809d 100644 --- a/sys/netinet/ip_auth.c +++ b/sys/netinet/ip_auth.c @@ -6,7 +6,7 @@ * to the original author and the contributors. */ #if !defined(lint) -static const char rcsid[] = "@(#)$Id: ip_auth.c,v 1.5 1998/08/15 21:51:53 bde Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #if defined(KERNEL) && !defined(_KERNEL) diff --git a/sys/netinet/ip_auth.h b/sys/netinet/ip_auth.h index 267c21743427..72e51b22ae1c 100644 --- a/sys/netinet/ip_auth.h +++ b/sys/netinet/ip_auth.h @@ -5,7 +5,7 @@ * provided that this notice is preserved and due credit is given * to the original author and the contributors. * - * $Id: ip_auth.h,v 1.1.1.1 1997/11/16 05:55:52 peter Exp $ + * $FreeBSD$ * */ #ifndef __IP_AUTH_H__ diff --git a/sys/netinet/ip_compat.h b/sys/netinet/ip_compat.h index 1f91cf3c949b..e3fd1fee5f85 100644 --- a/sys/netinet/ip_compat.h +++ b/sys/netinet/ip_compat.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_compat.h 1.8 1/14/96 - * $Id: ip_compat.h,v 2.0.2.31.2.11 1998/05/23 14:29:36 darrenr Exp $ + * $FreeBSD$ */ #ifndef __IP_COMPAT_H__ diff --git a/sys/netinet/ip_divert.c b/sys/netinet/ip_divert.c index e4b82b942384..32a13f20f896 100644 --- a/sys/netinet/ip_divert.c +++ b/sys/netinet/ip_divert.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ip_divert.c,v 1.37 1999/02/08 05:53:39 julian Exp $ + * $FreeBSD$ */ #include "opt_inet.h" diff --git a/sys/netinet/ip_dummynet.c b/sys/netinet/ip_dummynet.c index 5bd6a3d057ac..66d9e532737c 100644 --- a/sys/netinet/ip_dummynet.c +++ b/sys/netinet/ip_dummynet.c @@ -10,7 +10,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_dummynet.c,v 1.16 1999/08/11 14:37:58 luigi Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netinet/ip_dummynet.h b/sys/netinet/ip_dummynet.h index 98eae8206156..55d9614006b1 100644 --- a/sys/netinet/ip_dummynet.h +++ b/sys/netinet/ip_dummynet.h @@ -10,7 +10,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_dummynet.h,v 1.4 1999/04/20 13:32:04 peter Exp $ + * $FreeBSD$ */ #ifndef _IP_DUMMYNET_H diff --git a/sys/netinet/ip_fil.c b/sys/netinet/ip_fil.c index 6cbdac90533c..2dbea5dbf8ac 100644 --- a/sys/netinet/ip_fil.c +++ b/sys/netinet/ip_fil.c @@ -7,7 +7,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)ip_fil.c 2.41 6/5/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ip_fil.c,v 1.6 1998/08/15 21:51:53 bde Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #include "opt_ipfilter.h" diff --git a/sys/netinet/ip_fil.h b/sys/netinet/ip_fil.h index e40ef555ae92..79f68964cbc9 100644 --- a/sys/netinet/ip_fil.h +++ b/sys/netinet/ip_fil.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_fil.h 1.35 6/5/96 - * $Id: ip_fil.h,v 1.5 1998/06/08 09:47:41 bde Exp $ + * $FreeBSD$ */ #ifndef __IP_FIL_H__ diff --git a/sys/netinet/ip_flow.c b/sys/netinet/ip_flow.c index fdebdb0b03ea..6c9119b5ee86 100644 --- a/sys/netinet/ip_flow.c +++ b/sys/netinet/ip_flow.c @@ -33,7 +33,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: ip_flow.c,v 1.7 1999/04/11 02:50:42 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/ip_flow.h b/sys/netinet/ip_flow.h index 4ba163018338..4675996cc790 100644 --- a/sys/netinet/ip_flow.h +++ b/sys/netinet/ip_flow.h @@ -33,7 +33,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_IP_FLOW_H diff --git a/sys/netinet/ip_frag.c b/sys/netinet/ip_frag.c index 7ad47f784b08..de104e55452b 100644 --- a/sys/netinet/ip_frag.c +++ b/sys/netinet/ip_frag.c @@ -7,7 +7,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)ip_frag.c 1.11 3/24/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ip_frag.c,v 1.2 1998/03/21 11:34:06 peter Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #if !defined(_KERNEL) && defined(KERNEL) diff --git a/sys/netinet/ip_frag.h b/sys/netinet/ip_frag.h index 9122f17a5115..c50905042fa1 100644 --- a/sys/netinet/ip_frag.h +++ b/sys/netinet/ip_frag.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_frag.h 1.5 3/24/96 - * $Id: ip_frag.h,v 2.0.2.12.2.1 1998/05/23 14:29:39 darrenr Exp $ + * $FreeBSD$ */ #ifndef __IP_FRAG_H__ diff --git a/sys/netinet/ip_ftp_pxy.c b/sys/netinet/ip_ftp_pxy.c index 7e37d9675371..917dbb2bf1f9 100644 --- a/sys/netinet/ip_ftp_pxy.c +++ b/sys/netinet/ip_ftp_pxy.c @@ -2,7 +2,7 @@ * Simple FTP transparent proxy for in-kernel use. For use with the NAT * code. * - * $Id$ + * $FreeBSD$ */ #define isdigit(x) ((x) >= '0' && (x) <= '9') diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index f32bff2a2589..49e03c3709ca 100644 --- a/sys/netinet/ip_fw.c +++ b/sys/netinet/ip_fw.c @@ -12,7 +12,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_fw.c,v 1.118 1999/08/21 18:35:50 green Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netinet/ip_fw.h b/sys/netinet/ip_fw.h index c14a96b81e9a..07ac1bb8fb6d 100644 --- a/sys/netinet/ip_fw.h +++ b/sys/netinet/ip_fw.h @@ -11,7 +11,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_fw.h,v 1.41 1999/08/11 15:34:46 luigi Exp $ + * $FreeBSD$ */ #ifndef _IP_FW_H diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index 5a5abc4689e3..6bb234b4da16 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94 - * $Id: ip_icmp.c,v 1.34 1999/03/06 23:10:42 archie Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/ip_icmp.h b/sys/netinet/ip_icmp.h index af2f787b029c..4dd6c9750d7c 100644 --- a/sys/netinet/ip_icmp.h +++ b/sys/netinet/ip_icmp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93 - * $Id: ip_icmp.h,v 1.11 1997/02/22 09:41:34 peter Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IP_ICMP_H_ diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 55b7132a0e34..6cf40de7ab1f 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_input.c 8.2 (Berkeley) 1/4/94 - * $Id: ip_input.c,v 1.119 1999/05/04 16:20:32 luigi Exp $ + * $FreeBSD$ */ #define _IP_VHL diff --git a/sys/netinet/ip_log.c b/sys/netinet/ip_log.c index 8a826ed2985c..3f73a3e21fb6 100644 --- a/sys/netinet/ip_log.c +++ b/sys/netinet/ip_log.c @@ -5,7 +5,7 @@ * provided that this notice is preserved and due credit is given * to the original author and the contributors. * - * $Id: ip_log.c,v 1.5 1998/11/26 18:54:52 eivind Exp $ + * $FreeBSD$ */ #include "opt_ipfilter.h" diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index bf63c7694af6..20aa381e97c6 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -9,7 +9,7 @@ * Modified by Bill Fenner, PARC, April 1995 * * MROUTING Revision: 3.5 - * $Id: ip_mroute.c,v 1.53 1999/01/18 02:06:57 fenner Exp $ + * $FreeBSD$ */ #include "opt_mrouting.h" diff --git a/sys/netinet/ip_mroute.h b/sys/netinet/ip_mroute.h index 0526bbb18f75..abccedaa02a9 100644 --- a/sys/netinet/ip_mroute.h +++ b/sys/netinet/ip_mroute.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)ip_mroute.h 8.1 (Berkeley) 6/10/93 - * $Id: ip_mroute.h,v 1.14 1998/08/23 03:07:14 wollman Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IP_MROUTE_H_ diff --git a/sys/netinet/ip_nat.c b/sys/netinet/ip_nat.c index 243c8bb19144..a8f8744f5149 100644 --- a/sys/netinet/ip_nat.c +++ b/sys/netinet/ip_nat.c @@ -9,7 +9,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)ip_nat.c 1.11 6/5/96 (C) 1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ip_nat.c,v 1.4 1998/08/15 21:51:53 bde Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #include "opt_ipfilter.h" diff --git a/sys/netinet/ip_nat.h b/sys/netinet/ip_nat.h index 65ab99dd9ed9..d02a84457774 100644 --- a/sys/netinet/ip_nat.h +++ b/sys/netinet/ip_nat.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_nat.h 1.5 2/4/96 - * $Id: ip_nat.h,v 1.1.1.5 1998/06/20 18:17:53 peter Exp $ + * $FreeBSD$ */ #ifndef __IP_NAT_H__ diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index e0d8de36f37e..32200c1e1186 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_output.c 8.3 (Berkeley) 1/21/94 - * $Id: ip_output.c,v 1.89 1999/05/04 09:26:12 luigi Exp $ + * $FreeBSD$ */ #define _IP_VHL diff --git a/sys/netinet/ip_proxy.c b/sys/netinet/ip_proxy.c index 31764298d50b..e604051aa548 100644 --- a/sys/netinet/ip_proxy.c +++ b/sys/netinet/ip_proxy.c @@ -6,7 +6,7 @@ * to the original author and the contributors. */ #if !defined(lint) -static const char rcsid[] = "@(#)$Id: ip_proxy.c,v 1.3 1998/06/20 18:37:50 peter Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #if defined(__FreeBSD__) && defined(KERNEL) && !defined(_KERNEL) diff --git a/sys/netinet/ip_proxy.h b/sys/netinet/ip_proxy.h index a361e9368ada..cd7e9f9a671a 100644 --- a/sys/netinet/ip_proxy.h +++ b/sys/netinet/ip_proxy.h @@ -5,7 +5,7 @@ * provided that this notice is preserved and due credit is given * to the original author and the contributors. * - * $Id: ip_proxy.h,v 2.0.2.10.2.1 1997/11/27 09:33:27 darrenr Exp $ + * $FreeBSD$ */ #ifndef __IP_PROXY_H__ diff --git a/sys/netinet/ip_state.c b/sys/netinet/ip_state.c index b6a805496135..d5a36375b399 100644 --- a/sys/netinet/ip_state.c +++ b/sys/netinet/ip_state.c @@ -7,7 +7,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)ip_state.c 1.8 6/5/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ip_state.c,v 1.4 1998/11/26 18:54:52 eivind Exp $"; +static const char rcsid[] = "@(#)$FreeBSD$"; #endif #include "opt_ipfilter.h" diff --git a/sys/netinet/ip_state.h b/sys/netinet/ip_state.h index f2ae94bb7020..2b7e8989de4d 100644 --- a/sys/netinet/ip_state.h +++ b/sys/netinet/ip_state.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_state.h 1.3 1/12/96 (C) 1995 Darren Reed - * $Id: ip_state.h,v 2.0.2.14.2.6 1998/05/24 05:18:04 darrenr Exp $ + * $FreeBSD$ */ #ifndef __IP_STATE_H__ #define __IP_STATE_H__ diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 1de266497f28..08b3a06d3304 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_var.h 8.2 (Berkeley) 1/9/95 - * $Id: ip_var.h,v 1.44 1998/08/23 03:07:14 wollman Exp $ + * $FreeBSD$ */ #ifndef _NETINET_IP_VAR_H_ diff --git a/sys/netinet/ipl.h b/sys/netinet/ipl.h index d1608d54ecbb..0985545e110c 100644 --- a/sys/netinet/ipl.h +++ b/sys/netinet/ipl.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ipl.h 1.21 6/5/96 - * $Id$ + * $FreeBSD$ */ #ifndef __IPL_H__ diff --git a/sys/netinet/mlf_ipl.c b/sys/netinet/mlf_ipl.c index 39249a5d1de6..74d9ab063939 100644 --- a/sys/netinet/mlf_ipl.c +++ b/sys/netinet/mlf_ipl.c @@ -5,7 +5,7 @@ * provided that this notice is preserved and due credit is given * to the original author and the contributors. * - * $Id$ + * $FreeBSD$ */ /* * 29/12/94 Added code from Marc Huber to allow it to allocate diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index d8117dde0ac3..e153cc17cf12 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_ip.c 8.7 (Berkeley) 5/15/95 - * $Id: raw_ip.c,v 1.59 1999/05/03 23:57:30 billf Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/tcp.h b/sys/netinet/tcp.h index 89624e30e278..268b54e272c1 100644 --- a/sys/netinet/tcp.h +++ b/sys/netinet/tcp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp.h 8.1 (Berkeley) 6/10/93 - * $Id: tcp.h,v 1.9 1998/06/08 09:47:42 bde Exp $ + * $FreeBSD$ */ #ifndef _NETINET_TCP_H_ diff --git a/sys/netinet/tcp_debug.c b/sys/netinet/tcp_debug.c index c82049e559fa..a01607dac3ec 100644 --- a/sys/netinet/tcp_debug.c +++ b/sys/netinet/tcp_debug.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93 - * $Id: tcp_debug.c,v 1.12 1998/01/08 23:41:53 eivind Exp $ + * $FreeBSD$ */ #include "opt_inet.h" diff --git a/sys/netinet/tcp_debug.h b/sys/netinet/tcp_debug.h index a33743b0779e..c359cb4034b1 100644 --- a/sys/netinet/tcp_debug.h +++ b/sys/netinet/tcp_debug.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_debug.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_TCP_DEBUG_H_ diff --git a/sys/netinet/tcp_fsm.h b/sys/netinet/tcp_fsm.h index 4a535564dc36..2af6e2b6d0e4 100644 --- a/sys/netinet/tcp_fsm.h +++ b/sys/netinet/tcp_fsm.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_fsm.h 8.1 (Berkeley) 6/10/93 - * $Id: tcp_fsm.h,v 1.10 1997/08/16 19:15:38 wollman Exp $ + * $FreeBSD$ */ #ifndef _NETINET_TCP_FSM_H_ diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index e0236b063f81..94813ea6914f 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id: tcp_input.c,v 1.89 1999/08/18 15:40:05 csgr Exp $ + * $FreeBSD$ */ #include "opt_ipfw.h" /* for ipfw_fwd */ diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 6303221e82b7..0fbceb897a32 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_output.c 8.4 (Berkeley) 5/24/95 - * $Id: tcp_output.c,v 1.33 1999/04/07 22:22:06 julian Exp $ + * $FreeBSD$ */ #include "opt_tcpdebug.h" diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index e0236b063f81..94813ea6914f 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id: tcp_input.c,v 1.89 1999/08/18 15:40:05 csgr Exp $ + * $FreeBSD$ */ #include "opt_ipfw.h" /* for ipfw_fwd */ diff --git a/sys/netinet/tcp_seq.h b/sys/netinet/tcp_seq.h index 8cccf199e10b..0ad0fb838be1 100644 --- a/sys/netinet/tcp_seq.h +++ b/sys/netinet/tcp_seq.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_seq.h 8.3 (Berkeley) 6/21/95 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_TCP_SEQ_H_ diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index f5c5b10aa412..3320b079dd52 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95 - * $Id: tcp_subr.c,v 1.57 1999/07/11 18:32:45 green Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index 00746a5b33d2..de7ecc92734a 100644 --- a/sys/netinet/tcp_timer.c +++ b/sys/netinet/tcp_timer.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_timer.c 8.2 (Berkeley) 5/24/95 - * $Id: tcp_timer.c,v 1.28 1998/04/24 09:25:35 dg Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/netinet/tcp_timer.h b/sys/netinet/tcp_timer.h index a2fcb7721257..3c0f39e47a4d 100644 --- a/sys/netinet/tcp_timer.h +++ b/sys/netinet/tcp_timer.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_timer.h 8.1 (Berkeley) 6/10/93 - * $Id: tcp_timer.h,v 1.12 1997/02/22 09:41:42 peter Exp $ + * $FreeBSD$ */ #ifndef _NETINET_TCP_TIMER_H_ diff --git a/sys/netinet/tcp_timewait.c b/sys/netinet/tcp_timewait.c index f5c5b10aa412..3320b079dd52 100644 --- a/sys/netinet/tcp_timewait.c +++ b/sys/netinet/tcp_timewait.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95 - * $Id: tcp_subr.c,v 1.57 1999/07/11 18:32:45 green Exp $ + * $FreeBSD$ */ #include "opt_compat.h" diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index b6d4ae8a5911..231da99d6a1a 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94 - * $Id: tcp_usrreq.c,v 1.43 1999/05/03 23:57:32 billf Exp $ + * $FreeBSD$ */ #include "opt_tcpdebug.h" diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index e2c448a3cea4..eadd4f5b7cfd 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95 - * $Id: tcp_var.h,v 1.49 1999/01/20 17:32:00 fenner Exp $ + * $FreeBSD$ */ #ifndef _NETINET_TCP_VAR_H_ diff --git a/sys/netinet/tcpip.h b/sys/netinet/tcpip.h index ba2e0f28d8d8..2cf3df1d3ba6 100644 --- a/sys/netinet/tcpip.h +++ b/sys/netinet/tcpip.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcpip.h 8.1 (Berkeley) 6/10/93 - * $Id: tcpip.h,v 1.6 1997/02/22 09:41:43 peter Exp $ + * $FreeBSD$ */ #ifndef _NETINET_TCPIP_H_ diff --git a/sys/netinet/udp.h b/sys/netinet/udp.h index e73e1f4ddbbb..635267f065a1 100644 --- a/sys/netinet/udp.h +++ b/sys/netinet/udp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)udp.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETINET_UDP_H_ diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index f086ad8b331d..337e796ad07a 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95 - * $Id: udp_usrreq.c,v 1.54 1999/08/17 12:17:53 csgr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netinet/udp_var.h b/sys/netinet/udp_var.h index 4784a3508944..5ede8a6a3d43 100644 --- a/sys/netinet/udp_var.h +++ b/sys/netinet/udp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)udp_var.h 8.1 (Berkeley) 6/10/93 - * $Id: udp_var.h,v 1.17 1999/02/16 10:49:52 dfr Exp $ + * $FreeBSD$ */ #ifndef _NETINET_UDP_VAR_H_ diff --git a/sys/netipx/ipx.c b/sys/netipx/ipx.c index f23759c50641..5035256f5618 100644 --- a/sys/netipx/ipx.c +++ b/sys/netipx/ipx.c @@ -33,7 +33,7 @@ * * @(#)ipx.c * - * $Id: ipx.c,v 1.15 1998/12/09 13:48:08 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/ipx.h b/sys/netipx/ipx.h index f92657338f89..3bcf5f0b24bc 100644 --- a/sys/netipx/ipx.h +++ b/sys/netipx/ipx.h @@ -33,7 +33,7 @@ * * @(#)ipx.h * - * $Id: ipx.h,v 1.12 1997/05/10 09:58:49 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_IPX_H_ diff --git a/sys/netipx/ipx_cksum.c b/sys/netipx/ipx_cksum.c index 497c05a564ed..4bb9124f0f33 100644 --- a/sys/netipx/ipx_cksum.c +++ b/sys/netipx/ipx_cksum.c @@ -33,7 +33,7 @@ * * @(#)ipx_cksum.c * - * $Id: ipx_cksum.c,v 1.6 1997/05/10 09:58:50 jhay Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/ipx_if.h b/sys/netipx/ipx_if.h index c4f1864422a4..c6ec19e0ded0 100644 --- a/sys/netipx/ipx_if.h +++ b/sys/netipx/ipx_if.h @@ -33,7 +33,7 @@ * * @(#)ipx_if.h * - * $Id: ipx_if.h,v 1.8 1997/05/10 09:58:51 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_IPX_IF_H_ diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index 38b2b3c34d2f..44634b31a4d0 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -33,7 +33,7 @@ * * @(#)ipx_input.c * - * $Id: ipx_input.c,v 1.17 1998/04/06 09:30:42 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c index 5b8b8aa0cf17..4f5721f00fef 100644 --- a/sys/netipx/ipx_ip.c +++ b/sys/netipx/ipx_ip.c @@ -33,7 +33,7 @@ * * @(#)ipx_ip.c * - * $Id: ipx_ip.c,v 1.21 1998/06/07 17:12:19 dfr Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netipx/ipx_ip.h b/sys/netipx/ipx_ip.h index e8bd9cf80f03..0543df5dab29 100644 --- a/sys/netipx/ipx_ip.h +++ b/sys/netipx/ipx_ip.h @@ -33,7 +33,7 @@ * * @(#)ipxip.h * - * $Id: ipx_ip.h,v 1.11 1997/06/26 19:35:50 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_IPXIP_H_ diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c index e732c33b83ee..fb5c2fbbcaa1 100644 --- a/sys/netipx/ipx_outputfl.c +++ b/sys/netipx/ipx_outputfl.c @@ -33,7 +33,7 @@ * * @(#)ipx_outputfl.c * - * $Id: ipx_outputfl.c,v 1.11 1999/02/06 10:48:10 jhay Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/ipx_pcb.c b/sys/netipx/ipx_pcb.c index 7a55c878a59f..6b57bdc2cab6 100644 --- a/sys/netipx/ipx_pcb.c +++ b/sys/netipx/ipx_pcb.c @@ -33,7 +33,7 @@ * * @(#)ipx_pcb.c * - * $Id: ipx_pcb.c,v 1.15 1999/02/06 10:48:10 jhay Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/ipx_pcb.h b/sys/netipx/ipx_pcb.h index 3f03602dcfc8..586f26305560 100644 --- a/sys/netipx/ipx_pcb.h +++ b/sys/netipx/ipx_pcb.h @@ -33,7 +33,7 @@ * * @(#)ipx_pcb.h * - * $Id: ipx_pcb.h,v 1.11 1997/06/26 19:35:54 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_IPX_PCB_H_ diff --git a/sys/netipx/ipx_proto.c b/sys/netipx/ipx_proto.c index f7b8e5947299..36e2b5334fa3 100644 --- a/sys/netipx/ipx_proto.c +++ b/sys/netipx/ipx_proto.c @@ -33,7 +33,7 @@ * * @(#)ipx_proto.c * - * $Id: ipx_proto.c,v 1.13 1998/02/09 06:10:24 eivind Exp $ + * $FreeBSD$ */ #include "opt_ipx.h" diff --git a/sys/netipx/ipx_tun.c b/sys/netipx/ipx_tun.c index 14afb0846577..f2709eb8c8cf 100644 --- a/sys/netipx/ipx_tun.c +++ b/sys/netipx/ipx_tun.c @@ -33,7 +33,7 @@ * * @(#)ipx_tun.c * - * $Id: ipx_tun.c,v 1.7 1997/03/24 11:33:34 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c index 8106eccb9c04..2e20f0fb45cd 100644 --- a/sys/netipx/ipx_usrreq.c +++ b/sys/netipx/ipx_usrreq.c @@ -33,7 +33,7 @@ * * @(#)ipx_usrreq.c * - * $Id: ipx_usrreq.c,v 1.22 1999/02/06 10:48:11 jhay Exp $ + * $FreeBSD$ */ #include "opt_ipx.h" diff --git a/sys/netipx/ipx_var.h b/sys/netipx/ipx_var.h index 8d521a015940..acdafe5adcf6 100644 --- a/sys/netipx/ipx_var.h +++ b/sys/netipx/ipx_var.h @@ -33,7 +33,7 @@ * * @(#)ipx_var.h * - * $Id: ipx_var.h,v 1.11 1998/08/23 03:07:15 wollman Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_IPX_VAR_H_ diff --git a/sys/netipx/spx.h b/sys/netipx/spx.h index 20a4116c2b15..6fca28a17d7a 100644 --- a/sys/netipx/spx.h +++ b/sys/netipx/spx.h @@ -33,7 +33,7 @@ * * @(#)spx.h * - * $Id: spx.h,v 1.13 1997/06/26 19:36:00 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_SPX_H_ diff --git a/sys/netipx/spx_debug.c b/sys/netipx/spx_debug.c index e9b26c385570..d8e0a6f34f0f 100644 --- a/sys/netipx/spx_debug.c +++ b/sys/netipx/spx_debug.c @@ -33,7 +33,7 @@ * * @(#)spx_debug.c * - * $Id: spx_debug.c,v 1.12 1998/01/08 23:41:57 eivind Exp $ + * $FreeBSD$ */ #include "opt_inet.h" diff --git a/sys/netipx/spx_debug.h b/sys/netipx/spx_debug.h index a3f10cb57341..94f2e2f3bbf9 100644 --- a/sys/netipx/spx_debug.h +++ b/sys/netipx/spx_debug.h @@ -33,7 +33,7 @@ * * @(#)spx_debug.h * - * $Id: spx_debug.h,v 1.9 1997/05/10 09:58:57 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_SPX_DEBUG_H_ diff --git a/sys/netipx/spx_timer.h b/sys/netipx/spx_timer.h index 5fc19d1acb71..602200975fad 100644 --- a/sys/netipx/spx_timer.h +++ b/sys/netipx/spx_timer.h @@ -33,7 +33,7 @@ * * @(#)spx_timer.h * - * $Id: spx_timer.h,v 1.8 1997/05/10 09:58:57 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_SPX_TIMER_H_ diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c index 8a23b0ee047a..7418eaced6d1 100644 --- a/sys/netipx/spx_usrreq.c +++ b/sys/netipx/spx_usrreq.c @@ -33,7 +33,7 @@ * * @(#)spx_usrreq.h * - * $Id: spx_usrreq.c,v 1.24 1999/01/28 00:57:51 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/netipx/spx_var.h b/sys/netipx/spx_var.h index ed36a9322164..7dfb783ee89d 100644 --- a/sys/netipx/spx_var.h +++ b/sys/netipx/spx_var.h @@ -33,7 +33,7 @@ * * @(#)spx_var.h * - * $Id: spx_var.h,v 1.7 1997/05/10 09:58:58 jhay Exp $ + * $FreeBSD$ */ #ifndef _NETIPX_SPX_VAR_H_ diff --git a/sys/netns/idp.h b/sys/netns/idp.h index 3d624233d179..e83275659767 100644 --- a/sys/netns/idp.h +++ b/sys/netns/idp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)idp.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_IDP_H_ diff --git a/sys/netns/idp_usrreq.c b/sys/netns/idp_usrreq.c index 6ff4b4f62cf1..a03770f02ddb 100644 --- a/sys/netns/idp_usrreq.c +++ b/sys/netns/idp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)idp_usrreq.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/idp_var.h b/sys/netns/idp_var.h index 13bedb726a91..ce4314177404 100644 --- a/sys/netns/idp_var.h +++ b/sys/netns/idp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)idp_var.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_IDP_VAR_H_ diff --git a/sys/netns/ns.c b/sys/netns/ns.c index ce58ba1a24f6..7af5acf12ac9 100644 --- a/sys/netns/ns.c +++ b/sys/netns/ns.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns.c 8.2 (Berkeley) 11/15/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns.h b/sys/netns/ns.h index 2224534f725d..a20b868cab61 100644 --- a/sys/netns/ns.h +++ b/sys/netns/ns.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_NS_H_ diff --git a/sys/netns/ns_cksum.c b/sys/netns/ns_cksum.c index 617fb2c0f2eb..1f9a58aad096 100644 --- a/sys/netns/ns_cksum.c +++ b/sys/netns/ns_cksum.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_cksum.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns_error.c b/sys/netns/ns_error.c index b72f1994abdd..fc4db94bd69e 100644 --- a/sys/netns/ns_error.c +++ b/sys/netns/ns_error.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_error.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns_error.h b/sys/netns/ns_error.h index d02913e90415..234080130fa7 100644 --- a/sys/netns/ns_error.h +++ b/sys/netns/ns_error.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_error.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_NS_ERROR_H_ diff --git a/sys/netns/ns_if.h b/sys/netns/ns_if.h index a44f36581be7..4dfabe7c7494 100644 --- a/sys/netns/ns_if.h +++ b/sys/netns/ns_if.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_if.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_NS_IF_H_ diff --git a/sys/netns/ns_input.c b/sys/netns/ns_input.c index 363d787e720b..21d64a09a8a6 100644 --- a/sys/netns/ns_input.c +++ b/sys/netns/ns_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_input.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns_ip.c b/sys/netns/ns_ip.c index 6eec470fbd78..0c5fbeb84647 100644 --- a/sys/netns/ns_ip.c +++ b/sys/netns/ns_ip.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_ip.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/netns/ns_output.c b/sys/netns/ns_output.c index 8b044896d4ea..572ed36585fe 100644 --- a/sys/netns/ns_output.c +++ b/sys/netns/ns_output.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_output.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns_pcb.c b/sys/netns/ns_pcb.c index 48c8154b1d83..85f7548e68e9 100644 --- a/sys/netns/ns_pcb.c +++ b/sys/netns/ns_pcb.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_pcb.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/ns_pcb.h b/sys/netns/ns_pcb.h index 37b85dc9d16a..8b5646a32cc5 100644 --- a/sys/netns/ns_pcb.h +++ b/sys/netns/ns_pcb.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_pcb.h 8.1 (Berkeley) 6/10/93 - * $Id: ns_pcb.h,v 1.8 1997/02/22 09:42:21 peter Exp $ + * $FreeBSD$ */ #ifndef _NETNS_NS_PCB_H_ diff --git a/sys/netns/ns_proto.c b/sys/netns/ns_proto.c index 5abf989df6ed..1bee0e472814 100644 --- a/sys/netns/ns_proto.c +++ b/sys/netns/ns_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)ns_proto.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/sp.h b/sys/netns/sp.h index 97ab3d9835d1..adef4fd64b31 100644 --- a/sys/netns/sp.h +++ b/sys/netns/sp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)sp.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_SP_H_ diff --git a/sys/netns/spidp.h b/sys/netns/spidp.h index 02513cdd6216..3920f672a214 100644 --- a/sys/netns/spidp.h +++ b/sys/netns/spidp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spidp.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_SPIDP_H_ diff --git a/sys/netns/spp_debug.c b/sys/netns/spp_debug.c index 88adcab67d40..840d93a844c9 100644 --- a/sys/netns/spp_debug.c +++ b/sys/netns/spp_debug.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_debug.c 8.1 (Berkeley) 6/10/93 - * $Id: spp_debug.c,v 1.8 1997/02/22 09:42:25 peter Exp $ + * $FreeBSD$ */ #include "opt_inet.h" diff --git a/sys/netns/spp_debug.h b/sys/netns/spp_debug.h index 6f6e5c2d544c..db0d71318a52 100644 --- a/sys/netns/spp_debug.h +++ b/sys/netns/spp_debug.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_debug.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_SPP_DEBUG_H_ diff --git a/sys/netns/spp_timer.h b/sys/netns/spp_timer.h index 501c584a58e2..7501a0cc9889 100644 --- a/sys/netns/spp_timer.h +++ b/sys/netns/spp_timer.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_timer.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_SPP_TIMER_H_ diff --git a/sys/netns/spp_usrreq.c b/sys/netns/spp_usrreq.c index 995ae77cb0c4..4ab74ce1e250 100644 --- a/sys/netns/spp_usrreq.c +++ b/sys/netns/spp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_usrreq.c 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/netns/spp_var.h b/sys/netns/spp_var.h index e7c74196f490..e1d88dee9ec2 100644 --- a/sys/netns/spp_var.h +++ b/sys/netns/spp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_var.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _NETNS_SPP_VAR_H_ diff --git a/sys/nfs/bootp_subr.c b/sys/nfs/bootp_subr.c index d91bf90bae35..32952484de43 100644 --- a/sys/nfs/bootp_subr.c +++ b/sys/nfs/bootp_subr.c @@ -1,4 +1,4 @@ -/* $Id: bootp_subr.c,v 1.18 1998/12/07 21:58:43 archie Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1995 Gordon Ross, Adam Glass diff --git a/sys/nfs/krpc.h b/sys/nfs/krpc.h index 0610e4a36740..6c889b57f77c 100644 --- a/sys/nfs/krpc.h +++ b/sys/nfs/krpc.h @@ -1,5 +1,5 @@ /* $NetBSD: krpc.h,v 1.4 1995/12/19 23:07:11 cgd Exp $ */ -/* $Id: krpc.h,v 1.4 1997/08/16 19:15:52 wollman Exp $ */ +/* $FreeBSD$ */ #include diff --git a/sys/nfs/krpc_subr.c b/sys/nfs/krpc_subr.c index fc232b9b74b9..2127d46a6d29 100644 --- a/sys/nfs/krpc_subr.c +++ b/sys/nfs/krpc_subr.c @@ -1,5 +1,5 @@ /* $NetBSD: krpc_subr.c,v 1.12.4.1 1996/06/07 00:52:26 cgd Exp $ */ -/* $Id: krpc_subr.c,v 1.11 1998/08/23 03:07:16 wollman Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1995 Gordon Ross, Adam Glass diff --git a/sys/nfs/nfs.h b/sys/nfs/nfs.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfs/nfs.h +++ b/sys/nfs/nfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/nfs/nfs_bio.c b/sys/nfs/nfs_bio.c index 9d93fed1f9fe..1dad3c43512c 100644 --- a/sys/nfs/nfs_bio.c +++ b/sys/nfs/nfs_bio.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_bio.c 8.9 (Berkeley) 3/30/95 - * $Id: nfs_bio.c,v 1.75 1999/08/12 18:04:39 dt Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfs_common.c b/sys/nfs/nfs_common.c index 9ffb490e1cfb..d42c5ac645d9 100644 --- a/sys/nfs/nfs_common.c +++ b/sys/nfs/nfs_common.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.8 (Berkeley) 5/22/95 - * $Id: nfs_subs.c,v 1.80 1999/08/08 18:42:55 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfs/nfs_common.h b/sys/nfs/nfs_common.h index 8533d529231d..b13c0099b816 100644 --- a/sys/nfs/nfs_common.h +++ b/sys/nfs/nfs_common.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsm_subs.h,v 1.25 1999/08/04 14:41:39 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfs_node.c b/sys/nfs/nfs_node.c index 77ebecbb3551..13ff9b2902a0 100644 --- a/sys/nfs/nfs_node.c +++ b/sys/nfs/nfs_node.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_node.c 8.6 (Berkeley) 5/22/95 - * $Id: nfs_node.c,v 1.30 1999/06/15 23:24:14 mjacob Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfs_nqlease.c b/sys/nfs/nfs_nqlease.c index 2542ee73f129..32b5d3971b0c 100644 --- a/sys/nfs/nfs_nqlease.c +++ b/sys/nfs/nfs_nqlease.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_nqlease.c 8.9 (Berkeley) 5/20/95 - * $Id: nfs_nqlease.c,v 1.42 1999/06/05 05:34:58 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index b5ee411d946b..a8ce893d8525 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.8 (Berkeley) 7/31/95 - * $Id: nfs_serv.c,v 1.82 1999/07/28 08:20:49 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c index 8949d7a32fd8..0059c5119ec1 100644 --- a/sys/nfs/nfs_socket.c +++ b/sys/nfs/nfs_socket.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_socket.c,v 1.52 1999/05/02 23:56:25 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfs/nfs_srvcache.c b/sys/nfs/nfs_srvcache.c index b5adf4a74bd9..b866cbe67813 100644 --- a/sys/nfs/nfs_srvcache.c +++ b/sys/nfs/nfs_srvcache.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_srvcache.c 8.3 (Berkeley) 3/30/95 - * $Id: nfs_srvcache.c,v 1.16 1998/02/09 06:10:36 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfs/nfs_subs.c b/sys/nfs/nfs_subs.c index 9ffb490e1cfb..d42c5ac645d9 100644 --- a/sys/nfs/nfs_subs.c +++ b/sys/nfs/nfs_subs.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.8 (Berkeley) 5/22/95 - * $Id: nfs_subs.c,v 1.80 1999/08/08 18:42:55 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfs/nfs_syscalls.c b/sys/nfs/nfs_syscalls.c index 004bdd2d966e..210dde6c5cca 100644 --- a/sys/nfs/nfs_syscalls.c +++ b/sys/nfs/nfs_syscalls.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_syscalls.c,v 1.49 1999/04/27 11:17:52 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 89fe668f8563..3e90bdb58a89 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.83 1999/04/10 18:53:29 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfs/nfs_vnops.c b/sys/nfs/nfs_vnops.c index 0600c26dd178..f7250cc55c0f 100644 --- a/sys/nfs/nfs_vnops.c +++ b/sys/nfs/nfs_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95 - * $Id: nfs_vnops.c,v 1.138 1999/07/31 01:51:58 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsdiskless.h b/sys/nfs/nfsdiskless.h index f499a2c4baea..487e0bf65226 100644 --- a/sys/nfs/nfsdiskless.h +++ b/sys/nfs/nfsdiskless.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsdiskless.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsdiskless.h,v 1.9 1997/05/12 19:02:55 tegge Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsm_subs.h b/sys/nfs/nfsm_subs.h index 8533d529231d..b13c0099b816 100644 --- a/sys/nfs/nfsm_subs.h +++ b/sys/nfs/nfsm_subs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsm_subs.h,v 1.25 1999/08/04 14:41:39 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsmount.h b/sys/nfs/nfsmount.h index ecb4f058d52a..77ac7e329464 100644 --- a/sys/nfs/nfsmount.h +++ b/sys/nfs/nfsmount.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.3 (Berkeley) 3/30/95 - * $Id: nfsmount.h,v 1.14 1998/05/19 07:11:27 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsnode.h b/sys/nfs/nfsnode.h index 49adeb21e5c7..3bc818ff2594 100644 --- a/sys/nfs/nfsnode.h +++ b/sys/nfs/nfsnode.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 - * $Id: nfsnode.h,v 1.27 1998/11/13 02:39:09 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsproto.h b/sys/nfs/nfsproto.h index 665a187dd3b1..cbb2832704bd 100644 --- a/sys/nfs/nfsproto.h +++ b/sys/nfs/nfsproto.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsproto.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsproto.h,v 1.5 1998/05/31 19:00:19 peter Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFSPROTO_H_ diff --git a/sys/nfs/nfsrtt.h b/sys/nfs/nfsrtt.h index dd7ffae67719..447308633015 100644 --- a/sys/nfs/nfsrtt.h +++ b/sys/nfs/nfsrtt.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrtt.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsrtt.h,v 1.8 1997/06/03 17:22:47 dfr Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsrvcache.h b/sys/nfs/nfsrvcache.h index a05ab31b2c30..eec5850bd381 100644 --- a/sys/nfs/nfsrvcache.h +++ b/sys/nfs/nfsrvcache.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrvcache.h 8.3 (Berkeley) 3/30/95 - * $Id: nfsrvcache.h,v 1.10 1998/02/03 22:15:04 bde Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/nfsv2.h b/sys/nfs/nfsv2.h index 6e5f2c55a22f..6f8f85e00d44 100644 --- a/sys/nfs/nfsv2.h +++ b/sys/nfs/nfsv2.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsv2.h 8.1 (Berkeley) 6/10/93 - * $Id: nfsv2.h,v 1.7 1997/02/22 09:42:52 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfs/nqnfs.h b/sys/nfs/nqnfs.h index 59f64d547770..2ba78aead0f4 100644 --- a/sys/nfs/nqnfs.h +++ b/sys/nfs/nqnfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nqnfs.h 8.3 (Berkeley) 3/30/95 - * $Id: nqnfs.h,v 1.17 1998/06/01 07:23:26 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/rpcv2.h b/sys/nfs/rpcv2.h index 00afefed9542..525df093a42d 100644 --- a/sys/nfs/rpcv2.h +++ b/sys/nfs/rpcv2.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)rpcv2.h 8.2 (Berkeley) 3/30/95 - * $Id: rpcv2.h,v 1.8 1997/05/11 18:05:39 tegge Exp $ + * $FreeBSD$ */ diff --git a/sys/nfs/xdr_subs.h b/sys/nfs/xdr_subs.h index bb60dd0aaa2b..82ee38ad491b 100644 --- a/sys/nfs/xdr_subs.h +++ b/sys/nfs/xdr_subs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)xdr_subs.h 8.3 (Berkeley) 3/30/95 - * $Id: xdr_subs.h,v 1.11 1999/06/05 05:35:03 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/bootp_subr.c b/sys/nfsclient/bootp_subr.c index d91bf90bae35..32952484de43 100644 --- a/sys/nfsclient/bootp_subr.c +++ b/sys/nfsclient/bootp_subr.c @@ -1,4 +1,4 @@ -/* $Id: bootp_subr.c,v 1.18 1998/12/07 21:58:43 archie Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1995 Gordon Ross, Adam Glass diff --git a/sys/nfsclient/krpc.h b/sys/nfsclient/krpc.h index 0610e4a36740..6c889b57f77c 100644 --- a/sys/nfsclient/krpc.h +++ b/sys/nfsclient/krpc.h @@ -1,5 +1,5 @@ /* $NetBSD: krpc.h,v 1.4 1995/12/19 23:07:11 cgd Exp $ */ -/* $Id: krpc.h,v 1.4 1997/08/16 19:15:52 wollman Exp $ */ +/* $FreeBSD$ */ #include diff --git a/sys/nfsclient/krpc_subr.c b/sys/nfsclient/krpc_subr.c index fc232b9b74b9..2127d46a6d29 100644 --- a/sys/nfsclient/krpc_subr.c +++ b/sys/nfsclient/krpc_subr.c @@ -1,5 +1,5 @@ /* $NetBSD: krpc_subr.c,v 1.12.4.1 1996/06/07 00:52:26 cgd Exp $ */ -/* $Id: krpc_subr.c,v 1.11 1998/08/23 03:07:16 wollman Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1995 Gordon Ross, Adam Glass diff --git a/sys/nfsclient/nfs.h b/sys/nfsclient/nfs.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfsclient/nfs.h +++ b/sys/nfsclient/nfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/nfsclient/nfs_bio.c b/sys/nfsclient/nfs_bio.c index 9d93fed1f9fe..1dad3c43512c 100644 --- a/sys/nfsclient/nfs_bio.c +++ b/sys/nfsclient/nfs_bio.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_bio.c 8.9 (Berkeley) 3/30/95 - * $Id: nfs_bio.c,v 1.75 1999/08/12 18:04:39 dt Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfs_nfsiod.c b/sys/nfsclient/nfs_nfsiod.c index 004bdd2d966e..210dde6c5cca 100644 --- a/sys/nfsclient/nfs_nfsiod.c +++ b/sys/nfsclient/nfs_nfsiod.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_syscalls.c,v 1.49 1999/04/27 11:17:52 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfsclient/nfs_node.c b/sys/nfsclient/nfs_node.c index 77ebecbb3551..13ff9b2902a0 100644 --- a/sys/nfsclient/nfs_node.c +++ b/sys/nfsclient/nfs_node.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_node.c 8.6 (Berkeley) 5/22/95 - * $Id: nfs_node.c,v 1.30 1999/06/15 23:24:14 mjacob Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfs_socket.c b/sys/nfsclient/nfs_socket.c index 8949d7a32fd8..0059c5119ec1 100644 --- a/sys/nfsclient/nfs_socket.c +++ b/sys/nfsclient/nfs_socket.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_socket.c,v 1.52 1999/05/02 23:56:25 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c index 9ffb490e1cfb..d42c5ac645d9 100644 --- a/sys/nfsclient/nfs_subs.c +++ b/sys/nfsclient/nfs_subs.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.8 (Berkeley) 5/22/95 - * $Id: nfs_subs.c,v 1.80 1999/08/08 18:42:55 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 89fe668f8563..3e90bdb58a89 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.83 1999/04/10 18:53:29 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c index 0600c26dd178..f7250cc55c0f 100644 --- a/sys/nfsclient/nfs_vnops.c +++ b/sys/nfsclient/nfs_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95 - * $Id: nfs_vnops.c,v 1.138 1999/07/31 01:51:58 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfsargs.h b/sys/nfsclient/nfsargs.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfsclient/nfsargs.h +++ b/sys/nfsclient/nfsargs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/nfsclient/nfsdiskless.h b/sys/nfsclient/nfsdiskless.h index f499a2c4baea..487e0bf65226 100644 --- a/sys/nfsclient/nfsdiskless.h +++ b/sys/nfsclient/nfsdiskless.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsdiskless.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsdiskless.h,v 1.9 1997/05/12 19:02:55 tegge Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfsm_subs.h b/sys/nfsclient/nfsm_subs.h index 8533d529231d..b13c0099b816 100644 --- a/sys/nfsclient/nfsm_subs.h +++ b/sys/nfsclient/nfsm_subs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsm_subs.h,v 1.25 1999/08/04 14:41:39 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfsmount.h b/sys/nfsclient/nfsmount.h index ecb4f058d52a..77ac7e329464 100644 --- a/sys/nfsclient/nfsmount.h +++ b/sys/nfsclient/nfsmount.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.3 (Berkeley) 3/30/95 - * $Id: nfsmount.h,v 1.14 1998/05/19 07:11:27 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfsnode.h b/sys/nfsclient/nfsnode.h index 49adeb21e5c7..3bc818ff2594 100644 --- a/sys/nfsclient/nfsnode.h +++ b/sys/nfsclient/nfsnode.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 - * $Id: nfsnode.h,v 1.27 1998/11/13 02:39:09 msmith Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsclient/nfsstats.h b/sys/nfsclient/nfsstats.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfsclient/nfsstats.h +++ b/sys/nfsclient/nfsstats.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfsserver/nfs.h +++ b/sys/nfsserver/nfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c index b5ee411d946b..a8ce893d8525 100644 --- a/sys/nfsserver/nfs_serv.c +++ b/sys/nfsserver/nfs_serv.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.8 (Berkeley) 7/31/95 - * $Id: nfs_serv.c,v 1.82 1999/07/28 08:20:49 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsserver/nfs_srvcache.c b/sys/nfsserver/nfs_srvcache.c index b5adf4a74bd9..b866cbe67813 100644 --- a/sys/nfsserver/nfs_srvcache.c +++ b/sys/nfsserver/nfs_srvcache.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_srvcache.c 8.3 (Berkeley) 3/30/95 - * $Id: nfs_srvcache.c,v 1.16 1998/02/09 06:10:36 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsserver/nfs_srvsock.c b/sys/nfsserver/nfs_srvsock.c index 8949d7a32fd8..0059c5119ec1 100644 --- a/sys/nfsserver/nfs_srvsock.c +++ b/sys/nfsserver/nfs_srvsock.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_socket.c,v 1.52 1999/05/02 23:56:25 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsserver/nfs_srvsubs.c b/sys/nfsserver/nfs_srvsubs.c index 9ffb490e1cfb..d42c5ac645d9 100644 --- a/sys/nfsserver/nfs_srvsubs.c +++ b/sys/nfsserver/nfs_srvsubs.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.8 (Berkeley) 5/22/95 - * $Id: nfs_subs.c,v 1.80 1999/08/08 18:42:55 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c index 004bdd2d966e..210dde6c5cca 100644 --- a/sys/nfsserver/nfs_syscalls.c +++ b/sys/nfsserver/nfs_syscalls.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_syscalls.c,v 1.49 1999/04/27 11:17:52 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/nfsserver/nfsm_subs.h b/sys/nfsserver/nfsm_subs.h index 8533d529231d..b13c0099b816 100644 --- a/sys/nfsserver/nfsm_subs.h +++ b/sys/nfsserver/nfsm_subs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsm_subs.h,v 1.25 1999/08/04 14:41:39 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsserver/nfsproto.h b/sys/nfsserver/nfsproto.h index 665a187dd3b1..cbb2832704bd 100644 --- a/sys/nfsserver/nfsproto.h +++ b/sys/nfsserver/nfsproto.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsproto.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsproto.h,v 1.5 1998/05/31 19:00:19 peter Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFSPROTO_H_ diff --git a/sys/nfsserver/nfsrvcache.h b/sys/nfsserver/nfsrvcache.h index a05ab31b2c30..eec5850bd381 100644 --- a/sys/nfsserver/nfsrvcache.h +++ b/sys/nfsserver/nfsrvcache.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrvcache.h 8.3 (Berkeley) 3/30/95 - * $Id: nfsrvcache.h,v 1.10 1998/02/03 22:15:04 bde Exp $ + * $FreeBSD$ */ diff --git a/sys/nfsserver/nfsrvstats.h b/sys/nfsserver/nfsrvstats.h index 6fd3a89efdaf..c0cd18fae776 100644 --- a/sys/nfsserver/nfsrvstats.h +++ b/sys/nfsserver/nfsrvstats.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.46 1999/05/02 23:56:23 alc Exp $ + * $FreeBSD$ */ #ifndef _NFS_NFS_H_ diff --git a/sys/ntfs/ntfs.h b/sys/ntfs/ntfs.h index 657c97159d05..7aa65288a00c 100644 --- a/sys/ntfs/ntfs.h +++ b/sys/ntfs/ntfs.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs.h,v 1.4 1999/04/20 21:06:41 semenu Exp $ + * $FreeBSD$ */ /*#define NTFS_DEBUG 1*/ diff --git a/sys/ntfs/ntfs_compr.c b/sys/ntfs/ntfs_compr.c index 953b4169d1f1..412047be2caa 100644 --- a/sys/ntfs/ntfs_compr.c +++ b/sys/ntfs/ntfs_compr.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_compr.c,v 1.4 1999/05/12 09:42:54 semenu Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ntfs/ntfs_compr.h b/sys/ntfs/ntfs_compr.h index a79d3e239a26..bdec08cc3e78 100644 --- a/sys/ntfs/ntfs_compr.h +++ b/sys/ntfs/ntfs_compr.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_compr.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define NTFS_COMPBLOCK_SIZE 0x1000 diff --git a/sys/ntfs/ntfs_extern.h b/sys/ntfs/ntfs_extern.h index 197adf11d9ef..9f714382c2ef 100644 --- a/sys/ntfs/ntfs_extern.h +++ b/sys/ntfs/ntfs_extern.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_extern.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ struct sockaddr; diff --git a/sys/ntfs/ntfs_ihash.c b/sys/ntfs/ntfs_ihash.c index e79554527908..50ee7ac17353 100644 --- a/sys/ntfs/ntfs_ihash.c +++ b/sys/ntfs/ntfs_ihash.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95 - * $Id: ntfs_ihash.c,v 1.4 1999/05/11 19:54:50 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ntfs/ntfs_ihash.h b/sys/ntfs/ntfs_ihash.h index 1b9c3dcd48a0..16132a90f919 100644 --- a/sys/ntfs/ntfs_ihash.h +++ b/sys/ntfs/ntfs_ihash.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_ihash.h,v 1.2 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ void ntfs_nthashinit __P((void)); diff --git a/sys/ntfs/ntfs_inode.h b/sys/ntfs/ntfs_inode.h index 0b6f6a202b26..a61338552804 100644 --- a/sys/ntfs/ntfs_inode.h +++ b/sys/ntfs/ntfs_inode.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_inode.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ /* These flags are kept in i_flag. */ diff --git a/sys/ntfs/ntfs_subr.c b/sys/ntfs/ntfs_subr.c index 46b45de3d1a9..b3e75b334d83 100644 --- a/sys/ntfs/ntfs_subr.c +++ b/sys/ntfs/ntfs_subr.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_subr.c,v 1.4 1999/05/12 09:43:01 semenu Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ntfs/ntfs_subr.h b/sys/ntfs/ntfs_subr.h index ca5f45cd4632..f0b9a8a1df44 100644 --- a/sys/ntfs/ntfs_subr.h +++ b/sys/ntfs/ntfs_subr.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_subr.h,v 1.3 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define VA_LOADED 0x0001 diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index 44877bd2e5d6..183d5dcd03cd 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vfsops.c,v 1.9 1999/08/13 10:29:29 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/ntfs/ntfs_vfsops.h b/sys/ntfs/ntfs_vfsops.h index 015684c90311..d7f5f5d26a11 100644 --- a/sys/ntfs/ntfs_vfsops.h +++ b/sys/ntfs/ntfs_vfsops.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vfsops.h,v 1.2 1999/04/20 21:06:43 semenu Exp $ + * $FreeBSD$ */ #define VG_DONTLOADIN 0x0001 /* Tells ntfs_vgetex to do not call */ /* ntfs_loadnode on ntnode, even if */ diff --git a/sys/ntfs/ntfs_vnops.c b/sys/ntfs/ntfs_vnops.c index fff9add0a322..578f8bf62dfb 100644 --- a/sys/ntfs/ntfs_vnops.c +++ b/sys/ntfs/ntfs_vnops.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfs_vnops.c,v 1.5 1999/05/12 09:43:06 semenu Exp $ + * $FreeBSD$ * */ diff --git a/sys/ntfs/ntfsmount.h b/sys/ntfs/ntfsmount.h index 1e6d322c7194..0a1f7918e383 100644 --- a/sys/ntfs/ntfsmount.h +++ b/sys/ntfs/ntfsmount.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ntfsmount.h,v 1.3 1999/04/20 21:06:44 semenu Exp $ + * $FreeBSD$ */ #define NTFS_MFLAG_CASEINS 0x00000001 diff --git a/sys/pc98/boot/Makefile b/sys/pc98/boot/Makefile index 4af81f7ab1f4..904c72fd7786 100644 --- a/sys/pc98/boot/Makefile +++ b/sys/pc98/boot/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ SUBDIR= biosboot kzipboot netboot rawboot diff --git a/sys/pc98/boot/Makefile.inc b/sys/pc98/boot/Makefile.inc index 88916943ec96..a3603a63e939 100644 --- a/sys/pc98/boot/Makefile.inc +++ b/sys/pc98/boot/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.3 1998/03/14 02:33:54 kato Exp $ +# $FreeBSD$ BINDIR?= /usr/mdec CFLAGS+= -aout diff --git a/sys/pc98/boot/biosboot/Makefile b/sys/pc98/boot/biosboot/Makefile index 3a2640c950d3..925028d109ad 100644 --- a/sys/pc98/boot/biosboot/Makefile +++ b/sys/pc98/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.21 1999/01/03 05:03:46 kato Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/pc98/boot/biosboot/README.386BSD b/sys/pc98/boot/biosboot/README.386BSD index e9423ecc1fd5..3d7c09da5968 100644 --- a/sys/pc98/boot/biosboot/README.386BSD +++ b/sys/pc98/boot/biosboot/README.386BSD @@ -169,4 +169,4 @@ Before you do this ensure you have a booting floppy with correct disktab and bootblock files on it so that if it doesn't work, you can re-disklabel from the floppy. -$Id: README.386BSD,v 1.10 1998/09/15 09:59:58 gibbs Exp $ +$FreeBSD$ diff --git a/sys/pc98/boot/biosboot/README.MACH b/sys/pc98/boot/biosboot/README.MACH index e5562c096a88..73d090a404bd 100644 --- a/sys/pc98/boot/biosboot/README.MACH +++ b/sys/pc98/boot/biosboot/README.MACH @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:33:55 rpd - * $Id: README.MACH,v 1.3 1997/02/22 09:43:02 peter Exp $ + * $FreeBSD$ */ ********NOTE: This is not all relevant to the 386BSD version********** diff --git a/sys/pc98/boot/biosboot/README.serial b/sys/pc98/boot/biosboot/README.serial index bf47e6c4a470..7edcdeec060c 100644 --- a/sys/pc98/boot/biosboot/README.serial +++ b/sys/pc98/boot/biosboot/README.serial @@ -193,4 +193,4 @@ CAVEATS: from the new kernel. -$Id: README.serial,v 1.5 1998/04/07 15:33:47 kato Exp $ +$FreeBSD$ diff --git a/sys/pc98/boot/biosboot/asm.S b/sys/pc98/boot/biosboot/asm.S index 77a4b2f261d3..f14c7f55104c 100644 --- a/sys/pc98/boot/biosboot/asm.S +++ b/sys/pc98/boot/biosboot/asm.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:13 rpd - * $Id: asm.S,v 1.3 1997/02/22 09:43:03 peter Exp $ + * $FreeBSD$ */ diff --git a/sys/pc98/boot/biosboot/asm.h b/sys/pc98/boot/biosboot/asm.h index b90bbcebf158..6f4bcc39e52d 100644 --- a/sys/pc98/boot/biosboot/asm.h +++ b/sys/pc98/boot/biosboot/asm.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.7 92/02/29 15:33:41 rpd - * $Id$ + * $FreeBSD$ */ #define S_ARG0 4(%esp) diff --git a/sys/pc98/boot/biosboot/bios.S b/sys/pc98/boot/biosboot/bios.S index 2d456512c1e0..88d9506c46b4 100644 --- a/sys/pc98/boot/biosboot/bios.S +++ b/sys/pc98/boot/biosboot/bios.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: bios.S,v 1.8 1997/07/13 12:13:01 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/biosboot/boot.c b/sys/pc98/boot/biosboot/boot.c index 5de351fe8229..c225bd35bda3 100644 --- a/sys/pc98/boot/biosboot/boot.c +++ b/sys/pc98/boot/biosboot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.18 1998/10/05 07:58:05 kato Exp $ + * $FreeBSD$ */ diff --git a/sys/pc98/boot/biosboot/boot.h b/sys/pc98/boot/biosboot/boot.h index 32941f9ea418..4e32192eebc6 100644 --- a/sys/pc98/boot/biosboot/boot.h +++ b/sys/pc98/boot/biosboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id: boot.h,v 1.13 1997/12/05 11:50:39 kato Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pc98/boot/biosboot/disk.c b/sys/pc98/boot/biosboot/disk.c index 0d38ebce98c9..ad9d3ff74d88 100644 --- a/sys/pc98/boot/biosboot/disk.c +++ b/sys/pc98/boot/biosboot/disk.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:49 rpd - * $Id: disk.c,v 1.8 1997/02/22 09:43:07 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/biosboot/io.c b/sys/pc98/boot/biosboot/io.c index 0e4b6f3f30b9..3b540dd1c892 100644 --- a/sys/pc98/boot/biosboot/io.c +++ b/sys/pc98/boot/biosboot/io.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:57 rpd - * $Id: io.c,v 1.12 1997/07/13 12:13:02 kato Exp $ + * $FreeBSD$ */ #include "boot.h" diff --git a/sys/pc98/boot/biosboot/serial.S b/sys/pc98/boot/biosboot/serial.S index 2cc22465fe79..f2df31aec6cf 100644 --- a/sys/pc98/boot/biosboot/serial.S +++ b/sys/pc98/boot/biosboot/serial.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:34:26 rpd - * $Id: serial.S,v 1.7 1998/01/02 09:29:15 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/biosboot/start.S b/sys/pc98/boot/biosboot/start.S index 013a40b142ec..a7e69355d621 100644 --- a/sys/pc98/boot/biosboot/start.S +++ b/sys/pc98/boot/biosboot/start.S @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:29 rpd - * $Id: start.S,v 1.5 1998/05/02 02:06:07 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/biosboot/sys.c b/sys/pc98/boot/biosboot/sys.c index ab70bbe0dbfe..1b138b36d479 100644 --- a/sys/pc98/boot/biosboot/sys.c +++ b/sys/pc98/boot/biosboot/sys.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:34 rpd - * $Id: sys.c,v 1.14 1998/04/12 04:48:11 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/biosboot/table.c b/sys/pc98/boot/biosboot/table.c index 4542942b7964..81dc130a0314 100644 --- a/sys/pc98/boot/biosboot/table.c +++ b/sys/pc98/boot/biosboot/table.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:43 rpd - * $Id: table.c,v 1.7 1998/09/15 14:08:34 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/boot/kzipboot/Makefile b/sys/pc98/boot/kzipboot/Makefile index beb70a5e56cc..6bf04e18bdde 100644 --- a/sys/pc98/boot/kzipboot/Makefile +++ b/sys/pc98/boot/kzipboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/05/28 13:48:40 kato Exp $ +# $FreeBSD$ PROG= kztail.o kzhead.o BINMODE = 444 # target is a relocatable object diff --git a/sys/pc98/boot/netboot/3c509.c b/sys/pc98/boot/netboot/3c509.c index adf721c3ec19..accc948c6b4f 100644 --- a/sys/pc98/boot/netboot/3c509.c +++ b/sys/pc98/boot/netboot/3c509.c @@ -18,7 +18,7 @@ Author: Martin Renters. 3c509 support added by Serge Babkin (babkin@hq.icb.chel.su) -$Id$ +$FreeBSD$ ***************************************************************************/ diff --git a/sys/pc98/boot/rawboot/Makefile b/sys/pc98/boot/rawboot/Makefile index 7aafe0de65fd..be5f4cab8f79 100644 --- a/sys/pc98/boot/rawboot/Makefile +++ b/sys/pc98/boot/rawboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1998/03/30 12:24:12 kato Exp $ +# $FreeBSD$ # PROG= boot diff --git a/sys/pc98/cbus/cbus.h b/sys/pc98/cbus/cbus.h index 50abf6975043..e148441fb84e 100644 --- a/sys/pc98/cbus/cbus.h +++ b/sys/pc98/cbus/cbus.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id: pc98.h,v 1.10 1997/02/22 09:43:42 peter Exp $ + * $FreeBSD$ */ #ifndef _PC98_PC98_PC98_H_ diff --git a/sys/pc98/cbus/cbus_dma.c b/sys/pc98/cbus/cbus_dma.c index 9bf92aeb2cd0..10573944d479 100644 --- a/sys/pc98/cbus/cbus_dma.c +++ b/sys/pc98/cbus/cbus_dma.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa_dma.c,v 1.3 1999/05/10 09:09:08 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/cbus/clock.c b/sys/pc98/cbus/clock.c index eb9636363b10..ba644841a9e4 100644 --- a/sys/pc98/cbus/clock.c +++ b/sys/pc98/cbus/clock.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.74 1999/07/30 11:43:10 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/cbus/fdc.c b/sys/pc98/cbus/fdc.c index feae60901435..267eefc4864a 100644 --- a/sys/pc98/cbus/fdc.c +++ b/sys/pc98/cbus/fdc.c @@ -47,7 +47,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.68 1999/08/14 11:40:47 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/pc98/cbus/fdcreg.h b/sys/pc98/cbus/fdcreg.h index b02fc4f1e7e5..ae95cf283885 100644 --- a/sys/pc98/cbus/fdcreg.h +++ b/sys/pc98/cbus/fdcreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fdreg.h 7.1 (Berkeley) 5/9/91 - * $Id: fdreg.h,v 1.4 1997/02/22 09:43:34 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/cbus/gdc.c b/sys/pc98/cbus/gdc.c index 4702090d54c7..64da30263823 100644 --- a/sys/pc98/cbus/gdc.c +++ b/sys/pc98/cbus/gdc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pc98gdc.c,v 1.10 1999/06/24 10:51:29 kato Exp $ + * $FreeBSD$ */ #include "gdc.h" diff --git a/sys/pc98/cbus/olpt.c b/sys/pc98/cbus/olpt.c index fd3529128419..cb4b8d03b865 100644 --- a/sys/pc98/cbus/olpt.c +++ b/sys/pc98/cbus/olpt.c @@ -46,7 +46,7 @@ * SUCH DAMAGE. * * from: unknown origin, 386BSD 0.1 - * $Id: olpt.c,v 1.2 1999/07/06 19:23:20 des Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/cbus/pckbd.c b/sys/pc98/cbus/pckbd.c index bcc707768b38..bbd10a477add 100644 --- a/sys/pc98/cbus/pckbd.c +++ b/sys/pc98/cbus/pckbd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pc98kbd.c,v 1.9 1999/08/23 13:50:08 kato Exp $ + * $FreeBSD$ */ #include "pckbd.h" diff --git a/sys/pc98/cbus/pcrtc.c b/sys/pc98/cbus/pcrtc.c index eb9636363b10..ba644841a9e4 100644 --- a/sys/pc98/cbus/pcrtc.c +++ b/sys/pc98/cbus/pcrtc.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.74 1999/07/30 11:43:10 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/cbus/ppc.c b/sys/pc98/cbus/ppc.c index e21d8413f3d0..266c01540484 100644 --- a/sys/pc98/cbus/ppc.c +++ b/sys/pc98/cbus/ppc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #include "ppc.h" diff --git a/sys/pc98/cbus/ppcreg.h b/sys/pc98/cbus/ppcreg.h index 3acbbf62cdf5..4e85f41cb95d 100644 --- a/sys/pc98/cbus/ppcreg.h +++ b/sys/pc98/cbus/ppcreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #ifndef __PPCREG_H diff --git a/sys/pc98/cbus/sc_machdep.h b/sys/pc98/cbus/sc_machdep.h index e48c5e2209ab..be8419f2df02 100644 --- a/sys/pc98/cbus/sc_machdep.h +++ b/sys/pc98/cbus/sc_machdep.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: sc_machdep.h,v 1.1 1999/06/24 10:51:31 kato Exp $ + * $FreeBSD$ */ #ifndef _PC98_PC98_SC_MACHDEP_H_ diff --git a/sys/pc98/cbus/scgdcrndr.c b/sys/pc98/cbus/scgdcrndr.c index 68730e5f151a..ba28a7022de2 100644 --- a/sys/pc98/cbus/scgdcrndr.c +++ b/sys/pc98/cbus/scgdcrndr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scgdcrndr.c,v 1.1 1999/06/24 10:51:32 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/cbus/scvtb.c b/sys/pc98/cbus/scvtb.c index 2f6f49dbb407..6be4a99cb09f 100644 --- a/sys/pc98/cbus/scvtb.c +++ b/sys/pc98/cbus/scvtb.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scvtbpc98.c,v 1.2 1999/06/24 14:03:07 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c index 857bd2b1c8c1..565b27ddcde4 100644 --- a/sys/pc98/cbus/sio.c +++ b/sys/pc98/cbus/sio.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sio.c,v 1.102 1999/08/17 04:33:11 nyan Exp $ + * $FreeBSD$ * from: @(#)com.c 7.5 (Berkeley) 5/16/91 * from: i386/isa sio.c,v 1.234 */ diff --git a/sys/pc98/cbus/syscons_cbus.c b/sys/pc98/cbus/syscons_cbus.c index 51d0917d6788..8bf43db127db 100644 --- a/sys/pc98/cbus/syscons_cbus.c +++ b/sys/pc98/cbus/syscons_cbus.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons_pc98.c,v 1.3 1999/07/03 08:50:45 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/conf/GENERIC b/sys/pc98/conf/GENERIC index 1c47ba7ac6f7..05c3b8bf2eb9 100644 --- a/sys/pc98/conf/GENERIC +++ b/sys/pc98/conf/GENERIC @@ -11,7 +11,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC98,v 1.83 1999/08/15 09:38:21 phk Exp $ +# $FreeBSD$ # GENERIC98 -- Generic PC98 machine with WD/SCSI disks diff --git a/sys/pc98/conf/GENERIC98 b/sys/pc98/conf/GENERIC98 index 1c47ba7ac6f7..05c3b8bf2eb9 100644 --- a/sys/pc98/conf/GENERIC98 +++ b/sys/pc98/conf/GENERIC98 @@ -11,7 +11,7 @@ # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC98,v 1.83 1999/08/15 09:38:21 phk Exp $ +# $FreeBSD$ # GENERIC98 -- Generic PC98 machine with WD/SCSI disks diff --git a/sys/pc98/conf/Makefile.pc98 b/sys/pc98/conf/Makefile.pc98 index 8740d2398e81..48492d5fc6ea 100644 --- a/sys/pc98/conf/Makefile.pc98 +++ b/sys/pc98/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.66 1999/07/03 08:17:40 kato Exp $ +# $FreeBSD$ # # Makefile for FreeBSD # diff --git a/sys/pc98/conf/devices.pc98 b/sys/pc98/conf/devices.pc98 index 0de2c6f1cc87..0e3045546c93 100644 --- a/sys/pc98/conf/devices.pc98 +++ b/sys/pc98/conf/devices.pc98 @@ -1,6 +1,6 @@ # This file tells what major numbers the various possible swap devices have. # -# $Id: devices.pc98,v 1.7 1998/12/30 07:51:20 kato Exp $ +# $FreeBSD$ # wd 0 wfd 1 diff --git a/sys/pc98/conf/files.pc98 b/sys/pc98/conf/files.pc98 index 359b379f4030..84d3f62a989b 100644 --- a/sys/pc98/conf/files.pc98 +++ b/sys/pc98/conf/files.pc98 @@ -3,7 +3,7 @@ # # modified for PC-9801 # -# $Id: files.pc98,v 1.105 1999/08/09 10:34:59 phk Exp $ +# $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and diff --git a/sys/pc98/conf/majors.pc98 b/sys/pc98/conf/majors.pc98 index 50265b21d206..7d56998aa189 100644 --- a/sys/pc98/conf/majors.pc98 +++ b/sys/pc98/conf/majors.pc98 @@ -1,4 +1,4 @@ -$Id: majors.pc98,v 1.62 1999/08/08 11:12:51 kato Exp $ +$FreeBSD$ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. diff --git a/sys/pc98/conf/options.pc98 b/sys/pc98/conf/options.pc98 index 3c46c2decce3..9906c9b413eb 100644 --- a/sys/pc98/conf/options.pc98 +++ b/sys/pc98/conf/options.pc98 @@ -1,4 +1,4 @@ -# $Id: options.pc98,v 1.92 1999/08/08 11:13:47 kato Exp $ +# $FreeBSD$ DISABLE_PSE IDE_DELAY diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index 52f786f19c6c..939e2289b29e 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.129 1999/08/09 10:35:00 phk Exp $ + * $FreeBSD$ */ #include "apm.h" diff --git a/sys/pc98/i386/userconfig.c b/sys/pc98/i386/userconfig.c index c52b97a6141b..b2859eaf14d7 100644 --- a/sys/pc98/i386/userconfig.c +++ b/sys/pc98/i386/userconfig.c @@ -46,7 +46,7 @@ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** - ** $Id: userconfig.c,v 1.87 1999/08/10 08:35:57 kato Exp $ + ** $FreeBSD$ **/ /** @@ -2561,7 +2561,7 @@ visuserconfig(void) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: userconfig.c,v 1.87 1999/08/10 08:35:57 kato Exp $ + * $FreeBSD$ */ #include "scbus.h" diff --git a/sys/pc98/pc98/atcompat_diskslice.c b/sys/pc98/pc98/atcompat_diskslice.c index b2c1d38a4bb4..ee18554b8ce7 100644 --- a/sys/pc98/pc98/atcompat_diskslice.c +++ b/sys/pc98/pc98/atcompat_diskslice.c @@ -35,7 +35,7 @@ * * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: atcompat_diskslice.c,v 1.16 1999/06/26 02:47:14 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/clock.c b/sys/pc98/pc98/clock.c index eb9636363b10..ba644841a9e4 100644 --- a/sys/pc98/pc98/clock.c +++ b/sys/pc98/pc98/clock.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 - * $Id: clock.c,v 1.74 1999/07/30 11:43:10 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/diskslice_machdep.c b/sys/pc98/pc98/diskslice_machdep.c index 3841c814c72e..1bc1e7653adc 100644 --- a/sys/pc98/pc98/diskslice_machdep.c +++ b/sys/pc98/pc98/diskslice_machdep.c @@ -35,7 +35,7 @@ * * from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91 * from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $ - * $Id: diskslice_machdep.c,v 1.21 1999/08/08 10:06:27 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/fd.c b/sys/pc98/pc98/fd.c index feae60901435..267eefc4864a 100644 --- a/sys/pc98/pc98/fd.c +++ b/sys/pc98/pc98/fd.c @@ -47,7 +47,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.68 1999/08/14 11:40:47 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/pc98/pc98/fdreg.h b/sys/pc98/pc98/fdreg.h index b02fc4f1e7e5..ae95cf283885 100644 --- a/sys/pc98/pc98/fdreg.h +++ b/sys/pc98/pc98/fdreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)fdreg.h 7.1 (Berkeley) 5/9/91 - * $Id: fdreg.h,v 1.4 1997/02/22 09:43:34 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/if_ed.c b/sys/pc98/pc98/if_ed.c index 53aad1eeb495..2f8d4a29bcf7 100644 --- a/sys/pc98/pc98/if_ed.c +++ b/sys/pc98/pc98/if_ed.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ed.c,v 1.66 1999/08/10 12:55:06 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/if_ed98.h b/sys/pc98/pc98/if_ed98.h index a7e4a0510f08..44b77f41de88 100644 --- a/sys/pc98/pc98/if_ed98.h +++ b/sys/pc98/pc98/if_ed98.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/isa_dma.c b/sys/pc98/pc98/isa_dma.c index 9bf92aeb2cd0..10573944d479 100644 --- a/sys/pc98/pc98/isa_dma.c +++ b/sys/pc98/pc98/isa_dma.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa_dma.c,v 1.3 1999/05/10 09:09:08 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index 52f786f19c6c..939e2289b29e 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.129 1999/08/09 10:35:00 phk Exp $ + * $FreeBSD$ */ #include "apm.h" diff --git a/sys/pc98/pc98/mse.c b/sys/pc98/pc98/mse.c index b82d1d37bfde..23ce0f88e668 100644 --- a/sys/pc98/pc98/mse.c +++ b/sys/pc98/pc98/mse.c @@ -11,7 +11,7 @@ * this software for any purpose. It is provided "as is" * without express or implied warranty. * - * $Id: mse.c,v 1.22 1999/05/31 11:28:36 phk Exp $ + * $FreeBSD$ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index d44207eba142..786b01780538 100644 --- a/sys/pc98/pc98/npx.c +++ b/sys/pc98/pc98/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.49 1999/07/26 12:22:41 kato Exp $ + * $FreeBSD$ */ #include "npx.h" diff --git a/sys/pc98/pc98/olpt.c b/sys/pc98/pc98/olpt.c index fd3529128419..cb4b8d03b865 100644 --- a/sys/pc98/pc98/olpt.c +++ b/sys/pc98/pc98/olpt.c @@ -46,7 +46,7 @@ * SUCH DAMAGE. * * from: unknown origin, 386BSD 0.1 - * $Id: olpt.c,v 1.2 1999/07/06 19:23:20 des Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/pc98.c b/sys/pc98/pc98/pc98.c index b7d96a10e299..8517f9723bb8 100644 --- a/sys/pc98/pc98/pc98.c +++ b/sys/pc98/pc98/pc98.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: pc98.c,v 1.55 1998/12/02 08:04:12 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/pc98.h b/sys/pc98/pc98/pc98.h index 50abf6975043..e148441fb84e 100644 --- a/sys/pc98/pc98/pc98.h +++ b/sys/pc98/pc98/pc98.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id: pc98.h,v 1.10 1997/02/22 09:43:42 peter Exp $ + * $FreeBSD$ */ #ifndef _PC98_PC98_PC98_H_ diff --git a/sys/pc98/pc98/pc98gdc.c b/sys/pc98/pc98/pc98gdc.c index 4702090d54c7..64da30263823 100644 --- a/sys/pc98/pc98/pc98gdc.c +++ b/sys/pc98/pc98/pc98gdc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pc98gdc.c,v 1.10 1999/06/24 10:51:29 kato Exp $ + * $FreeBSD$ */ #include "gdc.h" diff --git a/sys/pc98/pc98/pc98kbd.c b/sys/pc98/pc98/pc98kbd.c index bcc707768b38..bbd10a477add 100644 --- a/sys/pc98/pc98/pc98kbd.c +++ b/sys/pc98/pc98/pc98kbd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pc98kbd.c,v 1.9 1999/08/23 13:50:08 kato Exp $ + * $FreeBSD$ */ #include "pckbd.h" diff --git a/sys/pc98/pc98/pcaudio.c b/sys/pc98/pc98/pcaudio.c index 5c8dbf27a1fc..e6181d93ef1b 100644 --- a/sys/pc98/pc98/pcaudio.c +++ b/sys/pc98/pc98/pcaudio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcaudio.c,v 1.24 1999/05/31 11:28:38 phk Exp $ + * $FreeBSD$ */ #include "pca.h" diff --git a/sys/pc98/pc98/ppc.c b/sys/pc98/pc98/ppc.c index e21d8413f3d0..266c01540484 100644 --- a/sys/pc98/pc98/ppc.c +++ b/sys/pc98/pc98/ppc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #include "ppc.h" diff --git a/sys/pc98/pc98/ppcreg.h b/sys/pc98/pc98/ppcreg.h index 3acbbf62cdf5..4e85f41cb95d 100644 --- a/sys/pc98/pc98/ppcreg.h +++ b/sys/pc98/pc98/ppcreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #ifndef __PPCREG_H diff --git a/sys/pc98/pc98/sc_machdep.h b/sys/pc98/pc98/sc_machdep.h index e48c5e2209ab..be8419f2df02 100644 --- a/sys/pc98/pc98/sc_machdep.h +++ b/sys/pc98/pc98/sc_machdep.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: sc_machdep.h,v 1.1 1999/06/24 10:51:31 kato Exp $ + * $FreeBSD$ */ #ifndef _PC98_PC98_SC_MACHDEP_H_ diff --git a/sys/pc98/pc98/scgdcrndr.c b/sys/pc98/pc98/scgdcrndr.c index 68730e5f151a..ba28a7022de2 100644 --- a/sys/pc98/pc98/scgdcrndr.c +++ b/sys/pc98/pc98/scgdcrndr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scgdcrndr.c,v 1.1 1999/06/24 10:51:32 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/pc98/scvtbpc98.c b/sys/pc98/pc98/scvtbpc98.c index 2f6f49dbb407..6be4a99cb09f 100644 --- a/sys/pc98/pc98/scvtbpc98.c +++ b/sys/pc98/pc98/scvtbpc98.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: scvtbpc98.c,v 1.2 1999/06/24 14:03:07 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/pc98/sio.c b/sys/pc98/pc98/sio.c index 857bd2b1c8c1..565b27ddcde4 100644 --- a/sys/pc98/pc98/sio.c +++ b/sys/pc98/pc98/sio.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sio.c,v 1.102 1999/08/17 04:33:11 nyan Exp $ + * $FreeBSD$ * from: @(#)com.c 7.5 (Berkeley) 5/16/91 * from: i386/isa sio.c,v 1.234 */ diff --git a/sys/pc98/pc98/spkr.c b/sys/pc98/pc98/spkr.c index 44b2dd67d19a..1d1318862539 100644 --- a/sys/pc98/pc98/spkr.c +++ b/sys/pc98/pc98/spkr.c @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov * - * $Id: spkr.c,v 1.17 1999/08/18 08:24:35 kato Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/syscons.c b/sys/pc98/pc98/syscons.c index 85a547c1fd2a..c3fb5b180484 100644 --- a/sys/pc98/pc98/syscons.c +++ b/sys/pc98/pc98/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.127 1999/08/27 07:26:25 julian Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/pc98/syscons_pc98.c b/sys/pc98/pc98/syscons_pc98.c index 51d0917d6788..8bf43db127db 100644 --- a/sys/pc98/pc98/syscons_pc98.c +++ b/sys/pc98/pc98/syscons_pc98.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons_pc98.c,v 1.3 1999/07/03 08:50:45 kato Exp $ + * $FreeBSD$ */ #include "sc.h" diff --git a/sys/pc98/pc98/wd.c b/sys/pc98/pc98/wd.c index 1c20cb6fc6b5..4f118d04972d 100644 --- a/sys/pc98/pc98/wd.c +++ b/sys/pc98/pc98/wd.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.86 1999/08/14 11:40:47 phk Exp $ + * $FreeBSD$ */ /* TODO: diff --git a/sys/pc98/pc98/wd_cd.c b/sys/pc98/pc98/wd_cd.c index 865f82bae6a2..72412a931331 100644 --- a/sys/pc98/pc98/wd_cd.c +++ b/sys/pc98/pc98/wd_cd.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: atapi-cd.c,v 1.20 1999/05/31 11:25:51 phk Exp $ + * $FreeBSD$ */ #include "wdc.h" diff --git a/sys/pc98/pc98/wfd.c b/sys/pc98/pc98/wfd.c index a089527fa1ea..f7837d7407bf 100644 --- a/sys/pc98/pc98/wfd.c +++ b/sys/pc98/pc98/wfd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wfd.c,v 1.27 1999/08/14 11:40:41 phk Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pc98/pc98/wst.c b/sys/pc98/pc98/wst.c index 7337796969a5..5dae30e4e97a 100644 --- a/sys/pc98/pc98/wst.c +++ b/sys/pc98/pc98/wst.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wst.c,v 1.23 1999/05/31 11:26:39 phk Exp $ + * $FreeBSD$ */ #include "wdc.h" diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c index 07be6c1c21ea..6497ce4c5044 100644 --- a/sys/pccard/pccard.c +++ b/sys/pccard/pccard.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pccard.c,v 1.81 1999/08/01 18:12:50 imp Exp $ + * $FreeBSD$ */ #include "opt_pcic.h" diff --git a/sys/pccard/pcic.h b/sys/pccard/pcic.h index 34ae30c7c543..5988089d43cd 100644 --- a/sys/pccard/pcic.h +++ b/sys/pccard/pcic.h @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcic.h,v 1.0 1999/02/26 20:52:54 roger Exp $ + * $FreeBSD$ */ int register_pcic_intr(int intr, int device_id, u_int flags, diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index e596a75fbce4..5b23c5e57c27 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcic_p.c,v 1.12 1999/05/09 17:07:11 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pccard/pcic_pci.h b/sys/pccard/pcic_pci.h index 47934f3d02a9..bd8e06c79e45 100644 --- a/sys/pccard/pcic_pci.h +++ b/sys/pccard/pcic_pci.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcic_p.h,v 1.5 1999/04/01 15:28:10 nsayer Exp $ + * $FreeBSD$ */ /* PCI/CardBus Device IDs */ diff --git a/sys/pci/adv_pci.c b/sys/pci/adv_pci.c index 1ca2cee1e597..8f8fc58f374b 100644 --- a/sys/pci/adv_pci.c +++ b/sys/pci/adv_pci.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adv_pci.c,v 1.7 1999/07/03 20:16:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/adw_pci.c b/sys/pci/adw_pci.c index 650978630545..10eda815814a 100644 --- a/sys/pci/adw_pci.c +++ b/sys/pci/adw_pci.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: adw_pci.c,v 1.6 1999/07/03 20:16:58 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/ahc_pci.c b/sys/pci/ahc_pci.c index 54f429f9bab5..64fcbd53c8f6 100644 --- a/sys/pci/ahc_pci.c +++ b/sys/pci/ahc_pci.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_pci.c,v 1.17 1999/08/16 02:33:46 gibbs Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/alpm.c b/sys/pci/alpm.c index 4f98d1a44299..ff4c5d3fb435 100644 --- a/sys/pci/alpm.c +++ b/sys/pci/alpm.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alpm.c,v 1.5 1999/07/03 20:17:00 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/brktree_reg.h b/sys/pci/brktree_reg.h index ab34cec12cd6..643d3f353f58 100644 --- a/sys/pci/brktree_reg.h +++ b/sys/pci/brktree_reg.h @@ -30,7 +30,7 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: brktree_reg.h,v 1.29 1999/06/12 14:54:56 roger Exp $ + * $FreeBSD$ */ #ifndef PCI_LATENCY_TIMER #define PCI_LATENCY_TIMER 0x0c /* pci timer register */ diff --git a/sys/pci/brooktree848.c b/sys/pci/brooktree848.c index 27b73d013a7d..46cf72e121e6 100644 --- a/sys/pci/brooktree848.c +++ b/sys/pci/brooktree848.c @@ -1,4 +1,4 @@ -/* $Id: brooktree848.c,v 1.89 1999/07/12 15:51:48 roger Exp $ */ +/* $FreeBSD$ */ /* BT848 Driver for Brooktree's Bt848, Bt848A, Bt849A, Bt878, Bt879 based cards. The Brooktree BT848 Driver driver is based upon Mark Tinguely and Jim Lowe's driver for the Matrox Meteor PCI card . The diff --git a/sys/pci/bt848_i2c.c b/sys/pci/bt848_i2c.c index a3a1fdd737da..5e4ecc9a8f29 100644 --- a/sys/pci/bt848_i2c.c +++ b/sys/pci/bt848_i2c.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt848_i2c.c,v 1.5 1999/07/03 20:17:01 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/bt848_i2c.h b/sys/pci/bt848_i2c.h index c7d22c50484e..075e9885ae5d 100644 --- a/sys/pci/bt848_i2c.h +++ b/sys/pci/bt848_i2c.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * */ #ifndef _BT848_I2C_H diff --git a/sys/pci/bt_pci.c b/sys/pci/bt_pci.c index 5aa884444497..154a2f2febc3 100644 --- a/sys/pci/bt_pci.c +++ b/sys/pci/bt_pci.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_pci.c,v 1.8 1999/07/03 20:17:01 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/cy_pci.c b/sys/pci/cy_pci.c index 61848c3213de..71e16953af7a 100644 --- a/sys/pci/cy_pci.c +++ b/sys/pci/cy_pci.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cy_pci.c,v 1.15 1999/05/10 10:23:38 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/cy_pcireg.h b/sys/pci/cy_pcireg.h index 150dc54ae57d..707c4db62fec 100644 --- a/sys/pci/cy_pcireg.h +++ b/sys/pci/cy_pcireg.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cy_pcireg.h,v 1.5 1999/01/11 23:43:54 bde Exp $ + * $FreeBSD$ */ #define CY_PCI_BASE_ADDR0 0x10 diff --git a/sys/pci/dpt_pci.c b/sys/pci/dpt_pci.c index 3828d08b6cb0..9df90db97c00 100644 --- a/sys/pci/dpt_pci.c +++ b/sys/pci/dpt_pci.c @@ -32,7 +32,7 @@ * dptpci.c: PCI Bus Attachment for DPT SCSI HBAs */ -#ident "$Id: dpt_pci.c,v 1.14 1999/08/16 01:52:20 gibbs Exp $" +#ident "$FreeBSD$" #include "opt_dpt.h" diff --git a/sys/pci/dpt_pci.h b/sys/pci/dpt_pci.h index 4db7bf985f57..fe7206a1882d 100644 --- a/sys/pci/dpt_pci.h +++ b/sys/pci/dpt_pci.h @@ -28,7 +28,7 @@ * */ -#ident "$Id: dpt_pci.h,v 1.3 1997/10/02 04:25:30 ShimonR Exp $" +#ident "$FreeBSD$" #define DPT_VENDOR_ID 0x00001044 #define DPT_DEVICE_ID 0x0000a400 diff --git a/sys/pci/es1370.c b/sys/pci/es1370.c index dff26f8fb6a7..d1370aa08f54 100644 --- a/sys/pci/es1370.c +++ b/sys/pci/es1370.c @@ -36,7 +36,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: es1370.c,v 1.5 1999/06/15 00:00:10 newton Exp $ + * $FreeBSD$ */ #include "pcm.h" diff --git a/sys/pci/es1370_reg.h b/sys/pci/es1370_reg.h index 72546c61449a..a1adc354be7b 100644 --- a/sys/pci/es1370_reg.h +++ b/sys/pci/es1370_reg.h @@ -18,7 +18,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id$ + * $FreeBSD$ */ #ifndef _ES1370_REG_H diff --git a/sys/pci/ida_pci.c b/sys/pci/ida_pci.c index 330ce7ca1941..70007fb87d43 100644 --- a/sys/pci/ida_pci.c +++ b/sys/pci/ida_pci.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ida_pci.c,v 1.3 1999/07/29 01:03:02 mdodd Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/ide_pci.c b/sys/pci/ide_pci.c index d71bfcc4f548..9870df27ff55 100644 --- a/sys/pci/ide_pci.c +++ b/sys/pci/ide_pci.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ide_pci.c,v 1.38 1999/07/22 19:45:33 julian Exp $ + * $FreeBSD$ */ #include "wd.h" diff --git a/sys/pci/ide_pcireg.h b/sys/pci/ide_pcireg.h index 769645f33134..1f1c540be300 100644 --- a/sys/pci/ide_pcireg.h +++ b/sys/pci/ide_pcireg.h @@ -27,7 +27,7 @@ * SUCH DAMAGE. * * From: wd82371reg.h,v 1.3 1997/02/22 09:44:15 peter Exp $ - * $Id$ + * $FreeBSD$ */ #ifndef _PCI_IDEPCIREG_H_ diff --git a/sys/pci/if_al.c b/sys/pci/if_al.c index 05ea4176fa9b..5d07973947af 100644 --- a/sys/pci/if_al.c +++ b/sys/pci/if_al.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_al.c,v 1.8 1999/08/21 22:10:48 msmith Exp $ + * $FreeBSD$ */ /* @@ -91,7 +91,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_al.c,v 1.8 1999/08/21 22:10:48 msmith Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_alreg.h b/sys/pci/if_alreg.h index 6d8e354779f1..2af519bd35cb 100644 --- a/sys/pci/if_alreg.h +++ b/sys/pci/if_alreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_alreg.h,v 1.1 1999/05/21 04:37:24 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_ax.c b/sys/pci/if_ax.c index e9612ee3e220..da6637f53241 100644 --- a/sys/pci/if_ax.c +++ b/sys/pci/if_ax.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_ax.c,v 1.11 1999/07/06 19:23:22 des Exp $ + * $FreeBSD$ */ /* @@ -90,7 +90,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_ax.c,v 1.11 1999/07/06 19:23:22 des Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_axreg.h b/sys/pci/if_axreg.h index 0e17fa5aa72f..669234a80757 100644 --- a/sys/pci/if_axreg.h +++ b/sys/pci/if_axreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_axreg.h,v 1.6 1999/05/06 15:32:43 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_ed_p.c b/sys/pci/if_ed_p.c index 5f9d2682061a..023457e37c33 100644 --- a/sys/pci/if_ed_p.c +++ b/sys/pci/if_ed_p.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: if_ed_p.c,v 1.16 1999/05/09 17:06:52 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/if_fpa.c b/sys/pci/if_fpa.c index 7d816b8c8075..d70628a9e708 100644 --- a/sys/pci/if_fpa.c +++ b/sys/pci/if_fpa.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fpa.c,v 1.11 1999/08/21 06:24:34 msmith Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/if_fxp.c b/sys/pci/if_fxp.c index 724668c1a328..ee97515fc158 100644 --- a/sys/pci/if_fxp.c +++ b/sys/pci/if_fxp.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxp.c,v 1.69 1999/05/09 10:45:54 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_fxpreg.h b/sys/pci/if_fxpreg.h index d6db196244d7..e593608f0c3b 100644 --- a/sys/pci/if_fxpreg.h +++ b/sys/pci/if_fxpreg.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxpreg.h,v 1.14 1999/02/11 21:47:10 julian Exp $ + * $FreeBSD$ */ #define FXP_VENDORID_INTEL 0x8086 diff --git a/sys/pci/if_fxpvar.h b/sys/pci/if_fxpvar.h index 042d2df96284..7c4717db941e 100644 --- a/sys/pci/if_fxpvar.h +++ b/sys/pci/if_fxpvar.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxpvar.h,v 1.6 1998/08/02 00:29:15 dg Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_lnc_p.c b/sys/pci/if_lnc_p.c index c92ffc083bc7..33c7212295ee 100644 --- a/sys/pci/if_lnc_p.c +++ b/sys/pci/if_lnc_p.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: if_lnc_p.c,v 1.11 1999/07/03 20:17:04 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/if_mx.c b/sys/pci/if_mx.c index 5dca10c5bc58..a6fbdb4486cf 100644 --- a/sys/pci/if_mx.c +++ b/sys/pci/if_mx.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_mx.c,v 1.21 1999/07/06 19:23:26 des Exp $ + * $FreeBSD$ */ /* @@ -97,7 +97,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_mx.c,v 1.21 1999/07/06 19:23:26 des Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_mxreg.h b/sys/pci/if_mxreg.h index 5755826ee512..c19e8911f365 100644 --- a/sys/pci/if_mxreg.h +++ b/sys/pci/if_mxreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_mxreg.h,v 1.7 1999/05/28 18:43:14 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_pn.c b/sys/pci/if_pn.c index 02d5a4802cf6..c3744dbe4058 100644 --- a/sys/pci/if_pn.c +++ b/sys/pci/if_pn.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_pn.c,v 1.24 1999/07/28 02:19:51 wpaul Exp $ + * $FreeBSD$ */ /* @@ -105,7 +105,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_pn.c,v 1.24 1999/07/28 02:19:51 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_pnreg.h b/sys/pci/if_pnreg.h index 70723530802d..0c567d0178d7 100644 --- a/sys/pci/if_pnreg.h +++ b/sys/pci/if_pnreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_pnreg.h,v 1.15 1999/07/28 02:19:52 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index 223f8784c4d9..657aabbf88fe 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_rl.c,v 1.21 1999/08/21 06:24:35 msmith Exp $ + * $FreeBSD$ */ /* @@ -128,7 +128,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_rl.c,v 1.21 1999/08/21 06:24:35 msmith Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_rlreg.h b/sys/pci/if_rlreg.h index f064ef6cd2f5..5eff4a42b2ba 100644 --- a/sys/pci/if_rlreg.h +++ b/sys/pci/if_rlreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_rlreg.h,v 1.10 1999/07/22 20:56:49 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c index e4de7e6956db..9a79c2635291 100644 --- a/sys/pci/if_sf.c +++ b/sys/pci/if_sf.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $ + * $FreeBSD$ */ /* @@ -119,7 +119,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $"; + "$FreeBSD$"; #endif static struct sf_type sf_devs[] = { diff --git a/sys/pci/if_sfreg.h b/sys/pci/if_sfreg.h index 4ead87013a32..e5149aef95b2 100644 --- a/sys/pci/if_sfreg.h +++ b/sys/pci/if_sfreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sfreg.h,v 1.4 1999/07/21 03:44:25 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c index aee546f554bb..4038967091a8 100644 --- a/sys/pci/if_sk.c +++ b/sys/pci/if_sk.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $ + * $FreeBSD$ */ /* @@ -102,7 +102,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $"; + "$FreeBSD$"; #endif static struct sk_type sk_devs[] = { diff --git a/sys/pci/if_skreg.h b/sys/pci/if_skreg.h index f03aeff36705..b0eaa90fce6c 100644 --- a/sys/pci/if_skreg.h +++ b/sys/pci/if_skreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_skreg.h,v 1.5 1999/07/23 02:06:56 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_sr_p.c b/sys/pci/if_sr_p.c index 260f5ef0c5d0..04d0db82c418 100644 --- a/sys/pci/if_sr_p.c +++ b/sys/pci/if_sr_p.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_sr_p.c,v 1.9 1999/05/09 17:06:59 peter Exp $ + * $FreeBSD$ */ #include "sr.h" diff --git a/sys/pci/if_ste.c b/sys/pci/if_ste.c index 6b5bfd4d0e42..d8085782feb3 100644 --- a/sys/pci/if_ste.c +++ b/sys/pci/if_ste.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_ste.c,v 1.1 1999/08/21 18:34:44 wpaul Exp $ + * $FreeBSD$ */ @@ -82,7 +82,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_ste.c,v 1.1 1999/08/21 18:34:44 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_stereg.h b/sys/pci/if_stereg.h index 78bc215c002f..4fe1a0f85de2 100644 --- a/sys/pci/if_stereg.h +++ b/sys/pci/if_stereg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_stereg.h,v 1.1 1999/08/21 18:34:45 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c index c83deefacdd5..5195324852b4 100644 --- a/sys/pci/if_ti.c +++ b/sys/pci/if_ti.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_ti.c,v 1.14 1999/07/27 13:54:15 wpaul Exp $ + * $FreeBSD$ */ /* @@ -131,7 +131,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_ti.c,v 1.14 1999/07/27 13:54:15 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_tireg.h b/sys/pci/if_tireg.h index 09b198230eba..36bbaddff5ad 100644 --- a/sys/pci/if_tireg.h +++ b/sys/pci/if_tireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_tireg.h,v 1.8 1999/07/23 18:46:24 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c index bfa0e3db1c5c..80fc4aad8a0d 100644 --- a/sys/pci/if_tl.c +++ b/sys/pci/if_tl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_tl.c,v 1.37 1999/07/23 02:06:56 wpaul Exp $ + * $FreeBSD$ */ /* @@ -227,7 +227,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_tl.c,v 1.37 1999/07/23 02:06:56 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_tlreg.h b/sys/pci/if_tlreg.h index e9ef74dfede7..b06f5e9a94cb 100644 --- a/sys/pci/if_tlreg.h +++ b/sys/pci/if_tlreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_tlreg.h,v 1.12 1999/07/23 02:17:59 wpaul Exp $ + * $FreeBSD$ */ diff --git a/sys/pci/if_tx.c b/sys/pci/if_tx.c index b7cdc5d3c4c9..6830e10690c7 100644 --- a/sys/pci/if_tx.c +++ b/sys/pci/if_tx.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_tx.c,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_tx.c,v 1.30 1999/08/21 06:24:35 msmith Exp $ */ +/* $FreeBSD$ */ /*- * Copyright (c) 1997 Semen Ustimenko (semen@iclub.nsu.ru) diff --git a/sys/pci/if_txvar.h b/sys/pci/if_txvar.h index 5d0d89570d7d..5efe056267f1 100644 --- a/sys/pci/if_txvar.h +++ b/sys/pci/if_txvar.h @@ -1,5 +1,5 @@ /* $OpenBSD: if_txvar.h,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_txvar.h,v 1.2 1999/03/14 08:30:23 semenu Exp $ */ +/* $FreeBSD$ */ /*- * Copyright (c) 1997 Semen Ustimenko diff --git a/sys/pci/if_vr.c b/sys/pci/if_vr.c index 2f91c23b2505..cae329a5761d 100644 --- a/sys/pci/if_vr.c +++ b/sys/pci/if_vr.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vr.c,v 1.14 1999/08/10 17:15:10 wpaul Exp $ + * $FreeBSD$ */ /* @@ -100,7 +100,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_vr.c,v 1.14 1999/08/10 17:15:10 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_vrreg.h b/sys/pci/if_vrreg.h index e1e4ae6d1cfc..fef8e48fc390 100644 --- a/sys/pci/if_vrreg.h +++ b/sys/pci/if_vrreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vrreg.h,v 1.4 1999/05/06 15:32:50 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_wb.c b/sys/pci/if_wb.c index 1ea58f4144bf..fb635b2cd5e9 100644 --- a/sys/pci/if_wb.c +++ b/sys/pci/if_wb.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wb.c,v 1.13 1999/07/11 00:56:07 wpaul Exp $ + * $FreeBSD$ */ /* @@ -129,7 +129,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_wb.c,v 1.13 1999/07/11 00:56:07 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_wbreg.h b/sys/pci/if_wbreg.h index ed8b35afb2cc..5411339fd401 100644 --- a/sys/pci/if_wbreg.h +++ b/sys/pci/if_wbreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wbreg.h,v 1.4 1999/07/11 00:56:07 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index be5b83ea5d18..04d76a7a083c 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_xl.c,v 1.50 1999/08/02 21:57:57 wpaul Exp $ + * $FreeBSD$ */ /* @@ -163,7 +163,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_xl.c,v 1.50 1999/08/02 21:57:57 wpaul Exp $"; + "$FreeBSD$"; #endif /* diff --git a/sys/pci/if_xlreg.h b/sys/pci/if_xlreg.h index c74824612f03..b50f068e3f42 100644 --- a/sys/pci/if_xlreg.h +++ b/sys/pci/if_xlreg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_xlreg.h,v 1.17 1999/05/30 18:09:17 wpaul Exp $ + * $FreeBSD$ */ #define XL_EE_READ 0x0080 /* read, 5 bit address */ diff --git a/sys/pci/intpm.c b/sys/pci/intpm.c index 7163d37998ed..e90466b45621 100644 --- a/sys/pci/intpm.c +++ b/sys/pci/intpm.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: intpm.c,v 1.12 1999/07/24 19:13:54 nsouch Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/intpmreg.h b/sys/pci/intpmreg.h index fdadef07e151..73816e7748d5 100644 --- a/sys/pci/intpmreg.h +++ b/sys/pci/intpmreg.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /*Register Difinition for Intel Chipset with ACPI Support*/ diff --git a/sys/pci/isp_pci.c b/sys/pci/isp_pci.c index 8fd49bbfd562..1aa31953b36b 100644 --- a/sys/pci/isp_pci.c +++ b/sys/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $Id: isp_pci.c,v 1.30 1999/08/16 19:52:29 mjacob Exp $ */ +/* $FreeBSD$ */ /* * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. * FreeBSD Version. diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index 03256db1e129..6b166b300af0 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncr.c,v 1.149 1999/06/15 13:14:56 des Exp $ +** $FreeBSD$ ** ** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family. ** @@ -1360,7 +1360,7 @@ static void ncr_attach (pcici_t tag, int unit); #if !defined(lint) static const char ident[] = - "\n$Id: ncr.c,v 1.149 1999/06/15 13:14:56 des Exp $\n"; + "\n$FreeBSD$\n"; #endif static const u_long ncr_version = NCR_VERSION * 11 diff --git a/sys/pci/ncrreg.h b/sys/pci/ncrreg.h index 2b5c92572dce..fcc72124377f 100644 --- a/sys/pci/ncrreg.h +++ b/sys/pci/ncrreg.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncrreg.h,v 1.11 1997/08/31 19:42:31 se Exp $ +** $FreeBSD$ ** ** Device driver for the NCR 53C810 PCI-SCSI-Controller. ** diff --git a/sys/pci/pci.c b/sys/pci/pci.c index 75f41e87c72b..214d6f96b80f 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pci.c,v 1.114 1999/07/29 01:03:03 mdodd Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/pci_compat.c b/sys/pci/pci_compat.c index db4d56afa76e..c007dc577063 100644 --- a/sys/pci/pci_compat.c +++ b/sys/pci/pci_compat.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pci_compat.c,v 1.30 1999/07/03 20:17:08 peter Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/pci_if.m b/sys/pci/pci_if.m index b2fa6758fef6..95b0081ca32b 100644 --- a/sys/pci/pci_if.m +++ b/sys/pci/pci_if.m @@ -23,7 +23,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # INTERFACE pci; diff --git a/sys/pci/pcic_p.c b/sys/pci/pcic_p.c index e596a75fbce4..5b23c5e57c27 100644 --- a/sys/pci/pcic_p.c +++ b/sys/pci/pcic_p.c @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcic_p.c,v 1.12 1999/05/09 17:07:11 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/pcic_p.h b/sys/pci/pcic_p.h index 47934f3d02a9..bd8e06c79e45 100644 --- a/sys/pci/pcic_p.h +++ b/sys/pci/pcic_p.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcic_p.h,v 1.5 1999/04/01 15:28:10 nsayer Exp $ + * $FreeBSD$ */ /* PCI/CardBus Device IDs */ diff --git a/sys/pci/pcireg.h b/sys/pci/pcireg.h index 9c0dba09331d..f90df10e14de 100644 --- a/sys/pci/pcireg.h +++ b/sys/pci/pcireg.h @@ -26,7 +26,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcireg.h,v 1.20 1998/10/07 03:40:51 gibbs Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index a5882df530b8..e883b5f2f286 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.124 1999/08/09 21:11:44 mdodd Exp $ +** $FreeBSD$ ** ** Device driver for DEC/INTEL PCI chipsets. ** diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h index f1c6f5e4d744..ae4958dbf265 100644 --- a/sys/pci/pcivar.h +++ b/sys/pci/pcivar.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcivar.h,v 1.33 1999/05/20 15:33:33 gallatin Exp $ + * $FreeBSD$ * */ diff --git a/sys/pci/simos.c b/sys/pci/simos.c index 7a9954b14097..2a9a706b311b 100644 --- a/sys/pci/simos.c +++ b/sys/pci/simos.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: simos.c,v 1.5 1999/05/06 20:16:39 ken Exp $ + * $FreeBSD$ */ #include diff --git a/sys/pci/simos.h b/sys/pci/simos.h index 46093547cf0d..e703074e58c3 100644 --- a/sys/pci/simos.h +++ b/sys/pci/simos.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/pci/ti_fw.h b/sys/pci/ti_fw.h index 51bc01498ad7..8d4ae4dd1ea7 100644 --- a/sys/pci/ti_fw.h +++ b/sys/pci/ti_fw.h @@ -2,7 +2,7 @@ * Firmware for Alteon Tigon 1 chip. * Generated by genfw.c * - * $Id$ + * $FreeBSD$ */ static int tigonFwReleaseMajor = 0xc; static int tigonFwReleaseMinor = 0x3; diff --git a/sys/pci/ti_fw2.h b/sys/pci/ti_fw2.h index e2ee31f7e4c9..e46ac9640143 100644 --- a/sys/pci/ti_fw2.h +++ b/sys/pci/ti_fw2.h @@ -3,7 +3,7 @@ * Built on Thu Jul 15 17:08:34 1999 by wpaul@xylophone * OS: FreeBSD 3.2-RELEASE * - * $Id: genfw.c,v 1.2 1999/03/18 17:16:43 wpaul Exp $ + * $FreeBSD$ */ static int tigon2FwReleaseMajor = 0xc; static int tigon2FwReleaseMinor = 0x3; diff --git a/sys/pci/xmaciireg.h b/sys/pci/xmaciireg.h index fe8946bdabdb..f649e93a044e 100644 --- a/sys/pci/xmaciireg.h +++ b/sys/pci/xmaciireg.h @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: xmaciireg.h,v 1.10 1999/07/09 03:35:12 wpaul Exp $ + * $FreeBSD$ */ /* diff --git a/sys/pci/xrpu.c b/sys/pci/xrpu.c index e34e3c2e65e7..1b56e6bb2787 100644 --- a/sys/pci/xrpu.c +++ b/sys/pci/xrpu.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: xrpu.c,v 1.15 1999/07/13 08:15:22 phk Exp $ + * $FreeBSD$ * * A very simple device driver for PCI cards based on Xilinx 6200 series * FPGA/RPU devices. Current Functionality is to allow you to open and diff --git a/sys/posix4/aio.h b/sys/posix4/aio.h index 73319ece7920..b96e9eb26372 100644 --- a/sys/posix4/aio.h +++ b/sys/posix4/aio.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aio.h,v 1.3 1998/03/23 14:05:25 bde Exp $ + * $FreeBSD$ */ /* aio.h: P1003.1B-1993 Asynchronous I/O */ diff --git a/sys/powerpc/aim/vm_machdep.c b/sys/powerpc/aim/vm_machdep.c index 4f92cf697bfd..2f0dabb94805 100644 --- a/sys/powerpc/aim/vm_machdep.c +++ b/sys/powerpc/aim/vm_machdep.c @@ -38,7 +38,7 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.19 1999/08/05 23:38:13 jdp Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. diff --git a/sys/powerpc/include/_limits.h b/sys/powerpc/include/_limits.h index fe6041b4c4b7..0d258ff9d94c 100644 --- a/sys/powerpc/include/_limits.h +++ b/sys/powerpc/include/_limits.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 - * $Id: limits.h,v 1.12 1999/05/20 23:33:35 ache Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/powerpc/include/bootinfo.h b/sys/powerpc/include/bootinfo.h index cd45e408d85f..86b7e7a729bb 100644 --- a/sys/powerpc/include/bootinfo.h +++ b/sys/powerpc/include/bootinfo.h @@ -1,4 +1,4 @@ -/* $Id: bootinfo.h,v 1.3 1998/10/14 09:53:24 peter Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/powerpc/include/clock.h b/sys/powerpc/include/clock.h index e1915230a842..f243f8b20334 100644 --- a/sys/powerpc/include/clock.h +++ b/sys/powerpc/include/clock.h @@ -3,7 +3,7 @@ * Garrett Wollman, September 1994. * This file is in the public domain. * - * $Id: clock.h,v 1.2 1998/07/22 08:26:23 dfr Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CLOCK_H_ diff --git a/sys/powerpc/include/limits.h b/sys/powerpc/include/limits.h index fe6041b4c4b7..0d258ff9d94c 100644 --- a/sys/powerpc/include/limits.h +++ b/sys/powerpc/include/limits.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 - * $Id: limits.h,v 1.12 1999/05/20 23:33:35 ache Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/powerpc/include/md_var.h b/sys/powerpc/include/md_var.h index 94e87ffd7d83..42d40f3f2dfa 100644 --- a/sys/powerpc/include/md_var.h +++ b/sys/powerpc/include/md_var.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: md_var.h,v 1.6 1999/07/01 21:58:38 peter Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MD_VAR_H_ diff --git a/sys/powerpc/include/ptrace.h b/sys/powerpc/include/ptrace.h index 2c43a2eef8d4..55a26fd636ad 100644 --- a/sys/powerpc/include/ptrace.h +++ b/sys/powerpc/include/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 - * $Id: ptrace.h,v 1.6 1998/05/19 00:00:12 tegge Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_PTRACE_H_ diff --git a/sys/powerpc/powerpc/elf_machdep.c b/sys/powerpc/powerpc/elf_machdep.c index 646e3536573e..5582fcb1337d 100644 --- a/sys/powerpc/powerpc/elf_machdep.c +++ b/sys/powerpc/powerpc/elf_machdep.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: elf_machdep.c,v 1.5 1999/07/16 09:16:11 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/sys/powerpc/powerpc/genassym.c b/sys/powerpc/powerpc/genassym.c index 945f537aaddf..dc838f71ace7 100644 --- a/sys/powerpc/powerpc/genassym.c +++ b/sys/powerpc/powerpc/genassym.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91 - * $Id: genassym.c,v 1.7 1999/06/28 09:15:35 peter Exp $ + * $FreeBSD$ */ #include diff --git a/sys/powerpc/powerpc/procfs_machdep.c b/sys/powerpc/powerpc/procfs_machdep.c index cfaa023fd01f..000eb02a0a7f 100644 --- a/sys/powerpc/powerpc/procfs_machdep.c +++ b/sys/powerpc/powerpc/procfs_machdep.c @@ -37,7 +37,7 @@ * @(#)procfs_machdep.c 8.3 (Berkeley) 1/27/94 * * From: - * $Id: procfs_machdep.c,v 1.2 1998/09/14 22:43:19 jdp Exp $ + * $FreeBSD$ */ /* diff --git a/sys/powerpc/powerpc/vm_machdep.c b/sys/powerpc/powerpc/vm_machdep.c index 4f92cf697bfd..2f0dabb94805 100644 --- a/sys/powerpc/powerpc/vm_machdep.c +++ b/sys/powerpc/powerpc/vm_machdep.c @@ -38,7 +38,7 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.19 1999/08/05 23:38:13 jdp Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. diff --git a/sys/svr4/Makefile b/sys/svr4/Makefile index d8fd59b7fb3c..670fccb6a668 100644 --- a/sys/svr4/Makefile +++ b/sys/svr4/Makefile @@ -1,6 +1,6 @@ # Makefile for syscall tables # -# $Id: Makefile,v 1.3 1997/03/29 11:17:26 peter Exp $ +# $FreeBSD$ all: @echo "make svr4_sysent.c only" diff --git a/sys/svr4/imgact_svr4.c b/sys/svr4/imgact_svr4.c index 5fcfcb5bafca..707e7e4d3ac4 100644 --- a/sys/svr4/imgact_svr4.c +++ b/sys/svr4/imgact_svr4.c @@ -29,7 +29,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4.h b/sys/svr4/svr4.h index a42d49d4f9d4..52910bf349c3 100644 --- a/sys/svr4/svr4.h +++ b/sys/svr4/svr4.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if !defined(_SVR4_H) diff --git a/sys/svr4/svr4_acl.h b/sys/svr4/svr4_acl.h index f1a405f2fd6a..6d9454f65ecd 100644 --- a/sys/svr4/svr4_acl.h +++ b/sys/svr4/svr4_acl.h @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ACL_H_ #define _SVR4_ACL_H_ diff --git a/sys/svr4/svr4_dirent.h b/sys/svr4/svr4_dirent.h index 26ee8164aeb0..244078227888 100644 --- a/sys/svr4/svr4_dirent.h +++ b/sys/svr4/svr4_dirent.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_DIRENT_H_ diff --git a/sys/svr4/svr4_errno.h b/sys/svr4/svr4_errno.h index 50dd46a43127..cc39929acfd5 100644 --- a/sys/svr4/svr4_errno.h +++ b/sys/svr4/svr4_errno.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ERRNO_H_ diff --git a/sys/svr4/svr4_exec.h b/sys/svr4/svr4_exec.h index 301915940bd3..716dad18924a 100644 --- a/sys/svr4/svr4_exec.h +++ b/sys/svr4/svr4_exec.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_EXEC_H_ diff --git a/sys/svr4/svr4_fcntl.c b/sys/svr4/svr4_fcntl.c index add04e382f73..60b975966a4b 100644 --- a/sys/svr4/svr4_fcntl.c +++ b/sys/svr4/svr4_fcntl.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_fcntl.c,v 1.3 1999/07/30 12:45:15 newton Exp $ + * $FreeBSD$ */ #include #include diff --git a/sys/svr4/svr4_fcntl.h b/sys/svr4/svr4_fcntl.h index 6ee21fae8339..615e09c219fb 100644 --- a/sys/svr4/svr4_fcntl.h +++ b/sys/svr4/svr4_fcntl.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_FCNTL_H_ diff --git a/sys/svr4/svr4_filio.c b/sys/svr4/svr4_filio.c index 9dfeced92f6b..0be9f221c7bc 100644 --- a/sys/svr4/svr4_filio.c +++ b/sys/svr4/svr4_filio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_filio.h b/sys/svr4/svr4_filio.h index 254e2da813c7..37184cb72610 100644 --- a/sys/svr4/svr4_filio.h +++ b/sys/svr4/svr4_filio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_FILIO_H_ diff --git a/sys/svr4/svr4_fuser.h b/sys/svr4/svr4_fuser.h index bc726c12cefa..25cdcf13e0be 100644 --- a/sys/svr4/svr4_fuser.h +++ b/sys/svr4/svr4_fuser.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Derived from: * $NetBSD: svr4_fuser.h,v 1.4 1998/09/04 19:54:38 christos Exp $ */ diff --git a/sys/svr4/svr4_hrt.h b/sys/svr4/svr4_hrt.h index 8fc0231f4645..c160b8eeb6e9 100644 --- a/sys/svr4/svr4_hrt.h +++ b/sys/svr4/svr4_hrt.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_HRT_H_ diff --git a/sys/svr4/svr4_ioctl.c b/sys/svr4/svr4_ioctl.c index 02c120217636..401c58b2a960 100644 --- a/sys/svr4/svr4_ioctl.c +++ b/sys/svr4/svr4_ioctl.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_ioctl.h b/sys/svr4/svr4_ioctl.h index f95e5ee53453..a5c6a5324181 100644 --- a/sys/svr4/svr4_ioctl.h +++ b/sys/svr4/svr4_ioctl.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_IOCTL_H_ diff --git a/sys/svr4/svr4_ipc.c b/sys/svr4/svr4_ipc.c index 1f9b7573cc72..f884fa16c4ed 100644 --- a/sys/svr4/svr4_ipc.c +++ b/sys/svr4/svr4_ipc.c @@ -1,5 +1,5 @@ /* - * $Id$ + * $FreeBSD$ * Derived from: * $NetBSD: svr4_ipc.c,v 1.7 1998/10/19 22:43:00 tron Exp $ */ diff --git a/sys/svr4/svr4_ipc.h b/sys/svr4/svr4_ipc.h index 56d7f5572be7..6aadb7e050ec 100644 --- a/sys/svr4/svr4_ipc.h +++ b/sys/svr4/svr4_ipc.h @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_IPC_H_ diff --git a/sys/svr4/svr4_misc.c b/sys/svr4/svr4_misc.c index 35aa8e603e6e..9535cba8972b 100644 --- a/sys/svr4/svr4_misc.c +++ b/sys/svr4/svr4_misc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_misc.c,v 1.4 1999/07/30 12:45:16 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/svr4/svr4_mman.h b/sys/svr4/svr4_mman.h index 77500fad8a3d..db7c3dacef5f 100644 --- a/sys/svr4/svr4_mman.h +++ b/sys/svr4/svr4_mman.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_MMAN_H_ diff --git a/sys/svr4/svr4_resource.c b/sys/svr4/svr4_resource.c index 32717998d72e..7c39f44b3a1e 100644 --- a/sys/svr4/svr4_resource.c +++ b/sys/svr4/svr4_resource.c @@ -39,7 +39,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/svr4/svr4_resource.h b/sys/svr4/svr4_resource.h index caab421cd6c6..3512df387674 100644 --- a/sys/svr4/svr4_resource.h +++ b/sys/svr4/svr4_resource.h @@ -38,7 +38,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/svr4/svr4_siginfo.h b/sys/svr4/svr4_siginfo.h index 0f4c3e28f7cc..be898374dc2b 100644 --- a/sys/svr4/svr4_siginfo.h +++ b/sys/svr4/svr4_siginfo.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SIGINFO_H_ diff --git a/sys/svr4/svr4_signal.c b/sys/svr4/svr4_signal.c index 2e1e088f902f..b1239871942d 100644 --- a/sys/svr4/svr4_signal.c +++ b/sys/svr4/svr4_signal.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_signal.h b/sys/svr4/svr4_signal.h index 0b02985068d4..8fb861d20147 100644 --- a/sys/svr4/svr4_signal.h +++ b/sys/svr4/svr4_signal.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SIGNAL_H_ diff --git a/sys/svr4/svr4_socket.c b/sys/svr4/svr4_socket.c index f42690071599..e2eafa304e5d 100644 --- a/sys/svr4/svr4_socket.c +++ b/sys/svr4/svr4_socket.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_socket.c,v 1.2 1999/07/30 12:45:17 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/svr4/svr4_socket.h b/sys/svr4/svr4_socket.h index e7ee86b9b5f8..96e3582738fb 100644 --- a/sys/svr4/svr4_socket.h +++ b/sys/svr4/svr4_socket.h @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_socket.h,v 1.2 1999/07/30 12:45:18 newton Exp $ + * $FreeBSD$ */ #ifndef _SVR4_SOCKET_H_ diff --git a/sys/svr4/svr4_sockio.c b/sys/svr4/svr4_sockio.c index c0c9767bc6d6..7d6184612762 100644 --- a/sys/svr4/svr4_sockio.c +++ b/sys/svr4/svr4_sockio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_sockio.h b/sys/svr4/svr4_sockio.h index f363caaddcbb..dd4e220c9f48 100644 --- a/sys/svr4/svr4_sockio.h +++ b/sys/svr4/svr4_sockio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SOCKIO_H_ diff --git a/sys/svr4/svr4_sockmod.h b/sys/svr4/svr4_sockmod.h index 36e0a8a24b60..927ba0d28367 100644 --- a/sys/svr4/svr4_sockmod.h +++ b/sys/svr4/svr4_sockmod.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SOCKMOD_H_ diff --git a/sys/svr4/svr4_stat.c b/sys/svr4/svr4_stat.c index 2b6755127dd0..9ffcbc58d754 100644 --- a/sys/svr4/svr4_stat.c +++ b/sys/svr4/svr4_stat.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_stat.h b/sys/svr4/svr4_stat.h index 082cb409f786..7eeff44f30ac 100644 --- a/sys/svr4/svr4_stat.h +++ b/sys/svr4/svr4_stat.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STAT_H_ diff --git a/sys/svr4/svr4_statvfs.h b/sys/svr4/svr4_statvfs.h index cc904abb89e3..b3bf473a1b52 100644 --- a/sys/svr4/svr4_statvfs.h +++ b/sys/svr4/svr4_statvfs.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STATVFS_H_ diff --git a/sys/svr4/svr4_stream.c b/sys/svr4/svr4_stream.c index 41709258bd8c..4ced1bc07f3a 100644 --- a/sys/svr4/svr4_stream.c +++ b/sys/svr4/svr4_stream.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_stream.c,v 1.2 1999/07/30 12:45:18 newton Exp $ + * $FreeBSD$ */ /* diff --git a/sys/svr4/svr4_stropts.h b/sys/svr4/svr4_stropts.h index 52badbb502ef..2fa14a1e988a 100644 --- a/sys/svr4/svr4_stropts.h +++ b/sys/svr4/svr4_stropts.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_STROPTS_H_ diff --git a/sys/svr4/svr4_sysconfig.h b/sys/svr4/svr4_sysconfig.h index 331fa7ebaa0f..874c5653e634 100644 --- a/sys/svr4/svr4_sysconfig.h +++ b/sys/svr4/svr4_sysconfig.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SYSCONFIG_H_ diff --git a/sys/svr4/svr4_systeminfo.h b/sys/svr4/svr4_systeminfo.h index 0e05a658d0b7..40bc2b85d757 100644 --- a/sys/svr4/svr4_systeminfo.h +++ b/sys/svr4/svr4_systeminfo.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_SYSTEMINFO_H_ diff --git a/sys/svr4/svr4_sysvec.c b/sys/svr4/svr4_sysvec.c index 95427ec67a94..099bb9c4dfa9 100644 --- a/sys/svr4/svr4_sysvec.c +++ b/sys/svr4/svr4_sysvec.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_sysvec.c,v 1.4 1999/07/30 12:45:19 newton Exp $ + * $FreeBSD$ */ /* XXX we use functions that might not exist. */ diff --git a/sys/svr4/svr4_termios.c b/sys/svr4/svr4_termios.c index 45525a230607..450c0847a99e 100644 --- a/sys/svr4/svr4_termios.c +++ b/sys/svr4/svr4_termios.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_termios.h b/sys/svr4/svr4_termios.h index f7eddd443667..8afa4f321bc3 100644 --- a/sys/svr4/svr4_termios.h +++ b/sys/svr4/svr4_termios.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TERMIOS_H_ diff --git a/sys/svr4/svr4_time.h b/sys/svr4/svr4_time.h index cc9d7a7a1865..3d61771fc904 100644 --- a/sys/svr4/svr4_time.h +++ b/sys/svr4/svr4_time.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TIME_H_ diff --git a/sys/svr4/svr4_timod.h b/sys/svr4/svr4_timod.h index 7d98e05d782c..f0c508f511b8 100644 --- a/sys/svr4/svr4_timod.h +++ b/sys/svr4/svr4_timod.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TIMOD_H_ diff --git a/sys/svr4/svr4_ttold.c b/sys/svr4/svr4_ttold.c index ac4c1d62c8ef..d597691cc699 100644 --- a/sys/svr4/svr4_ttold.c +++ b/sys/svr4/svr4_ttold.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/svr4/svr4_ttold.h b/sys/svr4/svr4_ttold.h index 81ea51448fd5..c578170a1ef9 100644 --- a/sys/svr4/svr4_ttold.h +++ b/sys/svr4/svr4_ttold.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TTOLD_H_ diff --git a/sys/svr4/svr4_types.h b/sys/svr4/svr4_types.h index 2aed74e4ff84..410746b6adc9 100644 --- a/sys/svr4/svr4_types.h +++ b/sys/svr4/svr4_types.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_TYPES_H_ diff --git a/sys/svr4/svr4_ucontext.h b/sys/svr4/svr4_ucontext.h index c37865283da6..04bebe6eb81e 100644 --- a/sys/svr4/svr4_ucontext.h +++ b/sys/svr4/svr4_ucontext.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_UCONTEXT_H_ diff --git a/sys/svr4/svr4_ulimit.h b/sys/svr4/svr4_ulimit.h index bd83d721abbd..0735d42f722f 100644 --- a/sys/svr4/svr4_ulimit.h +++ b/sys/svr4/svr4_ulimit.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_ULIMIT_H_ diff --git a/sys/svr4/svr4_ustat.h b/sys/svr4/svr4_ustat.h index 3c805a4feb43..0033c96bae0d 100644 --- a/sys/svr4/svr4_ustat.h +++ b/sys/svr4/svr4_ustat.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_USTAT_H_ diff --git a/sys/svr4/svr4_util.h b/sys/svr4/svr4_util.h index a2f28e340416..629edd69cd4a 100644 --- a/sys/svr4/svr4_util.h +++ b/sys/svr4/svr4_util.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: svr4_util.h,v 1.2 1999/07/30 12:45:21 newton Exp $ + * $FreeBSD$ */ #ifndef _SVR4_UTIL_H_ diff --git a/sys/svr4/svr4_utsname.h b/sys/svr4/svr4_utsname.h index e104778c9d17..a3714c9b1c10 100644 --- a/sys/svr4/svr4_utsname.h +++ b/sys/svr4/svr4_utsname.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_UTSNAME_H_ diff --git a/sys/svr4/svr4_wait.h b/sys/svr4/svr4_wait.h index 2945c1948275..9a92c0114c1c 100644 --- a/sys/svr4/svr4_wait.h +++ b/sys/svr4/svr4_wait.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SVR4_WAIT_H_ diff --git a/sys/svr4/syscalls.conf b/sys/svr4/syscalls.conf index 5c01a85cad74..46f7bd3df7be 100644 --- a/sys/svr4/syscalls.conf +++ b/sys/svr4/syscalls.conf @@ -1,4 +1,4 @@ -# $Id: syscalls.conf,v 1.4 1998/03/13 19:13:54 jb Exp $ +# $FreeBSD$ sysnames="svr4_syscallnames.c" sysproto="svr4_proto.h" sysproto_h=_SVR4_SYSPROTO_H_ diff --git a/sys/svr4/syscalls.master b/sys/svr4/syscalls.master index 703120d7d236..43e8f4886c68 100644 --- a/sys/svr4/syscalls.master +++ b/sys/svr4/syscalls.master @@ -20,7 +20,7 @@ ; OBSOL obsolete, not included in system, only specifies name ; UNIMPL not implemented, placeholder only ; -; $Id: syscalls.master,v 1.2 1999/07/30 12:45:21 newton Exp $ +; $FreeBSD$ ; #include #include diff --git a/sys/sys/_posix.h b/sys/sys/_posix.h index b64222051d80..ea0436a93b54 100644 --- a/sys/sys/_posix.h +++ b/sys/sys/_posix.h @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: _posix.h,v 1.3 1998/10/16 03:55:01 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/sys/_sigset.h b/sys/sys/_sigset.h index 471baa97b754..4a0fee85f7f1 100644 --- a/sys/sys/_sigset.h +++ b/sys/sys/_sigset.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.4 (Berkeley) 5/4/95 - * $Id: signal.h,v 1.14 1998/08/05 09:04:36 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_SIGNAL_H_ diff --git a/sys/sys/acct.h b/sys/sys/acct.h index e38675d1ae5a..d59d974cb41e 100644 --- a/sys/sys/acct.h +++ b/sys/sys/acct.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)acct.h 8.4 (Berkeley) 1/9/95 - * $Id: acct.h,v 1.9 1998/02/01 20:08:35 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_ACCT_H_ diff --git a/sys/sys/aio.h b/sys/sys/aio.h index 251d354272d5..68a5698503d1 100644 --- a/sys/sys/aio.h +++ b/sys/sys/aio.h @@ -13,7 +13,7 @@ * bad that happens because of using this software isn't the responsibility * of the author. This software is distributed AS-IS. * - * $Id: aio.h,v 1.9 1999/01/17 22:33:08 dt Exp $ + * $FreeBSD$ */ #ifndef _SYS_AIO_H_ diff --git a/sys/sys/bio.h b/sys/sys/bio.h index 609a37072f9f..f84498589ed8 100644 --- a/sys/sys/bio.h +++ b/sys/sys/bio.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)buf.h 8.9 (Berkeley) 3/30/95 - * $Id: buf.h,v 1.77 1999/07/09 16:41:18 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_BUF_H_ diff --git a/sys/sys/blist.h b/sys/sys/blist.h index 05d82398d1b6..a26932cae89f 100644 --- a/sys/sys/blist.h +++ b/sys/sys/blist.h @@ -24,7 +24,7 @@ * that. Managing something like 512MB worth of 4K blocks * eats around 32 KBytes of memory. * - * $Id: blist.h,v Exp $ + * $FreeBSD$ */ #ifndef _SYS_BLIST_H_ diff --git a/sys/sys/buf.h b/sys/sys/buf.h index 609a37072f9f..f84498589ed8 100644 --- a/sys/sys/buf.h +++ b/sys/sys/buf.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)buf.h 8.9 (Berkeley) 3/30/95 - * $Id: buf.h,v 1.77 1999/07/09 16:41:18 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_BUF_H_ diff --git a/sys/sys/bus.h b/sys/sys/bus.h index f02b3190d84c..03a644975cce 100644 --- a/sys/sys/bus.h +++ b/sys/sys/bus.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bus.h,v 1.21 1999/07/24 09:34:10 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_BUS_H_ diff --git a/sys/sys/bus_dma.h b/sys/sys/bus_dma.h index 28e80ba2b89a..b6a9795a5ae5 100644 --- a/sys/sys/bus_dma.h +++ b/sys/sys/bus_dma.h @@ -67,7 +67,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */ +/* $FreeBSD$ */ #ifndef _I386_BUS_H_ #define _I386_BUS_H_ diff --git a/sys/sys/bus_private.h b/sys/sys/bus_private.h index f3539a3d4dac..27b0a6c0e297 100644 --- a/sys/sys/bus_private.h +++ b/sys/sys/bus_private.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bus_private.h,v 1.8 1999/05/14 09:13:39 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_BUS_PRIVATE_H_ diff --git a/sys/sys/callout.h b/sys/sys/callout.h index ddb830b866d7..971ac9f88079 100644 --- a/sys/sys/callout.h +++ b/sys/sys/callout.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)callout.h 8.2 (Berkeley) 1/21/94 - * $Id: callout.h,v 1.11 1998/01/11 00:43:51 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_CALLOUT_H_ diff --git a/sys/sys/ccdvar.h b/sys/sys/ccdvar.h index 862419dc3ffc..82ac51d9b559 100644 --- a/sys/sys/ccdvar.h +++ b/sys/sys/ccdvar.h @@ -1,4 +1,4 @@ -/* $Id: ccdvar.h,v 1.7 1998/09/15 10:07:26 gibbs Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ccdvar.h,v 1.7.2.1 1995/10/12 21:30:18 thorpej Exp $ */ diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 587e7d72ecac..f062c772da77 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)cdefs.h 8.8 (Berkeley) 1/9/95 - * $Id: cdefs.h,v 1.23 1998/10/29 04:41:24 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_CDEFS_H_ diff --git a/sys/sys/cdio.h b/sys/sys/cdio.h index 516e67abe0b8..dbb0f29f9abc 100644 --- a/sys/sys/cdio.h +++ b/sys/sys/cdio.h @@ -1,7 +1,7 @@ /* * 16 Feb 93 Julian Elischer (julian@dialix.oz.au) * - * $Id: cdio.h,v 1.18 1998/06/08 09:47:47 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/sys/chio.h b/sys/sys/chio.h index 3e0cea197bac..7a2403f27dd3 100644 --- a/sys/sys/chio.h +++ b/sys/sys/chio.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: chio.h,v 1.12 1998/09/15 10:07:26 gibbs Exp $ + * $FreeBSD$ */ #ifndef _SYS_CHIO_H_ diff --git a/sys/sys/clist.h b/sys/sys/clist.h index 5e87f2b11cdd..d1c22fa3d599 100644 --- a/sys/sys/clist.h +++ b/sys/sys/clist.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)clist.h 8.1 (Berkeley) 6/4/93 - * $Id: clist.h,v 1.7 1997/02/22 09:44:58 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_CLIST_H_ diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 00645fb949b4..4e5a94a5aba8 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.5 (Berkeley) 1/9/95 - * $Id: conf.h,v 1.78 1999/08/25 22:50:12 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_CONF_H_ diff --git a/sys/sys/cons.h b/sys/sys/cons.h index a626091976ec..b6414a1244ca 100644 --- a/sys/sys/cons.h +++ b/sys/sys/cons.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)cons.h 7.2 (Berkeley) 5/9/91 - * $Id: cons.h,v 1.20 1999/06/22 14:12:55 yokota Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_CONS_H_ diff --git a/sys/sys/consio.h b/sys/sys/consio.h index abc9c1fca1e8..d121457cfc66 100644 --- a/sys/sys/consio.h +++ b/sys/sys/consio.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: console.h,v 1.45 1999/03/10 10:36:47 yokota Exp $ + * $FreeBSD$ */ #ifndef _SYS_CONSIO_H_ diff --git a/sys/sys/copyright.h b/sys/sys/copyright.h index 18c0b246ec90..becc5474d370 100644 --- a/sys/sys/copyright.h +++ b/sys/sys/copyright.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: copyright.h,v 1.6 1999/02/10 13:09:09 kato Exp $ + * $FreeBSD$ */ diff --git a/sys/sys/devfsext.h b/sys/sys/devfsext.h index fd66d85b4a6d..478adc0a4a95 100644 --- a/sys/sys/devfsext.h +++ b/sys/sys/devfsext.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfsext.h,v 1.23 1999/08/08 18:42:59 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_DEVFSEXT_H_ diff --git a/sys/sys/device.h b/sys/sys/device.h index 5425d7728ad5..fc5ce337439e 100644 --- a/sys/sys/device.h +++ b/sys/sys/device.h @@ -40,7 +40,7 @@ * SUCH DAMAGE. * * @(#)device.h 8.2 (Berkeley) 2/17/94 - * $Id: device.h,v 1.7 1997/09/21 22:09:03 gibbs Exp $ + * $FreeBSD$ */ #ifndef _SYS_DEVICE_H_ diff --git a/sys/sys/devicestat.h b/sys/sys/devicestat.h index c94b8ce23580..8887744ea306 100644 --- a/sys/sys/devicestat.h +++ b/sys/sys/devicestat.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devicestat.h,v 1.3 1998/11/14 21:58:41 wollman Exp $ + * $FreeBSD$ */ #ifndef _DEVICESTAT_H diff --git a/sys/sys/dir.h b/sys/sys/dir.h index bea51b01eb0b..670850ac37ef 100644 --- a/sys/sys/dir.h +++ b/sys/sys/dir.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dir.h 8.2 (Berkeley) 1/4/94 - * $Id: dir.h,v 1.4 1997/02/22 09:45:01 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_DIR_H_ diff --git a/sys/sys/dirent.h b/sys/sys/dirent.h index 33b2d7f91865..19db37ba43e7 100644 --- a/sys/sys/dirent.h +++ b/sys/sys/dirent.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dirent.h 8.3 (Berkeley) 8/10/94 - * $Id: dirent.h,v 1.8 1997/04/10 13:54:19 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_DIRENT_H_ diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index 1e3865c9000a..e664e26743e7 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.2 (Berkeley) 7/10/94 - * $Id: disklabel.h,v 1.41 1999/08/11 03:02:05 imp Exp $ + * $FreeBSD$ */ #ifndef _SYS_DISKLABEL_H_ diff --git a/sys/sys/diskmbr.h b/sys/sys/diskmbr.h index 1e3865c9000a..e664e26743e7 100644 --- a/sys/sys/diskmbr.h +++ b/sys/sys/diskmbr.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.2 (Berkeley) 7/10/94 - * $Id: disklabel.h,v 1.41 1999/08/11 03:02:05 imp Exp $ + * $FreeBSD$ */ #ifndef _SYS_DISKLABEL_H_ diff --git a/sys/sys/diskpc98.h b/sys/sys/diskpc98.h index 1e3865c9000a..e664e26743e7 100644 --- a/sys/sys/diskpc98.h +++ b/sys/sys/diskpc98.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.2 (Berkeley) 7/10/94 - * $Id: disklabel.h,v 1.41 1999/08/11 03:02:05 imp Exp $ + * $FreeBSD$ */ #ifndef _SYS_DISKLABEL_H_ diff --git a/sys/sys/diskslice.h b/sys/sys/diskslice.h index 881cf3048d7a..418df7cc6c63 100644 --- a/sys/sys/diskslice.h +++ b/sys/sys/diskslice.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: diskslice.h,v 1.29 1998/08/23 20:16:35 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_DISKSLICE_H_ diff --git a/sys/sys/dkbad.h b/sys/sys/dkbad.h index a076e00444fb..4aad13214f47 100644 --- a/sys/sys/dkbad.h +++ b/sys/sys/dkbad.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dkbad.h 8.2 (Berkeley) 7/10/94 - * $Id: dkbad.h,v 1.10 1998/02/01 20:08:36 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_DKBAD_H_ diff --git a/sys/sys/dkstat.h b/sys/sys/dkstat.h index d7abbb19244d..c62d6ce1350f 100644 --- a/sys/sys/dkstat.h +++ b/sys/sys/dkstat.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)dkstat.h 8.2 (Berkeley) 1/21/94 - * $Id: dkstat.h,v 1.9 1997/09/07 05:27:05 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_DKSTAT_H_ diff --git a/sys/sys/dmap.h b/sys/sys/dmap.h index d31bbc0eba40..793176086738 100644 --- a/sys/sys/dmap.h +++ b/sys/sys/dmap.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dmap.h 8.2 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_DMAP_H_ diff --git a/sys/sys/domain.h b/sys/sys/domain.h index 0bf516be15d9..3b7f14c37aac 100644 --- a/sys/sys/domain.h +++ b/sys/sys/domain.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)domain.h 8.1 (Berkeley) 6/2/93 - * $Id: domain.h,v 1.11 1999/01/21 00:26:39 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_DOMAIN_H_ diff --git a/sys/sys/elf32.h b/sys/sys/elf32.h index d88ef2c3252a..309f1a43eada 100644 --- a/sys/sys/elf32.h +++ b/sys/sys/elf32.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf32.h,v 1.5 1998/09/14 20:30:13 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_ELF32_H_ diff --git a/sys/sys/elf64.h b/sys/sys/elf64.h index 464815a27d9b..022b174f559d 100644 --- a/sys/sys/elf64.h +++ b/sys/sys/elf64.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf64.h,v 1.7 1998/09/14 20:30:13 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_ELF64_H_ diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index 7785d202f152..207050debe02 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf_common.h,v 1.3 1998/09/14 20:30:13 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_ELF_COMMON_H_ diff --git a/sys/sys/elf_generic.h b/sys/sys/elf_generic.h index bc1203b69a46..32c3e161b5a4 100644 --- a/sys/sys/elf_generic.h +++ b/sys/sys/elf_generic.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf_generic.h,v 1.2 1998/09/14 20:30:13 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_ELF_GENERIC_H_ diff --git a/sys/sys/errno.h b/sys/sys/errno.h index 0ccb10528b5a..c25b6afef90d 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)errno.h 8.5 (Berkeley) 1/21/94 - * $Id: errno.h,v 1.11 1998/12/14 18:54:04 dt Exp $ + * $FreeBSD$ */ #ifndef _SYS_ERRNO_H_ diff --git a/sys/sys/eventhandler.h b/sys/sys/eventhandler.h index b0198daf30aa..4ebdc2112d8c 100644 --- a/sys/sys/eventhandler.h +++ b/sys/sys/eventhandler.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eventhandler.h,v 1.1 1999/08/21 06:24:39 msmith Exp $ + * $FreeBSD$ */ #include diff --git a/sys/sys/exec.h b/sys/sys/exec.h index ef643ec89ea7..d58fbe89ac4d 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.3 (Berkeley) 1/21/94 - * $Id: exec.h,v 1.23 1999/01/29 08:36:45 dillon Exp $ + * $FreeBSD$ */ #ifndef _SYS_EXEC_H_ diff --git a/sys/sys/fbio.h b/sys/sys/fbio.h index 055dfad49ae1..b2413ead61ed 100644 --- a/sys/sys/fbio.h +++ b/sys/sys/fbio.h @@ -36,7 +36,7 @@ * * @(#)fbio.h 8.2 (Berkeley) 10/30/93 * - * $Id: fbio.h,v 1.6 1999/06/22 14:13:43 yokota Exp $ + * $FreeBSD$ */ #ifndef _SYS_FBIO_H_ diff --git a/sys/sys/fcntl.h b/sys/sys/fcntl.h index 7133e17bbf63..b81f904daaba 100644 --- a/sys/sys/fcntl.h +++ b/sys/sys/fcntl.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)fcntl.h 8.3 (Berkeley) 1/21/94 - * $Id: fcntl.h,v 1.6 1997/02/22 09:45:13 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_FCNTL_H_ diff --git a/sys/sys/fdcio.h b/sys/sys/fdcio.h index 891d8f0a22a9..3b4da37da238 100644 --- a/sys/sys/fdcio.h +++ b/sys/sys/fdcio.h @@ -24,7 +24,7 @@ * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _MACHINE_IOCTL_FD_H_ diff --git a/sys/sys/file.h b/sys/sys/file.h index ec425b4c5418..072a7652fc44 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)file.h 8.3 (Berkeley) 1/9/95 - * $Id: file.h,v 1.17 1999/04/04 21:41:25 dt Exp $ + * $FreeBSD$ */ #ifndef _SYS_FILE_H_ diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h index 92b5562ff91d..4505875fe5c4 100644 --- a/sys/sys/filedesc.h +++ b/sys/sys/filedesc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)filedesc.h 8.1 (Berkeley) 6/2/93 - * $Id: filedesc.h,v 1.14 1998/11/11 10:04:12 truckman Exp $ + * $FreeBSD$ */ #ifndef _SYS_FILEDESC_H_ diff --git a/sys/sys/filio.h b/sys/sys/filio.h index d0c94af7b644..07dff6266568 100644 --- a/sys/sys/filio.h +++ b/sys/sys/filio.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)filio.h 8.1 (Berkeley) 3/28/94 - * $Id: filio.h,v 1.4 1997/02/22 09:45:16 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_FILIO_H_ diff --git a/sys/sys/gmon.h b/sys/sys/gmon.h index 9107c93f071a..79434a4888a9 100644 --- a/sys/sys/gmon.h +++ b/sys/sys/gmon.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)gmon.h 8.2 (Berkeley) 1/4/94 - * $Id: gmon.h,v 1.13 1997/07/13 16:38:31 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_GMON_H_ diff --git a/sys/sys/imgact.h b/sys/sys/imgact.h index d206f268a18d..ec147ba8698c 100644 --- a/sys/sys/imgact.h +++ b/sys/sys/imgact.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: imgact.h,v 1.18 1998/12/30 10:38:59 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_IMGACT_H_ diff --git a/sys/sys/imgact_aout.h b/sys/sys/imgact_aout.h index f05c0026c55f..5b4b68fcbdbd 100644 --- a/sys/sys/imgact_aout.h +++ b/sys/sys/imgact_aout.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)exec.h 8.1 (Berkeley) 6/11/93 - * $Id: imgact_aout.h,v 1.8 1997/12/19 20:44:48 bde Exp $ + * $FreeBSD$ */ #ifndef _IMGACT_AOUT_H_ diff --git a/sys/sys/imgact_elf.h b/sys/sys/imgact_elf.h index 618abec7427a..596ecdbb14d8 100644 --- a/sys/sys/imgact_elf.h +++ b/sys/sys/imgact_elf.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_elf.h,v 1.13 1999/02/06 16:39:16 mjacob Exp $ + * $FreeBSD$ */ #ifndef _SYS_IMGACT_ELF_H_ diff --git a/sys/sys/inflate.h b/sys/sys/inflate.h index 73d9175e8ffa..8b1e95de1958 100644 --- a/sys/sys/inflate.h +++ b/sys/sys/inflate.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: inflate.h,v 1.8 1997/02/22 09:45:20 peter Exp $ + * $FreeBSD$ * */ #ifndef _SYS_INFLATE_H_ diff --git a/sys/sys/interrupt.h b/sys/sys/interrupt.h index 6c717030b615..01b45cb9f879 100644 --- a/sys/sys/interrupt.h +++ b/sys/sys/interrupt.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: interrupt.h,v 1.7 1998/08/11 15:08:13 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_INTERRUPT_H_ diff --git a/sys/sys/inttypes.h b/sys/sys/inttypes.h index 824786a65aa6..f1d94c615e7f 100644 --- a/sys/sys/inttypes.h +++ b/sys/sys/inttypes.h @@ -1,6 +1,6 @@ /* * This file is in the public domain. - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_INTTYPES_H_ diff --git a/sys/sys/ioccom.h b/sys/sys/ioccom.h index 26cd972aef1e..3dc3c1e0164a 100644 --- a/sys/sys/ioccom.h +++ b/sys/sys/ioccom.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ioccom.h 8.2 (Berkeley) 3/28/94 - * $Id: ioccom.h,v 1.6 1997/02/22 09:45:21 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_IOCCOM_H_ diff --git a/sys/sys/ioctl.h b/sys/sys/ioctl.h index 48e018395471..11a22c60434e 100644 --- a/sys/sys/ioctl.h +++ b/sys/sys/ioctl.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ioctl.h 8.6 (Berkeley) 3/28/94 - * $Id: ioctl.h,v 1.6 1997/02/22 09:45:22 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_IOCTL_H_ diff --git a/sys/sys/ioctl_bt848.h b/sys/sys/ioctl_bt848.h index 0767abddb684..30e18d156da3 100644 --- a/sys/sys/ioctl_bt848.h +++ b/sys/sys/ioctl_bt848.h @@ -1,7 +1,7 @@ /* * extensions to ioctl_meteor.h for the bt848 cards * - * $Id: ioctl_bt848.h,v 1.22 1999/02/15 11:04:36 roger Exp $ + * $FreeBSD$ */ /* diff --git a/sys/sys/ioctl_compat.h b/sys/sys/ioctl_compat.h index ab067b97e42b..baf42e090f83 100644 --- a/sys/sys/ioctl_compat.h +++ b/sys/sys/ioctl_compat.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ioctl_compat.h 8.4 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_IOCTL_COMPAT_H_ diff --git a/sys/sys/ipc.h b/sys/sys/ipc.h index cb7ff9ece4e9..d81c5bc9d118 100644 --- a/sys/sys/ipc.h +++ b/sys/sys/ipc.h @@ -41,7 +41,7 @@ * SUCH DAMAGE. * * @(#)ipc.h 8.4 (Berkeley) 2/19/95 - * $Id: ipc.h,v 1.12 1998/02/25 02:17:46 bde Exp $ + * $FreeBSD$ */ /* diff --git a/sys/sys/jail.h b/sys/sys/jail.h index ca6fb944edc9..560f4b858666 100644 --- a/sys/sys/jail.h +++ b/sys/sys/jail.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: jail.h,v 1.2 1999/05/16 10:51:52 phk Exp $ + * $FreeBSD$ * */ diff --git a/sys/sys/kbio.h b/sys/sys/kbio.h index c8e99471e67a..2712a125de22 100644 --- a/sys/sys/kbio.h +++ b/sys/sys/kbio.h @@ -1,5 +1,5 @@ /*- - * $Id: $ + * $FreeBSD$ */ #ifndef _SYS_KBIO_H_ diff --git a/sys/sys/kernel.h b/sys/sys/kernel.h index 5a2b617a448f..c6d984c1bb05 100644 --- a/sys/sys/kernel.h +++ b/sys/sys/kernel.h @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * @(#)kernel.h 8.3 (Berkeley) 1/21/94 - * $Id: kernel.h,v 1.57 1999/07/04 00:25:33 mckusick Exp $ + * $FreeBSD$ */ #ifndef _SYS_KERNEL_H_ diff --git a/sys/sys/ktrace.h b/sys/sys/ktrace.h index b0382bd7a1e3..b88b2b62c119 100644 --- a/sys/sys/ktrace.h +++ b/sys/sys/ktrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ktrace.h 8.1 (Berkeley) 6/2/93 - * $Id: ktrace.h,v 1.13 1999/05/13 09:09:37 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_KTRACE_H_ diff --git a/sys/sys/libkern.h b/sys/sys/libkern.h index bdc060346a6e..6f7c4ae90a59 100644 --- a/sys/sys/libkern.h +++ b/sys/sys/libkern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)libkern.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_LIBKERN_H_ diff --git a/sys/sys/linedisc.h b/sys/sys/linedisc.h index 00645fb949b4..4e5a94a5aba8 100644 --- a/sys/sys/linedisc.h +++ b/sys/sys/linedisc.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.5 (Berkeley) 1/9/95 - * $Id: conf.h,v 1.78 1999/08/25 22:50:12 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_CONF_H_ diff --git a/sys/sys/linker.h b/sys/sys/linker.h index 0c0cfa1d354c..407aba14f8d1 100644 --- a/sys/sys/linker.h +++ b/sys/sys/linker.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: linker.h,v 1.14 1999/01/27 23:45:44 dillon Exp $ + * $FreeBSD$ */ #ifndef _SYS_LINKER_H_ diff --git a/sys/sys/linker_set.h b/sys/sys/linker_set.h index 837da207f7a5..a4736a56707d 100644 --- a/sys/sys/linker_set.h +++ b/sys/sys/linker_set.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: linker_set.h,v 1.2 1999/05/08 12:52:26 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_LINKER_SET_H_ diff --git a/sys/sys/lock.h b/sys/sys/lock.h index 67a56d97b97b..04157c0fc3dc 100644 --- a/sys/sys/lock.h +++ b/sys/sys/lock.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)lock.h 8.12 (Berkeley) 5/19/95 - * $Id: lock.h,v 1.14 1999/06/26 02:45:40 mckusick Exp $ + * $FreeBSD$ */ #ifndef _LOCK_H_ diff --git a/sys/sys/lockf.h b/sys/sys/lockf.h index 2bd1898bdaf5..17980f6a1bbd 100644 --- a/sys/sys/lockf.h +++ b/sys/sys/lockf.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)lockf.h 8.1 (Berkeley) 6/11/93 - * $Id: lockf.h,v 1.8 1997/09/07 05:27:16 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_LOCKF_H_ diff --git a/sys/sys/lockmgr.h b/sys/sys/lockmgr.h index 67a56d97b97b..04157c0fc3dc 100644 --- a/sys/sys/lockmgr.h +++ b/sys/sys/lockmgr.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)lock.h 8.12 (Berkeley) 5/19/95 - * $Id: lock.h,v 1.14 1999/06/26 02:45:40 mckusick Exp $ + * $FreeBSD$ */ #ifndef _LOCK_H_ diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index c1fc86d7516c..bf85c33db3dc 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)malloc.h 8.5 (Berkeley) 5/3/95 - * $Id: malloc.h,v 1.41 1999/01/27 21:50:00 dillon Exp $ + * $FreeBSD$ */ #ifndef _SYS_MALLOC_H_ diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 959b70b073e1..475b997ab6cb 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mbuf.h 8.5 (Berkeley) 2/19/95 - * $Id: mbuf.h,v 1.30 1998/11/05 14:28:25 dg Exp $ + * $FreeBSD$ */ #ifndef _SYS_MBUF_H_ diff --git a/sys/sys/md5.h b/sys/sys/md5.h index 1b636b590151..a69f79099560 100644 --- a/sys/sys/md5.h +++ b/sys/sys/md5.h @@ -1,5 +1,5 @@ /* MD5.H - header file for MD5C.C - * $Id: md5.h,v 1.10 1998/03/27 10:22:35 phk Exp $ + * $FreeBSD$ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All diff --git a/sys/sys/mman.h b/sys/sys/mman.h index 7329d8f7ae46..d5257ea69536 100644 --- a/sys/sys/mman.h +++ b/sys/sys/mman.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mman.h 8.2 (Berkeley) 1/9/95 - * $Id: mman.h,v 1.24 1999/01/06 23:05:40 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_MMAN_H_ diff --git a/sys/sys/module.h b/sys/sys/module.h index 45f3a405990d..83cea0d51463 100644 --- a/sys/sys/module.h +++ b/sys/sys/module.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: module.h,v 1.10 1999/01/29 08:36:45 dillon Exp $ + * $FreeBSD$ */ #ifndef _SYS_MODULE_H_ diff --git a/sys/sys/mount.h b/sys/sys/mount.h index a988d3f58945..625d12d9f566 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mount.h 8.21 (Berkeley) 5/20/95 - * $Id: mount.h,v 1.74 1999/02/16 10:49:55 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_MOUNT_H_ diff --git a/sys/sys/mouse.h b/sys/sys/mouse.h index 98cc0ad38a05..12d49a2a5d75 100644 --- a/sys/sys/mouse.h +++ b/sys/sys/mouse.h @@ -20,7 +20,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mouse.h,v 1.13 1999/07/12 15:16:12 yokota Exp $ + * $FreeBSD$ */ #ifndef _MACHINE_MOUSE_H_ diff --git a/sys/sys/msg.h b/sys/sys/msg.h index 7b998c2ff4f9..3dd70f1bc89d 100644 --- a/sys/sys/msg.h +++ b/sys/sys/msg.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: msg.h,v 1.4 1994/06/29 06:44:43 cgd Exp $ */ /* diff --git a/sys/sys/msgbuf.h b/sys/sys/msgbuf.h index 4cfd004e49f8..aa7df03e7915 100644 --- a/sys/sys/msgbuf.h +++ b/sys/sys/msgbuf.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)msgbuf.h 8.1 (Berkeley) 6/2/93 - * $Id: msgbuf.h,v 1.10 1998/05/19 08:58:35 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_MSGBUF_H_ diff --git a/sys/sys/mtio.h b/sys/sys/mtio.h index 1a91daf0c7fa..30b8b993819e 100644 --- a/sys/sys/mtio.h +++ b/sys/sys/mtio.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mtio.h 8.1 (Berkeley) 6/2/93 - * $Id: mtio.h,v 1.17 1999/02/05 07:57:26 mjacob Exp $ + * $FreeBSD$ */ #ifndef _SYS_MTIO_H_ diff --git a/sys/sys/namei.h b/sys/sys/namei.h index 5c41f34269ab..c4611d9c3fc4 100644 --- a/sys/sys/namei.h +++ b/sys/sys/namei.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)namei.h 8.5 (Berkeley) 1/9/95 - * $Id: namei.h,v 1.20 1998/03/28 10:33:22 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_NAMEI_H_ diff --git a/sys/sys/param.h b/sys/sys/param.h index ef89e207e8f4..b61279471c54 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)param.h 8.3 (Berkeley) 4/4/95 - * $Id: param.h,v 1.50 1999/06/20 08:34:24 jb Exp $ + * $FreeBSD$ */ #ifndef _SYS_PARAM_H_ diff --git a/sys/sys/pioctl.h b/sys/sys/pioctl.h index 8c936a030799..b43a47ff5bff 100644 --- a/sys/sys/pioctl.h +++ b/sys/sys/pioctl.h @@ -33,7 +33,7 @@ /* * procfs ioctl definitions. * - * $Id: pioctl.h,v 1.6 1997/12/20 03:05:35 sef Exp $ + * $FreeBSD$ */ #ifndef _SYS_PIOCTL_H diff --git a/sys/sys/pipe.h b/sys/sys/pipe.h index 9b06500d75c2..e95f45534537 100644 --- a/sys/sys/pipe.h +++ b/sys/sys/pipe.h @@ -18,7 +18,7 @@ * 5. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: pipe.h,v 1.11 1998/11/11 10:04:12 truckman Exp $ + * $FreeBSD$ */ #ifndef _SYS_PIPE_H_ diff --git a/sys/sys/poll.h b/sys/sys/poll.h index 9e8986aae763..7620a39bd512 100644 --- a/sys/sys/poll.h +++ b/sys/sys/poll.h @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: poll.h,v 1.3 1997/12/15 03:09:48 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_POLL_H_ diff --git a/sys/sys/proc.h b/sys/sys/proc.h index f735c2181307..7885af31d6d7 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)proc.h 8.15 (Berkeley) 5/19/95 - * $Id: proc.h,v 1.85 1999/07/04 00:25:34 mckusick Exp $ + * $FreeBSD$ */ #ifndef _SYS_PROC_H_ diff --git a/sys/sys/procfs.h b/sys/sys/procfs.h index d0656861cc68..04f0e1c71a80 100644 --- a/sys/sys/procfs.h +++ b/sys/sys/procfs.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_PROCFS_H_ diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h index 99a1d92dd731..15f6e13aef55 100644 --- a/sys/sys/protosw.h +++ b/sys/sys/protosw.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)protosw.h 8.1 (Berkeley) 6/2/93 - * $Id: protosw.h,v 1.25 1998/08/23 03:07:17 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_PROTOSW_H_ diff --git a/sys/sys/ptio.h b/sys/sys/ptio.h index dd4f1492c889..1292280528d3 100644 --- a/sys/sys/ptio.h +++ b/sys/sys/ptio.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ptio.h,v 1.1 1999/08/20 03:48:11 ken Exp $ + * $FreeBSD$ */ #ifndef _SYS_PTIO_H_ diff --git a/sys/sys/ptrace.h b/sys/sys/ptrace.h index 288a0fa2766c..f7f77edeec81 100644 --- a/sys/sys/ptrace.h +++ b/sys/sys/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.2 (Berkeley) 1/4/94 - * $Id: ptrace.h,v 1.7 1997/02/22 09:45:43 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_PTRACE_H_ diff --git a/sys/sys/queue.h b/sys/sys/queue.h index fd4df60a60dd..4bf34b8d720e 100644 --- a/sys/sys/queue.h +++ b/sys/sys/queue.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)queue.h 8.5 (Berkeley) 8/20/94 - * $Id: queue.h,v 1.25 1999/04/20 22:37:17 n_hibma Exp $ + * $FreeBSD$ */ #ifndef _SYS_QUEUE_H_ diff --git a/sys/sys/random.h b/sys/sys/random.h index 569173a1a6a2..e084f8111d1e 100644 --- a/sys/sys/random.h +++ b/sys/sys/random.h @@ -1,7 +1,7 @@ /* * random.h -- A strong random number generator * - * $Id: random.h,v 1.15 1998/06/18 15:32:05 bde Exp $ + * $FreeBSD$ * * Version 0.95, last modified 18-Oct-95 * diff --git a/sys/sys/reboot.h b/sys/sys/reboot.h index d9678bcf09a1..d0c4210515eb 100644 --- a/sys/sys/reboot.h +++ b/sys/sys/reboot.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)reboot.h 8.3 (Berkeley) 12/13/94 - * $Id: reboot.h,v 1.16 1997/02/22 09:45:45 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_REBOOT_H_ diff --git a/sys/sys/resource.h b/sys/sys/resource.h index 7e09e86dadce..3dc21820fb5e 100644 --- a/sys/sys/resource.h +++ b/sys/sys/resource.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)resource.h 8.4 (Berkeley) 1/9/95 - * $Id: resource.h,v 1.8 1997/11/18 08:07:37 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_RESOURCE_H_ diff --git a/sys/sys/resourcevar.h b/sys/sys/resourcevar.h index 9e476eccce2e..eca8e47d968e 100644 --- a/sys/sys/resourcevar.h +++ b/sys/sys/resourcevar.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)resourcevar.h 8.4 (Berkeley) 1/9/95 - * $Id: resourcevar.h,v 1.12 1998/05/28 09:30:27 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_RESOURCEVAR_H_ diff --git a/sys/sys/rman.h b/sys/sys/rman.h index 278e33cba9d2..6283f315ce1e 100644 --- a/sys/sys/rman.h +++ b/sys/sys/rman.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rman.h,v 1.1 1998/10/29 01:48:30 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_RMAN_H_ diff --git a/sys/sys/rtprio.h b/sys/sys/rtprio.h index 6f196ab1c0be..5d115f5693db 100644 --- a/sys/sys/rtprio.h +++ b/sys/sys/rtprio.h @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rtprio.h,v 1.6 1998/03/08 17:25:35 dufault Exp $ + * $FreeBSD$ */ #ifndef _SYS_RTPRIO_H_ diff --git a/sys/sys/scsiio.h b/sys/sys/scsiio.h index b7cbfd4136c3..b49c8d6707da 100644 --- a/sys/sys/scsiio.h +++ b/sys/sys/scsiio.h @@ -1,5 +1,5 @@ /* - * $Id: scsiio.h,v 1.9 1998/02/01 04:13:13 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_SCSIIO_H_ #define _SYS_SCSIIO_H_ diff --git a/sys/sys/select.h b/sys/sys/select.h index e69971e3b684..89e7f9adcbbc 100644 --- a/sys/sys/select.h +++ b/sys/sys/select.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)select.h 8.2 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_SELECT_H_ diff --git a/sys/sys/selinfo.h b/sys/sys/selinfo.h index e69971e3b684..89e7f9adcbbc 100644 --- a/sys/sys/selinfo.h +++ b/sys/sys/selinfo.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)select.h 8.2 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_SELECT_H_ diff --git a/sys/sys/sem.h b/sys/sys/sem.h index b51fc2467527..798f5bb7d124 100644 --- a/sys/sys/sem.h +++ b/sys/sys/sem.h @@ -1,4 +1,4 @@ -/* $Id: sem.h,v 1.17 1998/12/14 21:01:47 dillon Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: sem.h,v 1.5 1994/06/29 06:45:15 cgd Exp $ */ /* diff --git a/sys/sys/shm.h b/sys/sys/shm.h index 0e8bf40783b4..a792f561b116 100644 --- a/sys/sys/shm.h +++ b/sys/sys/shm.h @@ -1,4 +1,4 @@ -/* $Id: shm.h,v 1.11 1997/02/22 09:45:52 peter Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: shm.h,v 1.15 1994/06/29 06:45:17 cgd Exp $ */ /* diff --git a/sys/sys/signal.h b/sys/sys/signal.h index 471baa97b754..4a0fee85f7f1 100644 --- a/sys/sys/signal.h +++ b/sys/sys/signal.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.4 (Berkeley) 5/4/95 - * $Id: signal.h,v 1.14 1998/08/05 09:04:36 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_SIGNAL_H_ diff --git a/sys/sys/signalvar.h b/sys/sys/signalvar.h index e2bdb4a97c61..058f0f1562dc 100644 --- a/sys/sys/signalvar.h +++ b/sys/sys/signalvar.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)signalvar.h 8.6 (Berkeley) 2/19/95 - * $Id: signalvar.h,v 1.24 1999/07/06 07:13:48 cracauer Exp $ + * $FreeBSD$ */ #ifndef _SYS_SIGNALVAR_H_ /* tmp for user.h */ diff --git a/sys/sys/sliceio.h b/sys/sys/sliceio.h index 2a519affb507..e93eb3bbcaae 100644 --- a/sys/sys/sliceio.h +++ b/sys/sys/sliceio.h @@ -1,5 +1,5 @@ /* - * $Id: sliceio.h,v 1.1 1998/04/19 23:32:43 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_SLICEIO_H_ diff --git a/sys/sys/smp.h b/sys/sys/smp.h index c425db6f7d32..0524d76b6fbe 100644 --- a/sys/sys/smp.h +++ b/sys/sys/smp.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: smp.h,v 1.45 1999/04/28 01:04:07 luoqi Exp $ + * $FreeBSD$ * */ diff --git a/sys/sys/socket.h b/sys/sys/socket.h index b7da75a1c515..a7b88d464b20 100644 --- a/sys/sys/socket.h +++ b/sys/sys/socket.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)socket.h 8.4 (Berkeley) 2/21/94 - * $Id: socket.h,v 1.26 1998/09/15 11:44:44 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_SOCKET_H_ diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h index 8fb052c297c5..fb1542582c8b 100644 --- a/sys/sys/socketvar.h +++ b/sys/sys/socketvar.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)socketvar.h 8.3 (Berkeley) 2/19/95 - * $Id: socketvar.h,v 1.37 1999/04/04 21:41:28 dt Exp $ + * $FreeBSD$ */ #ifndef _SYS_SOCKETVAR_H_ diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h index 36f0c2e213be..afefc83d7f20 100644 --- a/sys/sys/sockio.h +++ b/sys/sys/sockio.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)sockio.h 8.1 (Berkeley) 3/28/94 - * $Id: sockio.h,v 1.11 1997/10/07 07:39:40 joerg Exp $ + * $FreeBSD$ */ #ifndef _SYS_SOCKIO_H_ diff --git a/sys/sys/stat.h b/sys/sys/stat.h index 52a1a416601b..f6dc2319ca3f 100644 --- a/sys/sys/stat.h +++ b/sys/sys/stat.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)stat.h 8.12 (Berkeley) 6/16/95 - * $Id: stat.h,v 1.16 1999/05/11 19:54:58 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_STAT_H_ diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index c40111565347..b776b22531c6 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)sysctl.h 8.1 (Berkeley) 6/2/93 - * $Id: sysctl.h,v 1.73 1999/04/28 11:38:10 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_SYSCTL_H_ diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h index 9bfc9788eca0..ab258c2e5ea3 100644 --- a/sys/sys/sysent.h +++ b/sys/sys/sysent.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sysent.h,v 1.19 1998/09/14 05:36:51 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_SYSENT_H_ diff --git a/sys/sys/syslimits.h b/sys/sys/syslimits.h index 3546e6b1d374..634db8f3b3c2 100644 --- a/sys/sys/syslimits.h +++ b/sys/sys/syslimits.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)syslimits.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_SYSLIMITS_H_ diff --git a/sys/sys/syslog.h b/sys/sys/syslog.h index 0a9df010ce3f..8359101a59e8 100644 --- a/sys/sys/syslog.h +++ b/sys/sys/syslog.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)syslog.h 8.1 (Berkeley) 6/2/93 - * $Id: syslog.h,v 1.16 1998/07/13 06:45:17 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_SYSLOG_H_ diff --git a/sys/sys/systm.h b/sys/sys/systm.h index e2fdc9ff4ddb..9ed5a11fff6e 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)systm.h 8.7 (Berkeley) 3/29/95 - * $Id: systm.h,v 1.95 1999/07/24 09:34:11 dfr Exp $ + * $FreeBSD$ */ #ifndef _SYS_SYSTM_H_ diff --git a/sys/sys/tablet.h b/sys/sys/tablet.h index e934d3c3dcab..5caa181af9f1 100644 --- a/sys/sys/tablet.h +++ b/sys/sys/tablet.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tablet.h 8.4 (Berkeley) 7/10/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_TABLET_H_ diff --git a/sys/sys/termios.h b/sys/sys/termios.h index 09025b4ab34c..72f4b9e060cf 100644 --- a/sys/sys/termios.h +++ b/sys/sys/termios.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)termios.h 8.3 (Berkeley) 3/28/94 - * $Id: termios.h,v 1.10 1998/03/12 14:09:53 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_TERMIOS_H_ diff --git a/sys/sys/time.h b/sys/sys/time.h index 32ea4a0d8f98..1742eb4c837b 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)time.h 8.5 (Berkeley) 5/4/95 - * $Id: time.h,v 1.38 1999/04/25 08:59:55 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_TIME_H_ diff --git a/sys/sys/timeb.h b/sys/sys/timeb.h index be00cda04262..40aba11ae6b4 100644 --- a/sys/sys/timeb.h +++ b/sys/sys/timeb.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)timeb.h 8.2 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_TIMEB_H_ diff --git a/sys/sys/timepps.h b/sys/sys/timepps.h index b278aa14b8b3..58e562f3612d 100644 --- a/sys/sys/timepps.h +++ b/sys/sys/timepps.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: timepps.h,v 1.7 1999/03/30 11:44:59 phk Exp $ + * $FreeBSD$ * * The is a FreeBSD protype version of the "draft-mogul-pps-api-02.txt" * specification for Pulse Per Second timing interfaces. diff --git a/sys/sys/timers.h b/sys/sys/timers.h index 6482d3c92018..043d37670b08 100644 --- a/sys/sys/timers.h +++ b/sys/sys/timers.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ * * Description : Basic timers header. */ diff --git a/sys/sys/times.h b/sys/sys/times.h index 961ebfd18264..ba6dee0ed709 100644 --- a/sys/sys/times.h +++ b/sys/sys/times.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)times.h 8.4 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_TIMES_H_ diff --git a/sys/sys/timetc.h b/sys/sys/timetc.h index 32ea4a0d8f98..1742eb4c837b 100644 --- a/sys/sys/timetc.h +++ b/sys/sys/timetc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)time.h 8.5 (Berkeley) 5/4/95 - * $Id: time.h,v 1.38 1999/04/25 08:59:55 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_TIME_H_ diff --git a/sys/sys/tprintf.h b/sys/sys/tprintf.h index 239bb52a78e7..ef5660907adb 100644 --- a/sys/sys/tprintf.h +++ b/sys/sys/tprintf.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tprintf.h 8.1 (Berkeley) 6/2/93 - * $Id: tprintf.h,v 1.7 1998/07/13 06:45:18 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_TPRINTF_H_ diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 63a49e90417c..00fb7a8ad5ca 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.h 8.6 (Berkeley) 1/21/94 - * $Id: tty.h,v 1.46 1999/08/08 20:24:48 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_TTY_H_ diff --git a/sys/sys/ttychars.h b/sys/sys/ttychars.h index 3b96b40ab7db..d9b59b7f01e9 100644 --- a/sys/sys/ttychars.h +++ b/sys/sys/ttychars.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ttychars.h 8.2 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_TTYCHARS_H_ diff --git a/sys/sys/ttycom.h b/sys/sys/ttycom.h index a181b77daa5e..ac6c45a41592 100644 --- a/sys/sys/ttycom.h +++ b/sys/sys/ttycom.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ttycom.h 8.1 (Berkeley) 3/28/94 - * $Id: ttycom.h,v 1.12 1997/02/22 09:46:14 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_TTYCOM_H_ diff --git a/sys/sys/ttydefaults.h b/sys/sys/ttydefaults.h index f6f8f48a9812..6d23e3bdd074 100644 --- a/sys/sys/ttydefaults.h +++ b/sys/sys/ttydefaults.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ttydefaults.h 8.4 (Berkeley) 1/21/94 - * $Id: ttydefaults.h,v 1.11 1997/02/22 09:46:16 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/sys/ttydev.h b/sys/sys/ttydev.h index 79e54f4611c2..739ec477c619 100644 --- a/sys/sys/ttydev.h +++ b/sys/sys/ttydev.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ttydev.h 8.2 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ /* COMPATIBILITY HEADER FILE */ diff --git a/sys/sys/types.h b/sys/sys/types.h index cd42c19516ca..bc9c0d44b2d1 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)types.h 8.6 (Berkeley) 2/19/95 - * $Id: types.h,v 1.34 1999/07/18 02:26:02 jdp Exp $ + * $FreeBSD$ */ #ifndef _SYS_TYPES_H_ diff --git a/sys/sys/ucred.h b/sys/sys/ucred.h index f65dbe05f0c9..6009f93a675d 100644 --- a/sys/sys/ucred.h +++ b/sys/sys/ucred.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ucred.h 8.4 (Berkeley) 1/9/95 - * $Id: ucred.h,v 1.11 1999/04/27 11:18:38 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_UCRED_H_ diff --git a/sys/sys/uio.h b/sys/sys/uio.h index 5373f886fbec..e55b84055563 100644 --- a/sys/sys/uio.h +++ b/sys/sys/uio.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uio.h 8.5 (Berkeley) 2/22/94 - * $Id: uio.h,v 1.8 1997/12/19 10:03:31 bde Exp $ + * $FreeBSD$ */ #ifndef _SYS_UIO_H_ diff --git a/sys/sys/un.h b/sys/sys/un.h index 36dd7257b310..a99ba68d9a14 100644 --- a/sys/sys/un.h +++ b/sys/sys/un.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)un.h 8.3 (Berkeley) 2/19/95 - * $Id: un.h,v 1.14 1998/05/15 20:11:40 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_UN_H_ diff --git a/sys/sys/unistd.h b/sys/sys/unistd.h index d6216039f6b9..7503cddf2574 100644 --- a/sys/sys/unistd.h +++ b/sys/sys/unistd.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)unistd.h 8.2 (Berkeley) 1/7/94 - * $Id: unistd.h,v 1.18 1998/12/19 02:55:34 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_UNISTD_H_ diff --git a/sys/sys/unpcb.h b/sys/sys/unpcb.h index 7c3881267ef8..c0b8a373a197 100644 --- a/sys/sys/unpcb.h +++ b/sys/sys/unpcb.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)unpcb.h 8.1 (Berkeley) 6/2/93 - * $Id: unpcb.h,v 1.7 1998/05/15 20:11:40 wollman Exp $ + * $FreeBSD$ */ #ifndef _SYS_UNPCB_H_ diff --git a/sys/sys/user.h b/sys/sys/user.h index 37fe257a420e..62ea5c53069a 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)user.h 8.2 (Berkeley) 9/23/93 - * $Id: user.h,v 1.20 1999/01/26 02:38:11 julian Exp $ + * $FreeBSD$ */ #ifndef _SYS_USER_H_ diff --git a/sys/sys/utsname.h b/sys/sys/utsname.h index 0387cc1d206e..375c3d403f36 100644 --- a/sys/sys/utsname.h +++ b/sys/sys/utsname.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)utsname.h 8.1 (Berkeley) 1/4/94 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_UTSNAME_H diff --git a/sys/sys/vadvise.h b/sys/sys/vadvise.h index 28b29582efdc..cf179f04c07f 100644 --- a/sys/sys/vadvise.h +++ b/sys/sys/vadvise.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vadvise.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_VADVISE_H_ diff --git a/sys/sys/vcmd.h b/sys/sys/vcmd.h index 36d3cf83b294..837255cf6dd4 100644 --- a/sys/sys/vcmd.h +++ b/sys/sys/vcmd.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vcmd.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_VCMD_H_ diff --git a/sys/sys/vlimit.h b/sys/sys/vlimit.h index 6a63166b345d..a5a86d7f65b8 100644 --- a/sys/sys/vlimit.h +++ b/sys/sys/vlimit.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vlimit.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_VLIMIT_H_ diff --git a/sys/sys/vmmeter.h b/sys/sys/vmmeter.h index b476d00bac8b..e382d900f6df 100644 --- a/sys/sys/vmmeter.h +++ b/sys/sys/vmmeter.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vmmeter.h 8.2 (Berkeley) 7/10/94 - * $Id: vmmeter.h,v 1.17 1999/02/08 02:42:13 dillon Exp $ + * $FreeBSD$ */ #ifndef _SYS_VMMETER_H_ diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index b9c43e37fc49..e78db4317881 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vnode.h 8.7 (Berkeley) 2/4/94 - * $Id: vnode.h,v 1.97 1999/08/25 12:24:30 phk Exp $ + * $FreeBSD$ */ #ifndef _SYS_VNODE_H_ diff --git a/sys/sys/vsio.h b/sys/sys/vsio.h index 93a1c70bcd28..702e71dce2b3 100644 --- a/sys/sys/vsio.h +++ b/sys/sys/vsio.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vsio.h 8.1 (Berkeley) 6/2/93 - * $Id$ + * $FreeBSD$ */ #ifndef _SYS_VSIO_H_ diff --git a/sys/sys/wait.h b/sys/sys/wait.h index b0716d27fa7a..c854e149d3c6 100644 --- a/sys/sys/wait.h +++ b/sys/sys/wait.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)wait.h 8.2 (Berkeley) 7/10/94 - * $Id: wait.h,v 1.8 1997/02/22 09:46:31 peter Exp $ + * $FreeBSD$ */ #ifndef _SYS_WAIT_H_ diff --git a/sys/sys/xrpuio.h b/sys/sys/xrpuio.h index a5eca5631e11..70de800d9a4a 100644 --- a/sys/sys/xrpuio.h +++ b/sys/sys/xrpuio.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id$ + * $FreeBSD$ * */ diff --git a/sys/tools/devlist2h.awk b/sys/tools/devlist2h.awk index c6872bc5a8e7..1863a227ab7f 100644 --- a/sys/tools/devlist2h.awk +++ b/sys/tools/devlist2h.awk @@ -64,7 +64,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # function collectline(f, line) { oparen = 0 diff --git a/sys/tools/miidevs2h.awk b/sys/tools/miidevs2h.awk index c6872bc5a8e7..1863a227ab7f 100644 --- a/sys/tools/miidevs2h.awk +++ b/sys/tools/miidevs2h.awk @@ -64,7 +64,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # function collectline(f, line) { oparen = 0 diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk index 07e0e91781c5..9c042dbac7d8 100644 --- a/sys/tools/vnode_if.awk +++ b/sys/tools/vnode_if.awk @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 -# $Id: vnode_if.sh,v 1.17 1999/02/28 11:30:00 bde Exp $ +# $FreeBSD$ # # Script to produce VFS front-end sugar. diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 8e205129bea5..74443805a332 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_alloc.c 8.18 (Berkeley) 5/26/95 - * $Id: ffs_alloc.c,v 1.59 1999/08/23 20:35:19 bde Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ffs/ffs_balloc.c b/sys/ufs/ffs/ffs_balloc.c index 5b3df8b65882..ebd630f45c77 100644 --- a/sys/ufs/ffs/ffs_balloc.c +++ b/sys/ufs/ffs/ffs_balloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_balloc.c 8.8 (Berkeley) 6/16/95 - * $Id: ffs_balloc.c,v 1.22 1999/01/28 00:57:54 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ffs/ffs_extern.h b/sys/ufs/ffs/ffs_extern.h index 169bf30bdd4c..177a820fd214 100644 --- a/sys/ufs/ffs/ffs_extern.h +++ b/sys/ufs/ffs/ffs_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_extern.h 8.6 (Berkeley) 3/30/95 - * $Id: ffs_extern.h,v 1.25 1999/01/07 16:14:16 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_FFS_EXTERN_H diff --git a/sys/ufs/ffs/ffs_inode.c b/sys/ufs/ffs/ffs_inode.c index 0895173b6659..aad428527aea 100644 --- a/sys/ufs/ffs/ffs_inode.c +++ b/sys/ufs/ffs/ffs_inode.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_inode.c 8.13 (Berkeley) 4/21/95 - * $Id: ffs_inode.c,v 1.54 1999/05/02 23:56:48 alc Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ffs/ffs_softdep_stub.c b/sys/ufs/ffs/ffs_softdep_stub.c index a396960312d6..652e20ba3cde 100644 --- a/sys/ufs/ffs/ffs_softdep_stub.c +++ b/sys/ufs/ffs/ffs_softdep_stub.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)ffs_softdep_stub.c 9.1 (McKusick) 7/10/97 - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c index 5052b89f8a8c..f005c71171ad 100644 --- a/sys/ufs/ffs/ffs_subr.c +++ b/sys/ufs/ffs/ffs_subr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_subr.c 8.5 (Berkeley) 3/21/95 - * $Id: ffs_subr.c,v 1.22 1998/11/29 03:12:06 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ffs/ffs_tables.c b/sys/ufs/ffs/ffs_tables.c index a3dfe4f0d22e..0256ee2244bd 100644 --- a/sys/ufs/ffs/ffs_tables.c +++ b/sys/ufs/ffs/ffs_tables.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_tables.c 8.1 (Berkeley) 6/11/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 37c82cc883aa..3efbdebb8f39 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95 - * $Id: ffs_vfsops.c,v 1.102 1999/08/13 10:29:33 phk Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c index dbf2a913b4bd..59b8dcdbdeeb 100644 --- a/sys/ufs/ffs/ffs_vnops.c +++ b/sys/ufs/ffs/ffs_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vnops.c 8.15 (Berkeley) 5/14/95 - * $Id: ffs_vnops.c,v 1.58 1999/06/26 02:46:39 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h index 9f997318f997..91979d87cefc 100644 --- a/sys/ufs/ffs/fs.h +++ b/sys/ufs/ffs/fs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fs.h 8.13 (Berkeley) 3/21/95 - * $Id: fs.h,v 1.12 1997/03/24 03:19:37 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_FFS_FS_H_ diff --git a/sys/ufs/mfs/mfs_extern.h b/sys/ufs/mfs/mfs_extern.h index f6dc287736cf..e146382e3bec 100644 --- a/sys/ufs/mfs/mfs_extern.h +++ b/sys/ufs/mfs/mfs_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_extern.h 8.4 (Berkeley) 3/30/95 - * $Id: mfs_extern.h,v 1.13 1999/05/10 17:12:43 peter Exp $ + * $FreeBSD$ */ #ifndef _UFS_MFS_MFS_EXTERN_H_ diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 87b129a32ddb..044bf634390d 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95 - * $Id: mfs_vfsops.c,v 1.67 1999/08/24 18:35:33 phk Exp $ + * $FreeBSD$ */ diff --git a/sys/ufs/mfs/mfs_vnops.c b/sys/ufs/mfs/mfs_vnops.c index c2a5fbd03fa0..ad691df4e91c 100644 --- a/sys/ufs/mfs/mfs_vnops.c +++ b/sys/ufs/mfs/mfs_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vnops.c 8.11 (Berkeley) 5/22/95 - * $Id: mfs_vnops.c,v 1.45 1999/06/26 02:46:41 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/mfs/mfsnode.h b/sys/ufs/mfs/mfsnode.h index f56d4da7101d..da428144b9a6 100644 --- a/sys/ufs/mfs/mfsnode.h +++ b/sys/ufs/mfs/mfsnode.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfsnode.h 8.3 (Berkeley) 5/19/95 - * $Id: mfsnode.h,v 1.10 1997/10/16 10:50:05 phk Exp $ + * $FreeBSD$ */ #ifndef _UFS_MFS_MFSNODE_H_ diff --git a/sys/ufs/ufs/dinode.h b/sys/ufs/ufs/dinode.h index 0b8b60947479..461a6c0bdf20 100644 --- a/sys/ufs/ufs/dinode.h +++ b/sys/ufs/ufs/dinode.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)dinode.h 8.3 (Berkeley) 1/21/94 - * $Id$ + * $FreeBSD$ */ #ifndef _UFS_UFS_DINODE_H_ diff --git a/sys/ufs/ufs/dir.h b/sys/ufs/ufs/dir.h index 6a7a853035b8..a8948b9aaeff 100644 --- a/sys/ufs/ufs/dir.h +++ b/sys/ufs/ufs/dir.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)dir.h 8.2 (Berkeley) 1/21/94 - * $Id: dir.h,v 1.7 1997/02/22 09:47:38 peter Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_DIR_H_ diff --git a/sys/ufs/ufs/inode.h b/sys/ufs/ufs/inode.h index 77fe7b3983b7..78fbc0adaff5 100644 --- a/sys/ufs/ufs/inode.h +++ b/sys/ufs/ufs/inode.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.9 (Berkeley) 5/14/95 - * $Id: inode.h,v 1.25 1999/03/06 05:21:09 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_INODE_H_ diff --git a/sys/ufs/ufs/quota.h b/sys/ufs/ufs/quota.h index e5ce29b8bf1e..f449a1a5d881 100644 --- a/sys/ufs/ufs/quota.h +++ b/sys/ufs/ufs/quota.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)quota.h 8.3 (Berkeley) 8/19/94 - * $Id: quota.h,v 1.12 1999/03/05 09:28:33 bde Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_QUOTA_H_ diff --git a/sys/ufs/ufs/ufs_bmap.c b/sys/ufs/ufs/ufs_bmap.c index 9a477c51fb42..cf564071491d 100644 --- a/sys/ufs/ufs/ufs_bmap.c +++ b/sys/ufs/ufs/ufs_bmap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.7 (Berkeley) 3/21/95 - * $Id: ufs_bmap.c,v 1.29 1999/08/08 18:43:03 phk Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ufs/ufs_disksubr.c b/sys/ufs/ufs/ufs_disksubr.c index a46e11ab7b0c..a52efbd9ef57 100644 --- a/sys/ufs/ufs/ufs_disksubr.c +++ b/sys/ufs/ufs/ufs_disksubr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94 - * $Id: ufs_disksubr.c,v 1.40 1999/06/26 02:46:44 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ufs/ufs_extern.h b/sys/ufs/ufs/ufs_extern.h index 7798b975c9d6..ee2779d78778 100644 --- a/sys/ufs/ufs/ufs_extern.h +++ b/sys/ufs/ufs/ufs_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_extern.h 8.10 (Berkeley) 5/14/95 - * $Id: ufs_extern.h,v 1.23 1998/03/08 09:59:24 julian Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_EXTERN_H_ diff --git a/sys/ufs/ufs/ufs_ihash.c b/sys/ufs/ufs/ufs_ihash.c index c2dd63e5b7f2..0a7c7d583191 100644 --- a/sys/ufs/ufs/ufs_ihash.c +++ b/sys/ufs/ufs/ufs_ihash.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95 - * $Id: ufs_ihash.c,v 1.18 1999/01/02 11:34:56 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index 1f4e0b1af8d7..edb8c153f190 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_inode.c 8.9 (Berkeley) 5/14/95 - * $Id: ufs_inode.c,v 1.23 1998/07/03 22:17:02 bde Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ufs/ufs_lookup.c b/sys/ufs/ufs/ufs_lookup.c index 29e522768a96..020750d5ddc2 100644 --- a/sys/ufs/ufs/ufs_lookup.c +++ b/sys/ufs/ufs/ufs_lookup.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_lookup.c 8.15 (Berkeley) 6/16/95 - * $Id: ufs_lookup.c,v 1.28 1999/06/16 23:27:51 mckusick Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ufs/ufs_quota.c b/sys/ufs/ufs/ufs_quota.c index 99c35c7b5711..e1b5b5d986f1 100644 --- a/sys/ufs/ufs/ufs_quota.c +++ b/sys/ufs/ufs/ufs_quota.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)ufs_quota.c 8.5 (Berkeley) 5/20/95 - * $Id: ufs_quota.c,v 1.24 1998/07/15 02:32:34 bde Exp $ + * $FreeBSD$ */ #include diff --git a/sys/ufs/ufs/ufs_readwrite.c b/sys/ufs/ufs/ufs_readwrite.c index ad89a3195039..59f064e20ad9 100644 --- a/sys/ufs/ufs/ufs_readwrite.c +++ b/sys/ufs/ufs/ufs_readwrite.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_readwrite.c 8.11 (Berkeley) 5/8/95 - * $Id: ufs_readwrite.c,v 1.62 1999/08/01 06:04:52 alc Exp $ + * $FreeBSD$ */ #define BLKSIZE(a, b, c) blksize(a, b, c) diff --git a/sys/ufs/ufs/ufs_vfsops.c b/sys/ufs/ufs/ufs_vfsops.c index 55eb12db35ef..f1284008a816 100644 --- a/sys/ufs/ufs/ufs_vfsops.c +++ b/sys/ufs/ufs/ufs_vfsops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_vfsops.c 8.8 (Berkeley) 5/20/95 - * $Id: ufs_vfsops.c,v 1.14 1999/04/27 11:18:43 phk Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c index e474bdab5b18..e95c5e962c87 100644 --- a/sys/ufs/ufs/ufs_vnops.c +++ b/sys/ufs/ufs/ufs_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95 - * $Id: ufs_vnops.c,v 1.121 1999/08/23 20:35:21 bde Exp $ + * $FreeBSD$ */ #include "opt_quota.h" diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h index 70652b58f9ba..44974548e70a 100644 --- a/sys/ufs/ufs/ufsmount.h +++ b/sys/ufs/ufs/ufsmount.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95 - * $Id: ufsmount.h,v 1.13 1998/01/30 11:34:06 phk Exp $ + * $FreeBSD$ */ #ifndef _UFS_UFS_UFSMOUNT_H_ diff --git a/sys/vm/default_pager.c b/sys/vm/default_pager.c index a850260dd7d6..91115f4115ac 100644 --- a/sys/vm/default_pager.c +++ b/sys/vm/default_pager.c @@ -36,7 +36,7 @@ * physically freed after having been cleaned and even then vm_page->swapblk * is maintained whenever a resident page also has swap backing store. * - * $Id: default_pager.c,v 1.18 1999/01/21 09:33:06 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/vm/default_pager.h b/sys/vm/default_pager.h index 58911450a5ef..842969accd4c 100644 --- a/sys/vm/default_pager.h +++ b/sys/vm/default_pager.h @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _DEFAULT_PAGER_H_ diff --git a/sys/vm/device_pager.c b/sys/vm/device_pager.c index 0652b277cab4..d08c14bc5d05 100644 --- a/sys/vm/device_pager.c +++ b/sys/vm/device_pager.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)device_pager.c 8.1 (Berkeley) 6/11/93 - * $Id: device_pager.c,v 1.42 1999/05/13 04:02:07 luoqi Exp $ + * $FreeBSD$ */ #include diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index 32d1846e15b6..194ac283b309 100644 --- a/sys/vm/pmap.h +++ b/sys/vm/pmap.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: pmap.h,v 1.30 1999/04/23 20:29:57 dt Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c index 9ba177056946..a3e603b1d70c 100644 --- a/sys/vm/swap_pager.c +++ b/sys/vm/swap_pager.c @@ -64,7 +64,7 @@ * * @(#)swap_pager.c 8.9 (Berkeley) 3/21/94 * - * $Id: swap_pager.c,v 1.123 1999/08/17 05:56:00 alc Exp $ + * $FreeBSD$ */ #include diff --git a/sys/vm/swap_pager.h b/sys/vm/swap_pager.h index 50acaf115dc7..4557036b8a50 100644 --- a/sys/vm/swap_pager.h +++ b/sys/vm/swap_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)swap_pager.h 7.1 (Berkeley) 12/5/90 - * $Id: swap_pager.h,v 1.23 1999/01/21 08:29:10 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm.h b/sys/vm/vm.h index 19ea10e5eb78..1fd27452dd03 100644 --- a/sys/vm/vm.h +++ b/sys/vm/vm.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm.h 8.2 (Berkeley) 12/13/93 - * $Id$ + * $FreeBSD$ */ #ifndef VM_H diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index 93c9c606afa6..c8b90ba72320 100644 --- a/sys/vm/vm_extern.h +++ b/sys/vm/vm_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_extern.h 8.2 (Berkeley) 1/12/94 - * $Id: vm_extern.h,v 1.41 1999/04/13 19:17:15 peter Exp $ + * $FreeBSD$ */ #ifndef _VM_EXTERN_H_ diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c index dd53ad9c57b7..7431e53418df 100644 --- a/sys/vm/vm_fault.c +++ b/sys/vm/vm_fault.c @@ -66,7 +66,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_fault.c,v 1.103 1999/07/20 05:46:56 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index a83d029a5715..e53079a43a0f 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,7 +59,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.87 1999/07/21 18:02:26 alc Exp $ + * $FreeBSD$ */ #include "opt_rlimit.h" diff --git a/sys/vm/vm_inherit.h b/sys/vm/vm_inherit.h index b3cfbd812636..8d7b7f6df501 100644 --- a/sys/vm/vm_inherit.h +++ b/sys/vm/vm_inherit.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 4eb8acce353f..f7f1df84a199 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_init.c,v 1.17 1998/02/04 22:33:45 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index 6602ee57a7e0..409c5f487fde 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.c,v 1.57 1999/08/15 21:55:19 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_kern.h b/sys/vm/vm_kern.h index 0f470bd3c7c8..9be497653d80 100644 --- a/sys/vm/vm_kern.h +++ b/sys/vm/vm_kern.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.h,v 1.18 1999/08/15 21:55:20 alc Exp $ + * $FreeBSD$ */ #ifndef _VM_VM_KERN_H_ diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index 6ea4395b3b83..03633e99d95c 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.c,v 1.175 1999/08/10 04:50:20 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index f12c042cd6e8..c5fbee562cbc 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.h,v 1.47 1999/08/23 18:08:34 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c index 1f355d4e6828..4e7f0fb12c3d 100644 --- a/sys/vm/vm_meter.c +++ b/sys/vm/vm_meter.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_meter.c 8.4 (Berkeley) 1/4/94 - * $Id: vm_meter.c,v 1.30 1999/02/07 21:48:22 dillon Exp $ + * $FreeBSD$ */ #include diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index fe9bf90427b9..9fb8458bc1a0 100644 --- a/sys/vm/vm_mmap.c +++ b/sys/vm/vm_mmap.c @@ -38,7 +38,7 @@ * from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$ * * @(#)vm_mmap.c 8.4 (Berkeley) 1/12/94 - * $Id: vm_mmap.c,v 1.100 1999/06/05 18:21:53 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index 7ff5175a73b9..0ed361db755e 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.c,v 1.165 1999/08/15 21:55:20 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 62e52e9ee283..385ef70ca0df 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.h,v 1.58 1999/07/16 05:11:37 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index c384580c0175..f6db00ef98a0 100644 --- a/sys/vm/vm_page.c +++ b/sys/vm/vm_page.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)vm_page.c 7.4 (Berkeley) 5/7/91 - * $Id: vm_page.c,v 1.140 1999/08/17 18:09:01 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h index 7a93d18b2d50..6ffb8676eebb 100644 --- a/sys/vm/vm_page.h +++ b/sys/vm/vm_page.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_page.h,v 1.69 1999/08/17 04:02:33 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 7ce3a3a7f7a8..bc8784cc587d 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -65,7 +65,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.c,v 1.145 1999/08/17 00:07:35 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pageout.h b/sys/vm/vm_pageout.h index 68c0561fc5e8..7af6b06ff0f1 100644 --- a/sys/vm/vm_pageout.h +++ b/sys/vm/vm_pageout.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.h,v 1.23 1998/01/22 17:30:43 dyson Exp $ + * $FreeBSD$ */ #ifndef _VM_VM_PAGEOUT_H_ diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c index f4639e5b3421..70452ed04ebd 100644 --- a/sys/vm/vm_pager.c +++ b/sys/vm/vm_pager.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pager.c,v 1.50 1999/07/04 00:25:38 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pager.h b/sys/vm/vm_pager.h index aff14ab29aef..d5df7c8f0ec7 100644 --- a/sys/vm/vm_pager.h +++ b/sys/vm/vm_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vm_pager.h 8.4 (Berkeley) 1/12/94 - * $Id: vm_pager.h,v 1.21 1999/03/14 09:20:00 julian Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index a3680c48c693..66733cc4b1ca 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_param.h,v 1.10 1999/06/20 04:55:29 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_prot.h b/sys/vm/vm_prot.h index cdddcea786a5..68e552e018ad 100644 --- a/sys/vm/vm_prot.h +++ b/sys/vm/vm_prot.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_prot.h,v 1.7 1997/02/22 09:48:38 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index a2218cdbc441..8a178bd895c8 100644 --- a/sys/vm/vm_swap.c +++ b/sys/vm/vm_swap.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_swap.c 8.5 (Berkeley) 2/17/94 - * $Id: vm_swap.c,v 1.83 1999/08/24 05:58:35 green Exp $ + * $FreeBSD$ */ #include "opt_swap.h" diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c index d095283888ba..f81101b2e78a 100644 --- a/sys/vm/vm_unix.c +++ b/sys/vm/vm_unix.c @@ -38,7 +38,7 @@ * from: Utah $Hdr: vm_unix.c 1.1 89/11/07$ * * @(#)vm_unix.c 8.1 (Berkeley) 6/11/93 - * $Id: vm_unix.c,v 1.20 1999/02/09 01:39:29 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_zone.c b/sys/vm/vm_zone.c index 0d684a74d321..3befc9119c00 100644 --- a/sys/vm/vm_zone.c +++ b/sys/vm/vm_zone.c @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vm_zone.c,v 1.25 1999/01/08 17:31:29 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/sys/vm/vm_zone.h b/sys/vm/vm_zone.h index 8fe91d1e1aaf..b8aa933b3c37 100644 --- a/sys/vm/vm_zone.h +++ b/sys/vm/vm_zone.h @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vm_zone.h,v 1.11 1999/01/08 17:31:30 eivind Exp $ + * $FreeBSD$ */ #ifndef _SYS_ZONE_H diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c index c44391c1ee97..367d3a39f398 100644 --- a/sys/vm/vnode_pager.c +++ b/sys/vm/vnode_pager.c @@ -38,7 +38,7 @@ * SUCH DAMAGE. * * from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91 - * $Id: vnode_pager.c,v 1.112 1999/07/01 19:53:43 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vnode_pager.h b/sys/vm/vnode_pager.h index b833e635ff26..339851d21b65 100644 --- a/sys/vm/vnode_pager.h +++ b/sys/vm/vnode_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vnode_pager.h 8.1 (Berkeley) 6/11/93 - * $Id: vnode_pager.h,v 1.11 1998/02/26 06:39:59 msmith Exp $ + * $FreeBSD$ */ #ifndef _VNODE_PAGER_ diff --git a/tools/3.0-upgrade/cvt-wtmp.c b/tools/3.0-upgrade/cvt-wtmp.c index f5d3653710b4..c5d3b54a7bbc 100644 --- a/tools/3.0-upgrade/cvt-wtmp.c +++ b/tools/3.0-upgrade/cvt-wtmp.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cvt-wtmp.c,v 1.4 1997/02/22 14:08:01 peter Exp $ + * $FreeBSD$ * */ diff --git a/tools/LibraryReport/LibraryReport.tcl b/tools/LibraryReport/LibraryReport.tcl index 37b4379bf6c7..fbf63896c71d 100755 --- a/tools/LibraryReport/LibraryReport.tcl +++ b/tools/LibraryReport/LibraryReport.tcl @@ -50,7 +50,7 @@ exec tclsh $0 $* # ################################################################################ # -# $Id$ +# $FreeBSD$ # ######################################################################################### diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac index f2815e5eca39..6bff17339a14 100644 --- a/tools/diag/ac/ac +++ b/tools/diag/ac/ac @@ -4,7 +4,7 @@ # # ac - check if the FreeBSD handbook is in sync with the committers list # -# $Id$ +# $FreeBSD$ : ${CVSROOT=/usr/cvs} contrib=src/share/doc/handbook/contrib.sgml diff --git a/tools/diag/httpd-error/httpd-error b/tools/diag/httpd-error/httpd-error index b1ff405321c0..6882067d75db 100755 --- a/tools/diag/httpd-error/httpd-error +++ b/tools/diag/httpd-error/httpd-error @@ -4,7 +4,7 @@ # # httpd-error - check for Web files which does not exists on your host # -# $Id$ +# $FreeBSD$ mode=${1} diff --git a/tools/test/devrandom/hammer.random b/tools/test/devrandom/hammer.random index a619816f2db5..ea4cb5f64032 100644 --- a/tools/test/devrandom/hammer.random +++ b/tools/test/devrandom/hammer.random @@ -5,7 +5,7 @@ # Read and display random numbers. # Try tapping shift/alt/ctrl to get more randomness. # -# $Id$ +# $FreeBSD$ # for (;;) { diff --git a/tools/test/devrandom/hammer.urandom b/tools/test/devrandom/hammer.urandom index 4e434fae5476..d0b6aa89da58 100644 --- a/tools/test/devrandom/hammer.urandom +++ b/tools/test/devrandom/hammer.urandom @@ -5,7 +5,7 @@ # Read and display random numbers. # This also reads /dev/zero to make sure there is no brokenness there. # -# $Id$ +# $FreeBSD$ # open(ZERO, "/dev/zero") || die "Cannot open /dev/zero - $!\n"; diff --git a/tools/test/devrandom/stat.16bit b/tools/test/devrandom/stat.16bit index 83398d5d273a..32a6a9caf550 100644 --- a/tools/test/devrandom/stat.16bit +++ b/tools/test/devrandom/stat.16bit @@ -8,7 +8,7 @@ # Redirect the output from this to a file - and go to the movies while # it runs. This program is a CPU Hog! # -# $Id$ +# $FreeBSD$ # for ($i = 0; $i < (1024*64); $i++) { diff --git a/tools/test/devrandom/stat.8bit b/tools/test/devrandom/stat.8bit index 5c304cb2e68e..03fdbdd5b39d 100644 --- a/tools/test/devrandom/stat.8bit +++ b/tools/test/devrandom/stat.8bit @@ -8,7 +8,7 @@ # Redirect the output from this to a file - and make a cup of coffee while # it runs. This program is a CPU Hog! # -# $Id$ +# $FreeBSD$ # for ($i = 0; $i < (1024*32); $i++) { diff --git a/tools/tools/README b/tools/tools/README index b305823f6169..4ae496136ddf 100644 --- a/tools/tools/README +++ b/tools/tools/README @@ -1,4 +1,4 @@ -# $Id: README,v 1.14 1998/12/17 12:21:19 cracauer Exp $ +# $FreeBSD$ This directory is for tools. diff --git a/tools/tools/diffburst/Makefile b/tools/tools/diffburst/Makefile index 4e58e4cdd866..6cec60ba256a 100644 --- a/tools/tools/diffburst/Makefile +++ b/tools/tools/diffburst/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1997/12/06 00:44:04 archie Exp $ +# $FreeBSD$ PROG= diffburst SRCS= main.c diff --git a/tools/tools/epfe/epfe.pl b/tools/tools/epfe/epfe.pl index 4afd824d4791..0aea2c247a64 100644 --- a/tools/tools/epfe/epfe.pl +++ b/tools/tools/epfe/epfe.pl @@ -7,7 +7,7 @@ # $ cd /usr/share/examples/printing # $ epfe < ../../doc/handbook/printing.sgml # -# $Id$ +# $FreeBSD$ $in = 0; @a = (); sub Print { s/\&\;/&/g; push(@a,$_); } diff --git a/tools/tools/html-mv/html-mv b/tools/tools/html-mv/html-mv index c91f53362b50..29ea1f2db81d 100644 --- a/tools/tools/html-mv/html-mv +++ b/tools/tools/html-mv/html-mv @@ -17,7 +17,7 @@ # FAQ_Can_FreeBSD_handle_multiport_serial_cards_sharing_irqs_.html # [...] # -# $Id$ +# $FreeBSD$ case $# in 0) echo "usage `basename $0` file" diff --git a/tools/tools/ifinfo/Makefile b/tools/tools/ifinfo/Makefile index 740a553e275b..2fe0e83260f5 100644 --- a/tools/tools/ifinfo/Makefile +++ b/tools/tools/ifinfo/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= ifinfo SRCS= ifinfo.c rfc1650.c diff --git a/tools/tools/ifinfo/ifinfo.c b/tools/tools/ifinfo/ifinfo.c index b6d837c7ed97..63fad7e75fa0 100644 --- a/tools/tools/ifinfo/ifinfo.c +++ b/tools/tools/ifinfo/ifinfo.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ifinfo.c,v 1.3 1997/02/22 14:08:24 peter Exp $ + * $FreeBSD$ */ #include #include /* for PF_LINK */ diff --git a/tools/tools/ifinfo/ifinfo.h b/tools/tools/ifinfo/ifinfo.h index 24bd4761a2a8..c05a8b82eca5 100644 --- a/tools/tools/ifinfo/ifinfo.h +++ b/tools/tools/ifinfo/ifinfo.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef ifinfo_h #define ifinfo_h 1 diff --git a/tools/tools/kdrv/KernelDriver b/tools/tools/kdrv/KernelDriver index 1644753a529d..b840ff48150a 100755 --- a/tools/tools/kdrv/KernelDriver +++ b/tools/tools/kdrv/KernelDriver @@ -73,7 +73,7 @@ exec tclsh $0 $* # ################################################################################ # -# $Id: KernelDriver,v 1.4 1998/05/04 03:30:43 doconnor Exp $ +# $FreeBSD$ # ################################################################################ diff --git a/tools/tools/kdrv/sample.drvinfo b/tools/tools/kdrv/sample.drvinfo index 7618d0b549e4..eeb6a254d080 100644 --- a/tools/tools/kdrv/sample.drvinfo +++ b/tools/tools/kdrv/sample.drvinfo @@ -2,7 +2,7 @@ # Sample driver information file for KernelDriver. See the top of # the KernelDriver script for a more exact definition of the syntax. # -# $Id: sample.drvinfo,v 1.2 1998/05/06 05:45:17 msmith Exp $ +# $FreeBSD$ # Device driver name # diff --git a/tools/tools/kernxref/kernxref.sh b/tools/tools/kernxref/kernxref.sh index 60973b073aa2..956ad5154992 100644 --- a/tools/tools/kernxref/kernxref.sh +++ b/tools/tools/kernxref/kernxref.sh @@ -7,7 +7,7 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id: kernxref.sh,v 1.11 1998/12/08 08:14:37 archie Exp $ +# $FreeBSD$ # # This shellscript will make a cross reference of the symbols of the LINT # kernel. diff --git a/tools/tools/mid/mid-index b/tools/tools/mid/mid-index index 053c21e8e959..a5ec10b78f3b 100755 --- a/tools/tools/mid/mid-index +++ b/tools/tools/mid/mid-index @@ -2,7 +2,7 @@ # # create message-id / in-reply-to database # -# $Id: mid-index,v 1.5 1998/04/13 13:08:47 wosch Exp $ +# $FreeBSD$ sub usage { die "usage: mid-index name < filelist"; } diff --git a/tools/tools/portsinfo/portsinfo.sh b/tools/tools/portsinfo/portsinfo.sh index e1c3fd3b8851..f3dcf5039b92 100644 --- a/tools/tools/portsinfo/portsinfo.sh +++ b/tools/tools/portsinfo/portsinfo.sh @@ -3,7 +3,7 @@ # # portsinfo - Generate list of new ports for last two weeks. # -# $Id: portsinfo.sh,v 1.3 1997/09/29 18:16:38 wosch Exp $ +# $FreeBSD$ PATH=/bin:/usr/bin:/usr/local/bin:$PATH; export PATH diff --git a/tools/tools/scsi-defects/scsi-defects.pl b/tools/tools/scsi-defects/scsi-defects.pl index 5f48ec01c5a5..0827182d6e5f 100755 --- a/tools/tools/scsi-defects/scsi-defects.pl +++ b/tools/tools/scsi-defects/scsi-defects.pl @@ -24,7 +24,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id$ +# $FreeBSD$ # # diff --git a/tools/tools/tcl_bmake/mkMakefile.sh b/tools/tools/tcl_bmake/mkMakefile.sh index 0c2ca73d4733..f49a79eac3a5 100644 --- a/tools/tools/tcl_bmake/mkMakefile.sh +++ b/tools/tools/tcl_bmake/mkMakefile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# $Id: mkMakefile.sh,v 1.28 1998/01/17 15:52:22 bde Exp $ +# $FreeBSD$ # # This script generates a bmake Makefile for src/lib/libtcl # @@ -45,7 +45,7 @@ echo '# # Please change src/tools/tools/tcl_bmake/mkMakefile.sh instead # # Generated by src/tools/tools/tcl_bmake/mkMakefile.sh version: -# $Id: mkMakefile.sh,v 1.28 1998/01/17 15:52:22 bde Exp $ +# $FreeBSD$ # ' | tr -d '$' >> ${LIBTCL}Makefile diff --git a/tools/tools/upgrade/getosreldate.sh b/tools/tools/upgrade/getosreldate.sh index cb23ef310d12..3c9564851e16 100755 --- a/tools/tools/upgrade/getosreldate.sh +++ b/tools/tools/upgrade/getosreldate.sh @@ -1,5 +1,5 @@ #! /bin/sh -# $Id$ +# $FreeBSD$ RELDATE=`sysctl -n kern.osreldate 2>/dev/null` if [ "x$RELDATE" = x ]; then diff --git a/tools/tools/upgrade/move_aout_libs.sh b/tools/tools/upgrade/move_aout_libs.sh index 7d9600ffbb60..b00af5204372 100755 --- a/tools/tools/upgrade/move_aout_libs.sh +++ b/tools/tools/upgrade/move_aout_libs.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: move_aout_libs.sh,v 1.4 1999/02/01 12:45:03 jkh Exp $ +# $FreeBSD$ # # Search for a.out libraries and move them to an aout subdirectory of # the elf library directory. diff --git a/usr.bin/Makefile b/usr.bin/Makefile index ff5f87564dae..f03d0cd658ff 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.127 1999/04/18 15:56:20 peter Exp $ +# $FreeBSD$ # XXX MISSING: deroff diction graph learn plot # spell spline struct xsend diff --git a/usr.bin/apply/apply.1 b/usr.bin/apply/apply.1 index 5c69684fff41..4631cdb1b92c 100644 --- a/usr.bin/apply/apply.1 +++ b/usr.bin/apply/apply.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)apply.1 8.2 (Berkeley) 4/4/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 4, 1994 .Dt APPLY 1 diff --git a/usr.bin/ar/Makefile b/usr.bin/ar/Makefile index 7392d139db4d..af3161251965 100644 --- a/usr.bin/ar/Makefile +++ b/usr.bin/ar/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.7 1998/10/10 12:48:48 bde Exp $ +# $FreeBSD$ PROG= ar CFLAGS+=-I${.CURDIR} -Wall diff --git a/usr.bin/ar/ar.1 b/usr.bin/ar/ar.1 index e9118e7f2e54..3741299cb8ae 100644 --- a/usr.bin/ar/ar.1 +++ b/usr.bin/ar/ar.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ar.1 8.1 (Berkeley) 6/29/93 -.\" $Id: ar.1,v 1.4 1997/02/22 19:54:01 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 29, 1993 .Dt AR 1 diff --git a/usr.bin/ar/ar.1aout b/usr.bin/ar/ar.1aout index e9118e7f2e54..3741299cb8ae 100644 --- a/usr.bin/ar/ar.1aout +++ b/usr.bin/ar/ar.1aout @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ar.1 8.1 (Berkeley) 6/29/93 -.\" $Id: ar.1,v 1.4 1997/02/22 19:54:01 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 29, 1993 .Dt AR 1 diff --git a/usr.bin/ar/ar.5 b/usr.bin/ar/ar.5 index 2e3d336c9128..e163cf6cf799 100644 --- a/usr.bin/ar/ar.5 +++ b/usr.bin/ar/ar.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ar.5.5 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt AR 5 diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c index b2c85fc79537..c53c1e44dcfa 100644 --- a/usr.bin/ar/ar.c +++ b/usr.bin/ar/ar.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ar.c,v 1.6 1997/06/23 06:41:30 charnier Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/at/Makefile b/usr.bin/at/Makefile index 393af8387875..df96d573b49b 100644 --- a/usr.bin/at/Makefile +++ b/usr.bin/at/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1998/09/19 22:42:03 obrien Exp $ +# $FreeBSD$ .include "${.CURDIR}/Makefile.inc" diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index d21dfd39c92b..017bfdc0f146 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -92,7 +92,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ /* File scope variables */ -static const char rcsid[] = "$Id: at.c,v 1.15 1998/12/06 07:42:09 archie Exp $"; +static const char rcsid[] = "$FreeBSD$"; char *no_export[] = { "TERM", "TERMCAP", "DISPLAY", "_" diff --git a/usr.bin/at/at.man b/usr.bin/at/at.man index 02c79306e98e..b6dd8288b65a 100644 --- a/usr.bin/at/at.man +++ b/usr.bin/at/at.man @@ -1,4 +1,4 @@ -.\" $Id: at.man,v 1.10 1999/08/15 08:25:13 mpp Exp $ +.\" $FreeBSD$ .Dd April 12, 1995 .Dt "AT" 1 .Os FreeBSD 2.1 diff --git a/usr.bin/at/panic.c b/usr.bin/at/panic.c index c111dd823384..6098c9501e9e 100644 --- a/usr.bin/at/panic.c +++ b/usr.bin/at/panic.c @@ -38,7 +38,7 @@ /* File scope variables */ static const char rcsid[] = - "$Id: panic.c,v 1.7 1997/06/23 06:44:18 charnier Exp $"; + "$FreeBSD$"; /* External variables */ diff --git a/usr.bin/at/parsetime.c b/usr.bin/at/parsetime.c index dd1fd907de92..df7fe30ea610 100644 --- a/usr.bin/at/parsetime.c +++ b/usr.bin/at/parsetime.c @@ -148,7 +148,7 @@ static int sc_tokid; /* scanner - token id */ static int sc_tokplur; /* scanner - is token plural? */ static const char rcsid[] = - "$Id: parsetime.c,v 1.16 1998/12/06 07:42:09 archie Exp $"; + "$FreeBSD$"; /* Local functions */ diff --git a/usr.bin/at/perm.c b/usr.bin/at/perm.c index 398b2a89a741..9c17863c00f3 100644 --- a/usr.bin/at/perm.c +++ b/usr.bin/at/perm.c @@ -48,7 +48,7 @@ /* File scope variables */ -static const char rcsid[] = "$Id: perm.c,v 1.6 1998/12/06 07:42:09 archie Exp $"; +static const char rcsid[] = "$FreeBSD$"; /* Function declarations */ diff --git a/usr.bin/banner/banner.6 b/usr.bin/banner/banner.6 index 2d773715a337..119a3e822c7b 100644 --- a/usr.bin/banner/banner.6 +++ b/usr.bin/banner/banner.6 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)banner.6 8.2 (Berkeley) 4/29/95 -.\" $Id: banner.6,v 1.2 1997/08/23 15:49:52 joerg Exp $ +.\" $FreeBSD$ .\" .Dd April 29, 1995 .Dt BANNER 6 diff --git a/usr.bin/basename/basename.1 b/usr.bin/basename/basename.1 index 697125cc0407..ba95e761270d 100644 --- a/usr.bin/basename/basename.1 +++ b/usr.bin/basename/basename.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)basename.1 8.2 (Berkeley) 4/18/94 -.\" $Id: basename.1,v 1.4 1997/02/22 19:54:11 peter Exp $ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt BASENAME 1 diff --git a/usr.bin/biff/biff.1 b/usr.bin/biff/biff.1 index c0caf75658e2..4b4a2d8a45ee 100644 --- a/usr.bin/biff/biff.1 +++ b/usr.bin/biff/biff.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)biff.1 8.1 (Berkeley) 6/6/93 -.\" $Id: biff.1,v 1.4 1997/02/22 19:54:13 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt BIFF 1 diff --git a/usr.bin/biff/biff.c b/usr.bin/biff/biff.c index 185d6349167e..606afa8a919d 100644 --- a/usr.bin/biff/biff.c +++ b/usr.bin/biff/biff.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: biff.c,v 1.4 1997/12/29 00:08:50 alex Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/brandelf/brandelf.1 b/usr.bin/brandelf/brandelf.1 index 0a8099c92522..2c4e82091364 100644 --- a/usr.bin/brandelf/brandelf.1 +++ b/usr.bin/brandelf/brandelf.1 @@ -25,7 +25,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd February 6, 1997 .Dt BRANDELF 1 diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index 5ad14693a7b7..cea64801f598 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: brandelf.c,v 1.10 1998/04/21 02:44:12 eivind Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/c89/c89.1 b/usr.bin/c89/c89.1 index 75b4c770d30f..a683df08f43d 100644 --- a/usr.bin/c89/c89.1 +++ b/usr.bin/c89/c89.1 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: c89.1,v 1.1.1.1 1997/09/17 20:44:54 joerg Exp $ +.\" $FreeBSD$ .\" " .Dd September 17, 1997 .Os diff --git a/usr.bin/c89/c89.sh b/usr.bin/c89/c89.sh index a9ad3d0c35d0..157fbbff884a 100755 --- a/usr.bin/c89/c89.sh +++ b/usr.bin/c89/c89.sh @@ -24,7 +24,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id: c89.sh,v 1.2 1997/09/18 20:55:50 joerg Exp $ +# $FreeBSD$ # # This is the Posix.2 mandated C compiler. Basically, a hook to the # cc(1) command. diff --git a/usr.bin/calendar/calendar.1 b/usr.bin/calendar/calendar.1 index 1f2e5417c1b0..cfe76c4ab782 100644 --- a/usr.bin/calendar/calendar.1 +++ b/usr.bin/calendar/calendar.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)calendar.1 8.1 (Berkeley) 6/29/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 29, 1993 .Dt CALENDAR 1 diff --git a/usr.bin/calendar/calendars/calendar.all b/usr.bin/calendar/calendars/calendar.all index 35a40cc1ce79..652829ef863d 100644 --- a/usr.bin/calendar/calendars/calendar.all +++ b/usr.bin/calendar/calendars/calendar.all @@ -1,7 +1,7 @@ /* * International and national calendar files * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_all_ diff --git a/usr.bin/calendar/calendars/calendar.birthday b/usr.bin/calendar/calendars/calendar.birthday index 10ea34328ca9..06a30c0d5268 100644 --- a/usr.bin/calendar/calendars/calendar.birthday +++ b/usr.bin/calendar/calendars/calendar.birthday @@ -1,7 +1,7 @@ /* * Birthday * - * $Id: calendar.birthday,v 1.9 1998/10/22 07:56:22 torstenb Exp $ + * $FreeBSD$ */ #ifndef _calendar_birthday_ diff --git a/usr.bin/calendar/calendars/calendar.christian b/usr.bin/calendar/calendars/calendar.christian index e238918a00cd..d7562f74176d 100644 --- a/usr.bin/calendar/calendars/calendar.christian +++ b/usr.bin/calendar/calendars/calendar.christian @@ -1,7 +1,7 @@ /* * Christian * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_christian_ diff --git a/usr.bin/calendar/calendars/calendar.computer b/usr.bin/calendar/calendars/calendar.computer index 55fb081f6a89..0b45111acde0 100644 --- a/usr.bin/calendar/calendars/calendar.computer +++ b/usr.bin/calendar/calendars/calendar.computer @@ -1,7 +1,7 @@ /* * Computer * - * $Id: calendar.computer,v 1.4 1997/02/22 19:28:19 peter Exp $ + * $FreeBSD$ */ #ifndef _calendar_computer_ diff --git a/usr.bin/calendar/calendars/calendar.croatian b/usr.bin/calendar/calendars/calendar.croatian index 187a0c7cc2db..af9a55854387 100644 --- a/usr.bin/calendar/calendars/calendar.croatian +++ b/usr.bin/calendar/calendars/calendar.croatian @@ -1,7 +1,7 @@ /* * Croatian calendar files * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_croatian_ diff --git a/usr.bin/calendar/calendars/calendar.german b/usr.bin/calendar/calendars/calendar.german index 7ee93eb0b9ba..d22207cfd500 100644 --- a/usr.bin/calendar/calendars/calendar.german +++ b/usr.bin/calendar/calendars/calendar.german @@ -1,7 +1,7 @@ /* * German calendar file(s) * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_german_ diff --git a/usr.bin/calendar/calendars/calendar.history b/usr.bin/calendar/calendars/calendar.history index 1755bedb07d9..ba83c637e4c5 100644 --- a/usr.bin/calendar/calendars/calendar.history +++ b/usr.bin/calendar/calendars/calendar.history @@ -1,7 +1,7 @@ /* * History * - * $Id: calendar.history,v 1.7 1997/02/25 01:20:25 mpp Exp $ + * $FreeBSD$ */ #ifndef _calendar_history_ diff --git a/usr.bin/calendar/calendars/calendar.holiday b/usr.bin/calendar/calendars/calendar.holiday index 6da2a1acd7dd..0ae713c1523b 100644 --- a/usr.bin/calendar/calendars/calendar.holiday +++ b/usr.bin/calendar/calendars/calendar.holiday @@ -1,7 +1,7 @@ /* * Holiday * - * $Id: calendar.holiday,v 1.6 1997/02/22 19:28:22 peter Exp $ + * $FreeBSD$ */ #ifndef _calendar_holiday_ diff --git a/usr.bin/calendar/calendars/calendar.judaic b/usr.bin/calendar/calendars/calendar.judaic index e0dfab22a5d9..f1bc9e43e263 100644 --- a/usr.bin/calendar/calendars/calendar.judaic +++ b/usr.bin/calendar/calendars/calendar.judaic @@ -1,7 +1,7 @@ /* * Judaic * - * $Id: calendar.judaic,v 1.5 1998/01/19 14:34:53 jgrosch Exp $ + * $FreeBSD$ */ #ifndef _calendar_judaic_ diff --git a/usr.bin/calendar/calendars/calendar.music b/usr.bin/calendar/calendars/calendar.music index 5a60e595d26e..99629ce73c81 100644 --- a/usr.bin/calendar/calendars/calendar.music +++ b/usr.bin/calendar/calendars/calendar.music @@ -1,7 +1,7 @@ /* * Music * - * $Id: calendar.music,v 1.6 1997/02/22 19:28:23 peter Exp $ + * $FreeBSD$ */ #ifndef _calendar_music_ diff --git a/usr.bin/calendar/calendars/calendar.russian b/usr.bin/calendar/calendars/calendar.russian index ce192a0b5198..e308873676c1 100644 --- a/usr.bin/calendar/calendars/calendar.russian +++ b/usr.bin/calendar/calendars/calendar.russian @@ -1,7 +1,7 @@ /* * Russian calendar files * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_russian_ diff --git a/usr.bin/calendar/calendars/calendar.usholiday b/usr.bin/calendar/calendars/calendar.usholiday index 1d3e45d0b367..712a4b784599 100644 --- a/usr.bin/calendar/calendars/calendar.usholiday +++ b/usr.bin/calendar/calendars/calendar.usholiday @@ -1,7 +1,7 @@ /* * USA holiday * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_usholiday_ diff --git a/usr.bin/calendar/calendars/calendar.world b/usr.bin/calendar/calendars/calendar.world index 87201392b43a..7e2833b3a5fe 100644 --- a/usr.bin/calendar/calendars/calendar.world +++ b/usr.bin/calendar/calendars/calendar.world @@ -1,7 +1,7 @@ /* * World wide calendar files, except national calendars * - * $Id$ + * $FreeBSD$ */ #ifndef _calendar_world_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.all b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.all index 72068aa760ea..92c0e51ff73e 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.all +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.all @@ -1,7 +1,7 @@ /* * deutscher Kalender * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_all_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag index d723afa2fa23..4969fc7b7d2d 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag @@ -1,7 +1,7 @@ /* * Feiertage * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_feiertag_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte index 6a2a25e484c8..24d51f61fe57 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte @@ -13,7 +13,7 @@ * * ISBN 3-924521-59-X * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_geschichte_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.kirche b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.kirche index efa73245aee0..aa4ef195e74d 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.kirche +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.kirche @@ -1,7 +1,7 @@ /* * Kirche in Deutschland * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_kirche_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.literatur b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.literatur index 865e88e988ef..62acab9011a8 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.literatur +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.literatur @@ -1,7 +1,7 @@ /* * Literatur * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_literatur_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik index d08fcd77e5da..ad63646271f6 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik @@ -1,7 +1,7 @@ /* * Musik * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_musik_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.wissenschaft b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.wissenschaft index 87f9c726d51c..175fe0fa4207 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.wissenschaft +++ b/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.wissenschaft @@ -1,7 +1,7 @@ /* * Wissenschaft * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_wissenschaft_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.all b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.all index 72068aa760ea..92c0e51ff73e 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.all +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.all @@ -1,7 +1,7 @@ /* * deutscher Kalender * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_all_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.feiertag b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.feiertag index d723afa2fa23..4969fc7b7d2d 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.feiertag +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.feiertag @@ -1,7 +1,7 @@ /* * Feiertage * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_feiertag_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.geschichte b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.geschichte index 6a2a25e484c8..24d51f61fe57 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.geschichte +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.geschichte @@ -13,7 +13,7 @@ * * ISBN 3-924521-59-X * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_geschichte_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.kirche b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.kirche index efa73245aee0..aa4ef195e74d 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.kirche +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.kirche @@ -1,7 +1,7 @@ /* * Kirche in Deutschland * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_kirche_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.literatur b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.literatur index 865e88e988ef..62acab9011a8 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.literatur +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.literatur @@ -1,7 +1,7 @@ /* * Literatur * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_literatur_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.musik b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.musik index d08fcd77e5da..ad63646271f6 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.musik +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.musik @@ -1,7 +1,7 @@ /* * Musik * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_musik_ diff --git a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.wissenschaft b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.wissenschaft index 87f9c726d51c..175fe0fa4207 100644 --- a/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.wissenschaft +++ b/usr.bin/calendar/calendars/de_DE.ISO_8859-1/calendar.wissenschaft @@ -1,7 +1,7 @@ /* * Wissenschaft * - * $Id$ + * $FreeBSD$ */ #ifndef _de_DE_ISO_8859_1_wissenschaft_ diff --git a/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all b/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all index 17285bd2d3f5..11be34324383 100644 --- a/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all +++ b/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all @@ -1,7 +1,7 @@ /* * hrvatski calendar * - * $Id$ + * $FreeBSD$ */ #ifndef _hr_HR_ISO_8859_2_all diff --git a/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici b/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici index c1ecd5972175..b78ea99533f8 100644 --- a/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici +++ b/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici @@ -1,7 +1,7 @@ /* * hrvatski praznici * - * $Id: calendar.praznici,v 1.4 1997/02/22 19:28:33 peter Exp $ + * $FreeBSD$ */ #ifndef _hr_HR_ISO_8859_2_praznici diff --git a/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.all b/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.all index 17285bd2d3f5..11be34324383 100644 --- a/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.all +++ b/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.all @@ -1,7 +1,7 @@ /* * hrvatski calendar * - * $Id$ + * $FreeBSD$ */ #ifndef _hr_HR_ISO_8859_2_all diff --git a/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.praznici b/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.praznici index c1ecd5972175..b78ea99533f8 100644 --- a/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.praznici +++ b/usr.bin/calendar/calendars/hr_HR.ISO_8859-2/calendar.praznici @@ -1,7 +1,7 @@ /* * hrvatski praznici * - * $Id: calendar.praznici,v 1.4 1997/02/22 19:28:33 peter Exp $ + * $FreeBSD$ */ #ifndef _hr_HR_ISO_8859_2_praznici diff --git a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all index 89548e84c192..fcdc5e7f8f5e 100644 --- a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all +++ b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all @@ -1,7 +1,7 @@ /* * òÕÓÓËÉÊ ËÁÌÅÎÄÁÒØ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_all diff --git a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.common b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.common index 6bd7764fa82d..2a45b1d2650f 100644 --- a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.common +++ b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.common @@ -1,7 +1,7 @@ /* * òÕÓÓËÉÅ ÐÒÁÚÄÎÉËÉ * - * $Id: calendar.common,v 1.6 1997/05/01 14:39:55 ache Exp $ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_common_ diff --git a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk index 25c0eef3f577..22de9d3588b7 100644 --- a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk +++ b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk @@ -1,7 +1,7 @@ /* * ðÅÒÅ×ÏÄ ÞÁÓÏ× ÄÌÑ ÍÏÓËÏ×ÓËÏÊ ×ÒÅÍÅÎÎÏÊ ÚÏÎÙ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_msk_ diff --git a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.orthodox b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.orthodox index 51ef35baa737..0105343eae8a 100644 --- a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.orthodox +++ b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.orthodox @@ -1,7 +1,7 @@ /* * ðÒÁ×ÏÓÌÁ×ÎÙÅ ÐÒÁÚÄÎÉËÉ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_orthodox_ diff --git a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.pagan b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.pagan index 993a32dca5af..c37c993680e9 100644 --- a/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.pagan +++ b/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.pagan @@ -1,7 +1,7 @@ /* * ñÚÙÞÅÓËÉÅ ÐÒÁÚÄÎÉËÉ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_pagan_ diff --git a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.all b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.all index 89548e84c192..fcdc5e7f8f5e 100644 --- a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.all +++ b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.all @@ -1,7 +1,7 @@ /* * òÕÓÓËÉÊ ËÁÌÅÎÄÁÒØ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_all diff --git a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.common b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.common index 6bd7764fa82d..2a45b1d2650f 100644 --- a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.common +++ b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.common @@ -1,7 +1,7 @@ /* * òÕÓÓËÉÅ ÐÒÁÚÄÎÉËÉ * - * $Id: calendar.common,v 1.6 1997/05/01 14:39:55 ache Exp $ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_common_ diff --git a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.msk b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.msk index 25c0eef3f577..22de9d3588b7 100644 --- a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.msk +++ b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.msk @@ -1,7 +1,7 @@ /* * ðÅÒÅ×ÏÄ ÞÁÓÏ× ÄÌÑ ÍÏÓËÏ×ÓËÏÊ ×ÒÅÍÅÎÎÏÊ ÚÏÎÙ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_msk_ diff --git a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.orthodox b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.orthodox index 51ef35baa737..0105343eae8a 100644 --- a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.orthodox +++ b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.orthodox @@ -1,7 +1,7 @@ /* * ðÒÁ×ÏÓÌÁ×ÎÙÅ ÐÒÁÚÄÎÉËÉ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_orthodox_ diff --git a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.pagan b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.pagan index 993a32dca5af..c37c993680e9 100644 --- a/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.pagan +++ b/usr.bin/calendar/calendars/ru_SU.KOI8-R/calendar.pagan @@ -1,7 +1,7 @@ /* * ñÚÙÞÅÓËÉÅ ÐÒÁÚÄÎÉËÉ * - * $Id$ + * $FreeBSD$ */ #ifndef _ru_SU_KOI8_R_pagan_ diff --git a/usr.bin/calendar/day.c b/usr.bin/calendar/day.c index d79ff34c855d..cdc367898562 100644 --- a/usr.bin/calendar/day.c +++ b/usr.bin/calendar/day.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: day.c,v 1.11 1997/10/26 12:51:30 wosch Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c index 7747fa12e16e..846b96ed5805 100644 --- a/usr.bin/calendar/io.c +++ b/usr.bin/calendar/io.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: io.c,v 1.10 1997/06/23 06:52:13 charnier Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/calendar/ostern.c b/usr.bin/calendar/ostern.c index 2527eb0da4b5..12bff9f86e92 100644 --- a/usr.bin/calendar/ostern.c +++ b/usr.bin/calendar/ostern.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/usr.bin/cap_mkdb/cap_mkdb.1 b/usr.bin/cap_mkdb/cap_mkdb.1 index c7e5dec31776..4cd9ab2c979e 100644 --- a/usr.bin/cap_mkdb/cap_mkdb.1 +++ b/usr.bin/cap_mkdb/cap_mkdb.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)cap_mkdb.1 8.1 (Berkeley) 6/6/93 -.\" $Id: cap_mkdb.1,v 1.4 1997/02/22 19:54:19 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt CAP_MKDB 1 diff --git a/usr.bin/chat/Makefile b/usr.bin/chat/Makefile index 1154024e846f..2d25d76a12a0 100644 --- a/usr.bin/chat/Makefile +++ b/usr.bin/chat/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/08/22 15:42:31 peter Exp $ +# $FreeBSD$ PROG= chat CFLAGS+=-Wall diff --git a/usr.bin/chat/chat.8 b/usr.bin/chat/chat.8 index 26ef735b53c9..efcf1948c09d 100644 --- a/usr.bin/chat/chat.8 +++ b/usr.bin/chat/chat.8 @@ -1,6 +1,6 @@ .\" -*- nroff -*- .\" manual page [] for chat 1.8 -.\" $Id: chat.8,v 1.11 1998/06/03 04:21:36 jkoshy Exp $ +.\" $FreeBSD$ .\" SH section heading .\" SS subsection heading .\" LP paragraph diff --git a/usr.bin/chat/chat.c b/usr.bin/chat/chat.c index c25b8cfd8775..217dc303767f 100644 --- a/usr.bin/chat/chat.c +++ b/usr.bin/chat/chat.c @@ -79,7 +79,7 @@ #ifndef lint static const char rcsid[] = - "$Id: chat.c,v 1.12 1998/06/23 21:58:41 peter Exp $"; + "$FreeBSD$"; #endif #include diff --git a/usr.bin/checknr/checknr.1 b/usr.bin/checknr/checknr.1 index 8d2eefafb80f..928b905dc546 100644 --- a/usr.bin/checknr/checknr.1 +++ b/usr.bin/checknr/checknr.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)checknr.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt CHECKNR 1 diff --git a/usr.bin/chflags/chflags.1 b/usr.bin/chflags/chflags.1 index 99424f8a437b..1af45709cbdc 100644 --- a/usr.bin/chflags/chflags.1 +++ b/usr.bin/chflags/chflags.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chflags.1 8.2 (Berkeley) 3/31/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 31, 1994 .Dt CHFLAGS 1 diff --git a/usr.bin/chkey/Makefile b/usr.bin/chkey/Makefile index 032743af039c..c0bbd6aea174 100644 --- a/usr.bin/chkey/Makefile +++ b/usr.bin/chkey/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1997/05/28 15:54:04 wpaul Exp $ +# $FreeBSD$ PROG= chkey SRCS= chkey.c update.c generic.c diff --git a/usr.bin/chkey/chkey.1 b/usr.bin/chkey/chkey.1 index 6aab3000a359..be4668de7694 100644 --- a/usr.bin/chkey/chkey.1 +++ b/usr.bin/chkey/chkey.1 @@ -1,6 +1,6 @@ .\" @(#)chkey.1 1.5 91/03/11 TIRPC 1.0; .\" Copyright (c) 1988 Sun Microsystems, Inc. - All Rights Reserved. -.\" $Id$ +.\" $FreeBSD$ .\" .Dd July 5, 1989 .Dt CHKEY 1 diff --git a/usr.bin/chpass/chpass.1 b/usr.bin/chpass/chpass.1 index 098bca2a7e34..e0978b655e1a 100644 --- a/usr.bin/chpass/chpass.1 +++ b/usr.bin/chpass/chpass.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chpass.1 8.2 (Berkeley) 12/30/93 -.\" $Id: chpass.1,v 1.15 1999/02/23 02:41:26 ghelmer Exp $ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt CHPASS 1 diff --git a/usr.bin/chpass/chpass.c b/usr.bin/chpass/chpass.c index 2809f8bef74f..77f9f7832f84 100644 --- a/usr.bin/chpass/chpass.c +++ b/usr.bin/chpass/chpass.c @@ -40,7 +40,7 @@ static const char copyright[] = #ifndef lint static const char sccsid[] = "From: @(#)chpass.c 8.4 (Berkeley) 4/2/94"; static const char rcsid[] = - "$Id: chpass.c,v 1.14 1997/03/29 04:28:38 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/chpass/edit.c b/usr.bin/chpass/edit.c index cf4ae4d40299..cfb951302d65 100644 --- a/usr.bin/chpass/edit.c +++ b/usr.bin/chpass/edit.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: edit.c,v 1.13 1999/02/23 02:41:26 ghelmer Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/chpass/pw_yp.c b/usr.bin/chpass/pw_yp.c index dbc262bcacde..0877987f88bb 100644 --- a/usr.bin/chpass/pw_yp.c +++ b/usr.bin/chpass/pw_yp.c @@ -35,7 +35,7 @@ * Center for Telecommunications Research * Columbia University, New York City * - * $Id: pw_yp.c,v 1.13 1998/10/17 14:08:12 bde Exp $ + * $FreeBSD$ */ #ifdef YP diff --git a/usr.bin/chpass/pw_yp.h b/usr.bin/chpass/pw_yp.h index 0a1e1c0573d9..15f63d038776 100644 --- a/usr.bin/chpass/pw_yp.h +++ b/usr.bin/chpass/pw_yp.h @@ -35,7 +35,7 @@ * Center for Telecommunications Research * Columbia University, New York City * - * $Id$ + * $FreeBSD$ */ #ifdef YP diff --git a/usr.bin/chpass/util.c b/usr.bin/chpass/util.c index d8917f51bc96..e7dd06b6db88 100644 --- a/usr.bin/chpass/util.c +++ b/usr.bin/chpass/util.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)util.c 8.4 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: util.c,v 1.6 1998/03/23 07:41:49 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/cksum/cksum.1 b/usr.bin/cksum/cksum.1 index 37a6e2476b78..66a1d18f0c87 100644 --- a/usr.bin/cksum/cksum.1 +++ b/usr.bin/cksum/cksum.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)cksum.1 8.2 (Berkeley) 4/28/95 -.\" $Id: cksum.1,v 1.7 1997/11/09 16:08:11 obrien Exp $ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt CKSUM 1 diff --git a/usr.bin/cksum/cksum.c b/usr.bin/cksum/cksum.c index dbe488c956c3..01a7165c1d9c 100644 --- a/usr.bin/cksum/cksum.c +++ b/usr.bin/cksum/cksum.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)cksum.c 8.2 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: cksum.c,v 1.8 1997/11/09 05:47:55 obrien Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/cmp/cmp.1 b/usr.bin/cmp/cmp.1 index 005dfd2ebd60..6153e5160cb4 100644 --- a/usr.bin/cmp/cmp.1 +++ b/usr.bin/cmp/cmp.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)cmp.1 8.1 (Berkeley) 6/6/93 -.\" $Id: cmp.1,v 1.5 1997/06/26 11:22:10 charnier Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt CMP 1 diff --git a/usr.bin/col/col.1 b/usr.bin/col/col.1 index 577998e261f4..afd9c2778526 100644 --- a/usr.bin/col/col.1 +++ b/usr.bin/col/col.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)col.1 8.1 (Berkeley) 6/29/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 29, 1993 .Dt COL 1 diff --git a/usr.bin/colcrt/colcrt.1 b/usr.bin/colcrt/colcrt.1 index 7330c088b43d..1167e4694736 100644 --- a/usr.bin/colcrt/colcrt.1 +++ b/usr.bin/colcrt/colcrt.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)colcrt.1 8.1 (Berkeley) 6/30/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 30, 1993 .Dt COLCRT 1 diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile index ccb5e98f452e..29b5e108b553 100644 --- a/usr.bin/colldef/Makefile +++ b/usr.bin/colldef/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1998/05/05 13:16:22 bde Exp $ +# $FreeBSD$ PROG = colldef LFLAGS = -8 -i diff --git a/usr.bin/colldef/colldef.1 b/usr.bin/colldef/colldef.1 index 66bb90f6d536..9f4f78169c7d 100644 --- a/usr.bin/colldef/colldef.1 +++ b/usr.bin/colldef/colldef.1 @@ -23,7 +23,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: colldef.1,v 1.5 1997/06/26 11:25:16 charnier Exp $ +.\" $FreeBSD$ .\" .Dd January, 27 1995 .Dt COLLDEF 1 diff --git a/usr.bin/colldef/data/Makefile b/usr.bin/colldef/data/Makefile index 8bffc4e625a4..b828085c3b5a 100644 --- a/usr.bin/colldef/data/Makefile +++ b/usr.bin/colldef/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 1999/06/05 03:03:57 julian Exp $ +# $FreeBSD$ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} diff --git a/usr.bin/colldef/data/de_DE.DIS_8859-15.src b/usr.bin/colldef/data/de_DE.DIS_8859-15.src index e952d169902e..f5d609346cc7 100644 --- a/usr.bin/colldef/data/de_DE.DIS_8859-15.src +++ b/usr.bin/colldef/data/de_DE.DIS_8859-15.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.DIS_8859-15.src,v 1.2 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 substitute with "ss" diff --git a/usr.bin/colldef/data/de_DE.ISO_8859-1.src b/usr.bin/colldef/data/de_DE.ISO_8859-1.src index f366e97d2916..52d155d75a54 100644 --- a/usr.bin/colldef/data/de_DE.ISO_8859-1.src +++ b/usr.bin/colldef/data/de_DE.ISO_8859-1.src @@ -1,6 +1,6 @@ # German/ISO 8859-1 (backward compatible with ASCII) # -# $Id: de_DE.ISO_8859-1.src,v 1.5 1999/02/12 21:14:41 ache Exp $ +# $FreeBSD$ # charmap map.ISO_8859-1 substitute with "ss" diff --git a/usr.bin/colldef/data/es_ES.DIS_8859-15.src b/usr.bin/colldef/data/es_ES.DIS_8859-15.src index d31a73bf0372..002b63503d5a 100644 --- a/usr.bin/colldef/data/es_ES.DIS_8859-15.src +++ b/usr.bin/colldef/data/es_ES.DIS_8859-15.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id: es_ES.DIS_8859-15.src,v 1.3 1997/02/22 19:54:35 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/usr.bin/colldef/data/es_ES.ISO_8859-1.src b/usr.bin/colldef/data/es_ES.ISO_8859-1.src index e088e21b5c46..7c2b21fc5955 100644 --- a/usr.bin/colldef/data/es_ES.ISO_8859-1.src +++ b/usr.bin/colldef/data/es_ES.ISO_8859-1.src @@ -1,6 +1,6 @@ # Espan~ol (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/usr.bin/colldef/data/is_IS.DIS_8859-15.src b/usr.bin/colldef/data/is_IS.DIS_8859-15.src index 605a8433ae1e..fe4dd9beae88 100644 --- a/usr.bin/colldef/data/is_IS.DIS_8859-15.src +++ b/usr.bin/colldef/data/is_IS.DIS_8859-15.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id: is_IS.DIS_8859-15.src,v 1.4 1997/02/22 19:54:38 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/usr.bin/colldef/data/is_IS.ISO_8859-1.src b/usr.bin/colldef/data/is_IS.ISO_8859-1.src index 288459c0b3fd..50cd9a95ca8f 100644 --- a/usr.bin/colldef/data/is_IS.ISO_8859-1.src +++ b/usr.bin/colldef/data/is_IS.ISO_8859-1.src @@ -1,6 +1,6 @@ # icelandic (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/usr.bin/colldef/data/lt_LN.ASCII.src b/usr.bin/colldef/data/lt_LN.ASCII.src index 525ebb979707..df3c34088764 100644 --- a/usr.bin/colldef/data/lt_LN.ASCII.src +++ b/usr.bin/colldef/data/lt_LN.ASCII.src @@ -1,6 +1,6 @@ # ASCII # -# $Id: lt_LN.ISO_8859-1.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # order \ \x00;...;\xff diff --git a/usr.bin/colldef/data/lt_LN.DIS_8859-15.src b/usr.bin/colldef/data/lt_LN.DIS_8859-15.src index 71de58338709..449ce85e6336 100644 --- a/usr.bin/colldef/data/lt_LN.DIS_8859-15.src +++ b/usr.bin/colldef/data/lt_LN.DIS_8859-15.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id: lt_LN.DIS_8859-15.src,v 1.8 1997/02/22 19:54:39 peter Exp $ +# $FreeBSD$ # charmap map.DIS_8859-15 order \ diff --git a/usr.bin/colldef/data/lt_LN.ISO_8859-1.src b/usr.bin/colldef/data/lt_LN.ISO_8859-1.src index 93a2da01484a..99b7d08ddb00 100644 --- a/usr.bin/colldef/data/lt_LN.ISO_8859-1.src +++ b/usr.bin/colldef/data/lt_LN.ISO_8859-1.src @@ -1,6 +1,6 @@ # latin1 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-1 order \ diff --git a/usr.bin/colldef/data/lt_LN.ISO_8859-2.src b/usr.bin/colldef/data/lt_LN.ISO_8859-2.src index 772fe3220385..aee3671f0966 100644 --- a/usr.bin/colldef/data/lt_LN.ISO_8859-2.src +++ b/usr.bin/colldef/data/lt_LN.ISO_8859-2.src @@ -1,6 +1,6 @@ # latin2 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.ISO_8859-2 order \ diff --git a/usr.bin/colldef/data/ru_SU.CP866.src b/usr.bin/colldef/data/ru_SU.CP866.src index 88ca377082a7..2fc2d20835c3 100644 --- a/usr.bin/colldef/data/ru_SU.CP866.src +++ b/usr.bin/colldef/data/ru_SU.CP866.src @@ -1,6 +1,6 @@ # CP866 (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.CP866 order \ diff --git a/usr.bin/colldef/data/ru_SU.KOI8-R.src b/usr.bin/colldef/data/ru_SU.KOI8-R.src index f6b0a1877bef..3a67bc4e39fb 100644 --- a/usr.bin/colldef/data/ru_SU.KOI8-R.src +++ b/usr.bin/colldef/data/ru_SU.KOI8-R.src @@ -1,6 +1,6 @@ # koi8-r (backward compatible with ASCII) # -# $Id$ +# $FreeBSD$ # charmap map.KOI8-R order \ diff --git a/usr.bin/colldef/parse.y b/usr.bin/colldef/parse.y index da485dacd989..c4beb8b59b95 100644 --- a/usr.bin/colldef/parse.y +++ b/usr.bin/colldef/parse.y @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: parse.y,v 1.13 1999/02/12 20:56:49 ache Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/colldef/scan.l b/usr.bin/colldef/scan.l index 405068d5a272..d99f001caa1c 100644 --- a/usr.bin/colldef/scan.l +++ b/usr.bin/colldef/scan.l @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scan.l,v 1.8 1999/02/12 20:39:06 ache Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/colrm/colrm.1 b/usr.bin/colrm/colrm.1 index 3b3266b7fd32..ddc083b3ceb5 100644 --- a/usr.bin/colrm/colrm.1 +++ b/usr.bin/colrm/colrm.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)colrm.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt COLRM 1 diff --git a/usr.bin/colrm/colrm.c b/usr.bin/colrm/colrm.c index 2c9e0e496e6e..b00182d604dd 100644 --- a/usr.bin/colrm/colrm.c +++ b/usr.bin/colrm/colrm.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: colrm.c,v 1.5 1997/12/29 00:08:59 alex Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/column/column.1 b/usr.bin/column/column.1 index 298eed842ecf..4b8ec9ba5234 100644 --- a/usr.bin/column/column.1 +++ b/usr.bin/column/column.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)column.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Os diff --git a/usr.bin/comm/comm.1 b/usr.bin/comm/comm.1 index 8876de8df644..7fe49374dd85 100644 --- a/usr.bin/comm/comm.1 +++ b/usr.bin/comm/comm.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)comm.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Os diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c index 70e7c0d01616..25e0f2f77439 100644 --- a/usr.bin/comm/comm.c +++ b/usr.bin/comm/comm.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "From: @(#)comm.c 8.4 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: comm.c,v 1.4 1997/09/07 15:09:17 joerg Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/compile_et/Makefile b/usr.bin/compile_et/Makefile index 137f88bc719e..d8cd73854eb7 100644 --- a/usr.bin/compile_et/Makefile +++ b/usr.bin/compile_et/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1998/03/20 16:21:39 bde Exp $ +# $FreeBSD$ PROG= compile_et SRCS= compile_et.c error_table.y diff --git a/usr.bin/compress/compress.1 b/usr.bin/compress/compress.1 index a06c8a0a9a1e..075052f06cf4 100644 --- a/usr.bin/compress/compress.1 +++ b/usr.bin/compress/compress.1 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)compress.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt COMPRESS 1 diff --git a/usr.bin/compress/zopen.3 b/usr.bin/compress/zopen.3 index 1584edded25b..f97ebde61fb6 100644 --- a/usr.bin/compress/zopen.3 +++ b/usr.bin/compress/zopen.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)zopen.3 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt ZOPEN 3 diff --git a/usr.bin/compress/zopen.h b/usr.bin/compress/zopen.h index 322fd2de9a23..1a22de12cab3 100644 --- a/usr.bin/compress/zopen.h +++ b/usr.bin/compress/zopen.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _ZOPEN_H_ diff --git a/usr.bin/cpp/cpp.sh b/usr.bin/cpp/cpp.sh index df09d6de30de..19dee9d4d558 100644 --- a/usr.bin/cpp/cpp.sh +++ b/usr.bin/cpp/cpp.sh @@ -36,7 +36,7 @@ # SUCH DAMAGE. # # From: @(#)cpp.sh 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ # # Transitional front end to CCCP to make it behave like (Reiser) CCP: # specifies -traditional diff --git a/usr.bin/ctags/C.c b/usr.bin/ctags/C.c index c030cedb2640..55c637e7ddf1 100644 --- a/usr.bin/ctags/C.c +++ b/usr.bin/ctags/C.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94"; #else static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/ctags/ctags.1 b/usr.bin/ctags/ctags.1 index 49ac44239959..5e841f21b978 100644 --- a/usr.bin/ctags/ctags.1 +++ b/usr.bin/ctags/ctags.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ctags.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt CTAGS 1 diff --git a/usr.bin/cut/cut.1 b/usr.bin/cut/cut.1 index 207165109d2d..e0e9a7127d1a 100644 --- a/usr.bin/cut/cut.1 +++ b/usr.bin/cut/cut.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)cut.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt CUT 1 diff --git a/usr.bin/dig/Makefile b/usr.bin/dig/Makefile index 8faa06ae3329..7b1e7f085c43 100644 --- a/usr.bin/dig/Makefile +++ b/usr.bin/dig/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/02/22 19:54:49 peter Exp $ +# $FreeBSD$ .include "${.CURDIR}/../../usr.sbin/named/Makefile.inc" diff --git a/usr.bin/dnsquery/Makefile b/usr.bin/dnsquery/Makefile index 2486aded5c42..ac7cc113aaa8 100644 --- a/usr.bin/dnsquery/Makefile +++ b/usr.bin/dnsquery/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/02/22 19:54:50 peter Exp $ +# $FreeBSD$ .include "${.CURDIR}/../../usr.sbin/named/Makefile.inc" diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile index e6a364db0fad..d620c8ec3485 100644 --- a/usr.bin/doscmd/Makefile +++ b/usr.bin/doscmd/Makefile @@ -1,6 +1,6 @@ # from BSDI Makefile,v 2.6 1996/04/08 20:06:40 bostic Exp # -# $Id: Makefile,v 1.18 1999/03/16 20:57:19 imp Exp $ +# $FreeBSD$ PROG= doscmd SRCS= AsyncIO.c ParseBuffer.c bios.c callback.c cpu.c dos.c cmos.c config.c \ diff --git a/usr.bin/doscmd/ParseBuffer.c b/usr.bin/doscmd/ParseBuffer.c index 88c4771ecce5..2eeaeed31647 100644 --- a/usr.bin/doscmd/ParseBuffer.c +++ b/usr.bin/doscmd/ParseBuffer.c @@ -29,7 +29,7 @@ * * BSDI ParseBuffer.c,v 2.2 1996/04/08 19:32:15 bostic Exp * - * $Id: ParseBuffer.c,v 1.2 1996/09/22 05:52:53 miff Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/bios.c b/usr.bin/doscmd/bios.c index ccfdce826381..c6cea9204ff5 100644 --- a/usr.bin/doscmd/bios.c +++ b/usr.bin/doscmd/bios.c @@ -29,7 +29,7 @@ * * BSDI bios.c,v 2.3 1996/04/08 19:32:19 bostic Exp * - * $Id: bios.c,v 1.2 1997/08/15 23:41:23 jlemon Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/callback.c b/usr.bin/doscmd/callback.c index 4b333ecc7c37..890c7142d454 100644 --- a/usr.bin/doscmd/callback.c +++ b/usr.bin/doscmd/callback.c @@ -1,6 +1,6 @@ /* No copyright?! ** -** $Id: callback.c,v 1.3 1996/09/24 00:02:25 miff Exp $ +** $FreeBSD$ */ diff --git a/usr.bin/doscmd/callback.h b/usr.bin/doscmd/callback.h index f81127e59f79..d3c656fd7c26 100644 --- a/usr.bin/doscmd/callback.h +++ b/usr.bin/doscmd/callback.h @@ -1,7 +1,7 @@ /* ** No copyright?! ** -** $Id: callback.h,v 1.4 1996/09/22 15:42:48 miff Exp $ +** $FreeBSD$ */ typedef void (*callback_t)(regcontext_t *REGS); diff --git a/usr.bin/doscmd/cmos.c b/usr.bin/doscmd/cmos.c index 115cbc7ccde6..1486c6fd348e 100644 --- a/usr.bin/doscmd/cmos.c +++ b/usr.bin/doscmd/cmos.c @@ -29,7 +29,7 @@ * * BSDI cmos.c,v 2.3 1996/04/08 19:32:20 bostic Exp * - * $Id: cmos.c,v 1.2 1996/09/18 16:12:24 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/com.h b/usr.bin/doscmd/com.h index c2857e2a43d4..98982a958722 100644 --- a/usr.bin/doscmd/com.h +++ b/usr.bin/doscmd/com.h @@ -29,7 +29,7 @@ * * BSDI com.h,v 2.2 1996/04/08 19:32:21 bostic Exp * - * $Id: com.h,v 1.3 1996/09/22 15:42:48 miff Exp $ + * $FreeBSD$ */ /* com.h for doscmd int14.c */ diff --git a/usr.bin/doscmd/config.c b/usr.bin/doscmd/config.c index 823c00a937fc..d20aa1579a17 100644 --- a/usr.bin/doscmd/config.c +++ b/usr.bin/doscmd/config.c @@ -29,7 +29,7 @@ * * BSDI config.c,v 2.2 1996/04/08 19:32:22 bostic Exp * - * $Id: config.c,v 1.1 1997/08/09 01:42:35 dyson Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/cpu.c b/usr.bin/doscmd/cpu.c index bad8725e9bd1..c273084547e0 100644 --- a/usr.bin/doscmd/cpu.c +++ b/usr.bin/doscmd/cpu.c @@ -1,7 +1,7 @@ /* ** No copyright ?! ** -** $Id: cpu.c,v 1.5 1996/09/25 11:05:54 miff Exp $ +** $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/crt0.c b/usr.bin/doscmd/crt0.c index 9b3779b15af6..ec9c706f7f5c 100644 --- a/usr.bin/doscmd/crt0.c +++ b/usr.bin/doscmd/crt0.c @@ -29,7 +29,7 @@ * * BSDI crt0.c,v 2.2 1996/04/08 19:32:24 bostic Exp * - * $Id: crt0.c,v 1.2 1996/09/18 16:12:25 miff Exp $ + * $FreeBSD$ */ char **environ; diff --git a/usr.bin/doscmd/cwd.c b/usr.bin/doscmd/cwd.c index 6a9b60f4a9cf..a5d6c88c83f4 100644 --- a/usr.bin/doscmd/cwd.c +++ b/usr.bin/doscmd/cwd.c @@ -29,7 +29,7 @@ * * BSDI cwd.c,v 2.2 1996/04/08 19:32:25 bostic Exp * - * $Id: cwd.c,v 1.2 1998/07/01 19:56:13 imp Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/cwd.h b/usr.bin/doscmd/cwd.h index 323512ff9e4e..dfe7e4ea4486 100644 --- a/usr.bin/doscmd/cwd.h +++ b/usr.bin/doscmd/cwd.h @@ -29,7 +29,7 @@ * * BSDI cwd.h,v 2.2 1996/04/08 19:32:26 bostic Exp * - * $Id: cwd.h,v 1.3 1996/09/23 09:59:23 miff Exp $ + * $FreeBSD$ */ static inline u_char * diff --git a/usr.bin/doscmd/debug.c b/usr.bin/doscmd/debug.c index e736f8db4c6b..dde4fcb72c00 100644 --- a/usr.bin/doscmd/debug.c +++ b/usr.bin/doscmd/debug.c @@ -31,7 +31,7 @@ * * from: BSDI doscmd.c,v 2.3 1996/04/08 19:32:30 bostic Exp * - * $Id: debug.c,v 1.5 1996/09/25 00:03:43 miff Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/doscmd/dispatch.h b/usr.bin/doscmd/dispatch.h index 59620f159312..7506c534220a 100644 --- a/usr.bin/doscmd/dispatch.h +++ b/usr.bin/doscmd/dispatch.h @@ -23,7 +23,7 @@ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. ** -** $Id: dispatch.h,v 1.3 1996/09/22 05:52:56 miff Exp $ +** $FreeBSD$ */ /* diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c index b81330483f18..7b8fa0c9a911 100644 --- a/usr.bin/doscmd/dos.c +++ b/usr.bin/doscmd/dos.c @@ -31,7 +31,7 @@ * * BSDI int21.c,v 2.2 1996/04/08 19:32:51 bostic Exp * - * $Id: dos.c,v 1.4 1998/07/16 23:54:23 imp Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/dos.h b/usr.bin/doscmd/dos.h index 030438e7e922..1ec83ac7f32c 100644 --- a/usr.bin/doscmd/dos.h +++ b/usr.bin/doscmd/dos.h @@ -29,7 +29,7 @@ * * BSDI dos.h,v 2.2 1996/04/08 19:32:28 bostic Exp * - * $Id: dos.h,v 1.7 1996/09/23 09:59:24 miff Exp $ + * $FreeBSD$ */ /* diff --git a/usr.bin/doscmd/doscmd.1 b/usr.bin/doscmd/doscmd.1 index 08b320c1b9f9..4d039a4b0b66 100644 --- a/usr.bin/doscmd/doscmd.1 +++ b/usr.bin/doscmd/doscmd.1 @@ -28,7 +28,7 @@ .\" SUCH DAMAGE. .\" .\" BSDI doscmd.1,v 2.3 1996/04/08 19:32:29 bostic Exp -.\" $Id: doscmd.1,v 1.9 1999/07/12 20:23:25 nik Exp $ +.\" $FreeBSD$ .\" .Dd January 30, 1995 .Dt DOSCMD 1 diff --git a/usr.bin/doscmd/doscmd.c b/usr.bin/doscmd/doscmd.c index 454a38be2938..8e8da70f5191 100644 --- a/usr.bin/doscmd/doscmd.c +++ b/usr.bin/doscmd/doscmd.c @@ -29,7 +29,7 @@ * * BSDI doscmd.c,v 2.3 1996/04/08 19:32:30 bostic Exp * - * $Id: doscmd.c,v 1.7 1998/07/16 23:54:25 imp Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/doscmd.h b/usr.bin/doscmd/doscmd.h index 224f9efe1178..1c960647d6f4 100644 --- a/usr.bin/doscmd/doscmd.h +++ b/usr.bin/doscmd/doscmd.h @@ -29,7 +29,7 @@ * * BSDI doscmd.h,v 2.3 1996/04/08 19:32:32 bostic Exp * - * $Id: doscmd.h,v 1.3 1997/09/30 22:03:41 jlemon Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/doscmd/doscmd_loader.c b/usr.bin/doscmd/doscmd_loader.c index 7032bfb5cf25..d219ad52b46e 100644 --- a/usr.bin/doscmd/doscmd_loader.c +++ b/usr.bin/doscmd/doscmd_loader.c @@ -29,7 +29,7 @@ * * BSDI doscmd_loader.c,v 2.3 1996/04/08 19:32:33 bostic Exp * - * $Id: doscmd_loader.c,v 1.2 1996/09/22 05:52:59 miff Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/ems.c b/usr.bin/doscmd/ems.c index 25b68db32695..1b9b04568432 100644 --- a/usr.bin/doscmd/ems.c +++ b/usr.bin/doscmd/ems.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/usr.bin/doscmd/ems.h b/usr.bin/doscmd/ems.h index 990866cff785..276bddc6bbde 100644 --- a/usr.bin/doscmd/ems.h +++ b/usr.bin/doscmd/ems.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ems.h,v 1.1 1997/09/30 22:03:45 jlemon Exp $ + * $FreeBSD$ */ #ifndef EMS_H diff --git a/usr.bin/doscmd/emsdriv.S b/usr.bin/doscmd/emsdriv.S index ffa2c9839212..40c7affd00b7 100644 --- a/usr.bin/doscmd/emsdriv.S +++ b/usr.bin/doscmd/emsdriv.S @@ -24,7 +24,7 @@ ! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ! THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ! -! $Id$ +! $FreeBSD$ ! diff --git a/usr.bin/doscmd/emuint.c b/usr.bin/doscmd/emuint.c index 1b2bfdd73290..9c230a3c0dae 100644 --- a/usr.bin/doscmd/emuint.c +++ b/usr.bin/doscmd/emuint.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/emuint.h b/usr.bin/doscmd/emuint.h index d90b60ec36ec..d3797687eda3 100644 --- a/usr.bin/doscmd/emuint.h +++ b/usr.bin/doscmd/emuint.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ diff --git a/usr.bin/doscmd/exe.c b/usr.bin/doscmd/exe.c index 0314a62442e7..ce9a8f02d049 100644 --- a/usr.bin/doscmd/exe.c +++ b/usr.bin/doscmd/exe.c @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * BSDI exe.c,v 2.2 1996/04/08 19:32:34 bostic Exp - * $Id: exe.c,v 1.3 1996/09/22 06:26:01 miff Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/int.c b/usr.bin/doscmd/int.c index 2385f5624a1f..3b72e24bebaa 100644 --- a/usr.bin/doscmd/int.c +++ b/usr.bin/doscmd/int.c @@ -1,7 +1,7 @@ /* ** No copyright?! ** -** $Id: int.c,v 1.4 1997/03/18 02:36:56 msmith Exp $ +** $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int10.c b/usr.bin/doscmd/int10.c index 0f02cbd94032..32bec88c1c53 100644 --- a/usr.bin/doscmd/int10.c +++ b/usr.bin/doscmd/int10.c @@ -29,7 +29,7 @@ * * BSDI int10.c,v 2.3 1996/04/08 19:32:40 bostic Exp * - * $Id: int10.c,v 1.2 1996/09/22 05:53:00 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int13.c b/usr.bin/doscmd/int13.c index 2e6db4b96ec0..84cb13f6eb0d 100644 --- a/usr.bin/doscmd/int13.c +++ b/usr.bin/doscmd/int13.c @@ -29,7 +29,7 @@ * * BSDI int13.c,v 2.3 1996/04/08 19:32:43 bostic Exp * - * $Id: int13.c,v 1.1 1997/08/09 01:42:46 dyson Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int14.c b/usr.bin/doscmd/int14.c index 602bb80b14f0..4d367eb7f4a0 100644 --- a/usr.bin/doscmd/int14.c +++ b/usr.bin/doscmd/int14.c @@ -32,7 +32,7 @@ * * BSDI int14.c,v 2.2 1996/04/08 19:32:45 bostic Exp * - * $Id: int14.c,v 1.3 1996/09/22 15:42:53 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int16.c b/usr.bin/doscmd/int16.c index ccf99cd7e458..517e1312c186 100644 --- a/usr.bin/doscmd/int16.c +++ b/usr.bin/doscmd/int16.c @@ -29,7 +29,7 @@ * * BSDI int16.c,v 2.2 1996/04/08 19:32:47 bostic Exp * - * $Id: int16.c,v 1.3 1996/09/22 15:42:54 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int17.c b/usr.bin/doscmd/int17.c index 88621917a55a..d62d6da9b321 100644 --- a/usr.bin/doscmd/int17.c +++ b/usr.bin/doscmd/int17.c @@ -29,7 +29,7 @@ * * BSDI int17.c,v 2.2 1996/04/08 19:32:48 bostic Exp * - * $Id: int17.c,v 1.2 1998/01/22 02:44:54 msmith Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int1a.c b/usr.bin/doscmd/int1a.c index 7a973307540e..ff7df30f8376 100644 --- a/usr.bin/doscmd/int1a.c +++ b/usr.bin/doscmd/int1a.c @@ -29,7 +29,7 @@ * * BSDI int1a.c,v 2.2 1996/04/08 19:32:49 bostic Exp * - * $Id: int1a.c,v 1.1 1997/08/09 01:42:49 dyson Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/int2f.c b/usr.bin/doscmd/int2f.c index e8fecb3d9538..8bfe3d8db71e 100644 --- a/usr.bin/doscmd/int2f.c +++ b/usr.bin/doscmd/int2f.c @@ -29,7 +29,7 @@ * * BSDI int2f.c,v 2.2 1996/04/08 19:32:53 bostic Exp * - * $Id: int2f.c,v 1.1 1997/08/09 01:42:50 dyson Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/intff.c b/usr.bin/doscmd/intff.c index a32c64698c80..fd167af6cf4e 100644 --- a/usr.bin/doscmd/intff.c +++ b/usr.bin/doscmd/intff.c @@ -29,7 +29,7 @@ * * BSDI intff.c,v 2.2 1996/04/08 19:32:56 bostic Exp * - * $Id: intff.c,v 1.4 1998/07/02 05:12:53 imp Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/mem.c b/usr.bin/doscmd/mem.c index 025d86e37bfe..bae413f660fc 100644 --- a/usr.bin/doscmd/mem.c +++ b/usr.bin/doscmd/mem.c @@ -29,7 +29,7 @@ * * BSDI mem.c,v 2.2 1996/04/08 19:32:57 bostic Exp * - * $Id: mem.c,v 1.4 1996/09/22 15:42:57 miff Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/doscmd/mouse.c b/usr.bin/doscmd/mouse.c index 859366705fb4..c9a07740a0fa 100644 --- a/usr.bin/doscmd/mouse.c +++ b/usr.bin/doscmd/mouse.c @@ -29,7 +29,7 @@ * * BSDI int33.c,v 2.2 1996/04/08 19:32:54 bostic Exp * - * $Id: mouse.c,v 1.3 1996/09/22 15:42:58 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/mouse.h b/usr.bin/doscmd/mouse.h index e819c50ad901..b77cba48f57d 100644 --- a/usr.bin/doscmd/mouse.h +++ b/usr.bin/doscmd/mouse.h @@ -29,7 +29,7 @@ * * BSDI mouse.h,v 2.2 1996/04/08 19:32:58 bostic Exp * - * $Id: mouse.h,v 1.3 1996/09/22 15:42:58 miff Exp $ + * $FreeBSD$ */ typedef struct { diff --git a/usr.bin/doscmd/net.c b/usr.bin/doscmd/net.c index 464113f62e72..b899d96599a8 100644 --- a/usr.bin/doscmd/net.c +++ b/usr.bin/doscmd/net.c @@ -1,7 +1,7 @@ /* ** No copyright! ** -** $Id: net.c,v 1.3 1996/09/22 15:42:58 miff Exp $ +** $FreeBSD$ ** ** NetBIOS etc. hooks. */ diff --git a/usr.bin/doscmd/port.c b/usr.bin/doscmd/port.c index c9a06b29957f..eb2158f1e7d1 100644 --- a/usr.bin/doscmd/port.c +++ b/usr.bin/doscmd/port.c @@ -29,7 +29,7 @@ * * BSDI port.c,v 2.2 1996/04/08 19:33:03 bostic Exp * - * $Id: port.c,v 1.1 1997/08/09 01:42:54 dyson Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/redir.S b/usr.bin/doscmd/redir.S index 4cb4e2e86c34..1f40f3cce6e8 100644 --- a/usr.bin/doscmd/redir.S +++ b/usr.bin/doscmd/redir.S @@ -24,7 +24,7 @@ ! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ! THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ! -! $Id$ +! $FreeBSD$ ! diff --git a/usr.bin/doscmd/register.h b/usr.bin/doscmd/register.h index 1b6cecc23512..ba0e91e03a9a 100644 --- a/usr.bin/doscmd/register.h +++ b/usr.bin/doscmd/register.h @@ -23,7 +23,7 @@ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. ** -** $Id: register.h,v 1.4 1997/03/18 02:36:56 msmith Exp $ +** $FreeBSD$ */ /****************************************************************************** diff --git a/usr.bin/doscmd/setver.c b/usr.bin/doscmd/setver.c index 2ae35180338c..5826567373ed 100644 --- a/usr.bin/doscmd/setver.c +++ b/usr.bin/doscmd/setver.c @@ -29,7 +29,7 @@ * * BSDI setver.c,v 2.2 1996/04/08 19:33:04 bostic Exp * - * $Id: setver.c,v 1.2 1996/09/22 05:53:09 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/signal.c b/usr.bin/doscmd/signal.c index f42e4cd61d59..704159760575 100644 --- a/usr.bin/doscmd/signal.c +++ b/usr.bin/doscmd/signal.c @@ -29,7 +29,7 @@ * * BSDI signal.c,v 2.2 1996/04/08 19:33:06 bostic Exp * - * $Id: signal.c,v 1.2 1998/02/28 16:02:24 jraynard Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/timer.c b/usr.bin/doscmd/timer.c index afaa69f804d3..41b30199585a 100644 --- a/usr.bin/doscmd/timer.c +++ b/usr.bin/doscmd/timer.c @@ -1,7 +1,7 @@ /* ** No copyright?! ** -** $Id: timer.c,v 1.3 1996/09/22 15:42:59 miff Exp $ +** $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/trace.c b/usr.bin/doscmd/trace.c index 65a6ae36199e..9be758fd7ba6 100644 --- a/usr.bin/doscmd/trace.c +++ b/usr.bin/doscmd/trace.c @@ -29,7 +29,7 @@ * * BSDI trace.c,v 2.2 1996/04/08 19:33:07 bostic Exp * - * $Id: trace.c,v 1.3 1996/09/25 00:03:44 miff Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/trap.c b/usr.bin/doscmd/trap.c index f8107502673c..8b41caa43084 100644 --- a/usr.bin/doscmd/trap.c +++ b/usr.bin/doscmd/trap.c @@ -29,7 +29,7 @@ * * BSDI trap.c,v 2.3 1996/04/08 19:33:08 bostic Exp * - * $Id: trap.c,v 1.3 1999/07/06 07:15:10 cracauer Exp $ + * $FreeBSD$ */ #include "doscmd.h" diff --git a/usr.bin/doscmd/trap.h b/usr.bin/doscmd/trap.h index 2aa4e9dfa20c..6cba0df95c3d 100644 --- a/usr.bin/doscmd/trap.h +++ b/usr.bin/doscmd/trap.h @@ -29,7 +29,7 @@ * * BSDI trap.h,v 2.2 1996/04/08 19:33:09 bostic Exp * - * $Id: trap.h,v 1.2 1996/09/22 05:53:11 miff Exp $ + * $FreeBSD$ */ #define CLI 0xfa diff --git a/usr.bin/doscmd/tty.c b/usr.bin/doscmd/tty.c index ef42817a05f2..d18f157095f7 100644 --- a/usr.bin/doscmd/tty.c +++ b/usr.bin/doscmd/tty.c @@ -29,7 +29,7 @@ * * BSDI tty.c,v 2.4 1996/04/08 22:03:27 prb Exp * - * $Id: tty.c,v 1.4 1998/02/22 23:36:54 msmith Exp $ + * $FreeBSD$ */ #ifndef NO_X diff --git a/usr.bin/doscmd/video.h b/usr.bin/doscmd/video.h index 2ddded173c57..7b36eb782056 100644 --- a/usr.bin/doscmd/video.h +++ b/usr.bin/doscmd/video.h @@ -29,7 +29,7 @@ * * BSDI video.h,v 2.2 1996/04/08 19:33:12 bostic Exp * - * $Id: video.h,v 1.2 1996/09/22 05:53:12 miff Exp $ + * $FreeBSD$ */ /* diff --git a/usr.bin/doscmd/xms.c b/usr.bin/doscmd/xms.c index b016a0aff87e..9dbd4ba71f9d 100644 --- a/usr.bin/doscmd/xms.c +++ b/usr.bin/doscmd/xms.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: xms.c,v 1.3 1997/09/30 22:04:06 jlemon Exp $ + * $FreeBSD$ */ /* diff --git a/usr.bin/doscmd/xms.h b/usr.bin/doscmd/xms.h index 14a223f895d5..51890282b24c 100644 --- a/usr.bin/doscmd/xms.h +++ b/usr.bin/doscmd/xms.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef XMS_H diff --git a/usr.bin/du/du.1 b/usr.bin/du/du.1 index 8a36cda3c01c..08b1ab456c3e 100644 --- a/usr.bin/du/du.1 +++ b/usr.bin/du/du.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)du.1 8.2 (Berkeley) 4/1/94 -.\" $Id: du.1,v 1.10 1997/12/29 20:56:21 jkh Exp $ +.\" $FreeBSD$ .\" .Dd April 1, 1994 .Dt DU 1 diff --git a/usr.bin/ee/ee.1 b/usr.bin/ee/ee.1 index 6d4ef415f851..2571b6fa77fa 100644 --- a/usr.bin/ee/ee.1 +++ b/usr.bin/ee/ee.1 @@ -1,5 +1,5 @@ .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd August 30, 1995 .Dt EE 1 diff --git a/usr.bin/ee/ee.c b/usr.bin/ee/ee.c index bb38c7007d16..c44ec0057cf4 100644 --- a/usr.bin/ee/ee.c +++ b/usr.bin/ee/ee.c @@ -52,7 +52,7 @@ #ifndef lint static const char rcsid[] = - "$Id: ee.c,v 1.11 1998/10/01 21:18:18 obrien Exp $"; + "$FreeBSD$"; #endif /* not lint */ char *ee_copyright_message = @@ -64,7 +64,7 @@ char *ee_long_notice[] = { "copyright. All rights are reserved." }; -char *version = "@(#) ee, version 1.3 $Revision: 1.11 $"; +char *version = "@(#) ee, version 1.3 $Revision: 1.12 $"; #ifdef NCURSE #include "new_curse.h" diff --git a/usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg b/usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg index 21055c2f038c..ef2ce2230d3e 100644 --- a/usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg +++ b/usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id$ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/ee/nls/de_DE.ISO_8859-1/ee.msg b/usr.bin/ee/nls/de_DE.ISO_8859-1/ee.msg index 21055c2f038c..ef2ce2230d3e 100644 --- a/usr.bin/ee/nls/de_DE.ISO_8859-1/ee.msg +++ b/usr.bin/ee/nls/de_DE.ISO_8859-1/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id$ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/ee/nls/en_US.ISO_8859-1/ee.msg b/usr.bin/ee/nls/en_US.ISO_8859-1/ee.msg index 6a5fad2b324a..0a383ad0cfe2 100644 --- a/usr.bin/ee/nls/en_US.ISO_8859-1/ee.msg +++ b/usr.bin/ee/nls/en_US.ISO_8859-1/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id$ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/ee/nls/en_US.US-ASCII/ee.msg b/usr.bin/ee/nls/en_US.US-ASCII/ee.msg index 6a5fad2b324a..0a383ad0cfe2 100644 --- a/usr.bin/ee/nls/en_US.US-ASCII/ee.msg +++ b/usr.bin/ee/nls/en_US.US-ASCII/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id$ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg b/usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg index 10c3255c5dfb..e4c2c9567b35 100644 --- a/usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg +++ b/usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id: ee.msg,v 1.7 1998/01/12 07:53:05 charnier Exp $ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/ee/nls/fr_FR.ISO_8859-1/ee.msg b/usr.bin/ee/nls/fr_FR.ISO_8859-1/ee.msg index 10c3255c5dfb..e4c2c9567b35 100644 --- a/usr.bin/ee/nls/fr_FR.ISO_8859-1/ee.msg +++ b/usr.bin/ee/nls/fr_FR.ISO_8859-1/ee.msg @@ -3,7 +3,7 @@ $ ee.i18n.guide for more information $ $ For ee patchlevel 3 $ -$ $Id: ee.msg,v 1.7 1998/01/12 07:53:05 charnier Exp $ +$ $FreeBSD$ $ $set 1 $quote " diff --git a/usr.bin/enigma/enigma.1 b/usr.bin/enigma/enigma.1 index 61a4c2689a94..aa025e2028a0 100644 --- a/usr.bin/enigma/enigma.1 +++ b/usr.bin/enigma/enigma.1 @@ -4,7 +4,7 @@ .\" Since enigma itself is distributed in the Public Domain, this file .\" is also. .\" -.\" $Id: enigma.1,v 1.3 1999/06/24 06:22:20 mpp Exp $ +.\" $FreeBSD$ .\" " .Dd October 30, 1998 .Os diff --git a/usr.bin/error/error.1 b/usr.bin/error/error.1 index 7f5f79c8b224..b944ee6a222f 100644 --- a/usr.bin/error/error.1 +++ b/usr.bin/error/error.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)error.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt ERROR 1 diff --git a/usr.bin/error/filter.c b/usr.bin/error/filter.c index 1b82cfdf5ee4..84fd970572a9 100644 --- a/usr.bin/error/filter.c +++ b/usr.bin/error/filter.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)filter.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: filter.c,v 1.2 1997/11/03 07:44:06 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/error/input.c b/usr.bin/error/input.c index 97b9667cfdd8..602fed616ae6 100644 --- a/usr.bin/error/input.c +++ b/usr.bin/error/input.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/error/main.c b/usr.bin/error/main.c index 7ae8100dbd75..7e8b9d587f51 100644 --- a/usr.bin/error/main.c +++ b/usr.bin/error/main.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.3 1997/11/03 07:44:12 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/error/pi.c b/usr.bin/error/pi.c index c5c1ffb9145c..405f548e4b08 100644 --- a/usr.bin/error/pi.c +++ b/usr.bin/error/pi.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)pi.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: pi.c,v 1.3 1997/11/03 07:44:15 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/error/subr.c b/usr.bin/error/subr.c index 9a44019ba76b..cd0846392cab 100644 --- a/usr.bin/error/subr.c +++ b/usr.bin/error/subr.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/error/touch.c b/usr.bin/error/touch.c index 08952f7b593d..de6a396ebd3d 100644 --- a/usr.bin/error/touch.c +++ b/usr.bin/error/touch.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)touch.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: touch.c,v 1.5 1998/02/25 02:24:04 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/expand/expand.1 b/usr.bin/expand/expand.1 index 4b7014669d68..6c4aebc604b7 100644 --- a/usr.bin/expand/expand.1 +++ b/usr.bin/expand/expand.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)expand.1 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt EXPAND 1 diff --git a/usr.bin/expand/expand.c b/usr.bin/expand/expand.c index a8014f9a44a2..f16f64582754 100644 --- a/usr.bin/expand/expand.c +++ b/usr.bin/expand/expand.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93"; #else static const char rcsid[] = - "$Id: expand.c,v 1.3 1998/02/02 07:10:59 cwt Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/false/false.1 b/usr.bin/false/false.1 index 13989ef97dd1..28339d3b761f 100644 --- a/usr.bin/false/false.1 +++ b/usr.bin/false/false.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)false.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt FALSE 1 diff --git a/usr.bin/fetch/fetch.1 b/usr.bin/fetch/fetch.1 index fd6e78bd6215..40b6835eaa2e 100644 --- a/usr.bin/fetch/fetch.1 +++ b/usr.bin/fetch/fetch.1 @@ -1,4 +1,4 @@ -.\" $Id: fetch.1,v 1.29 1999/02/23 18:51:13 wollman Exp $ +.\" $FreeBSD$ .Dd February 22, 1999 .Dt FETCH 1 .Os FreeBSD 4.0 diff --git a/usr.bin/fetch/fetch.h b/usr.bin/fetch/fetch.h index 685fdd673042..bea7db93a38e 100644 --- a/usr.bin/fetch/fetch.h +++ b/usr.bin/fetch/fetch.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fetch.h,v 1.6 1998/09/20 00:01:26 jkh Exp $ + * $FreeBSD$ */ #ifndef fetch_h diff --git a/usr.bin/fetch/file.c b/usr.bin/fetch/file.c index 1bdccc8fdc49..24dfd75ab4ca 100644 --- a/usr.bin/fetch/file.c +++ b/usr.bin/fetch/file.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: file.c,v 1.4 1998/09/17 00:15:15 des Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/fetch/ftp.c b/usr.bin/fetch/ftp.c index f2f2640e5630..922887bb2789 100644 --- a/usr.bin/fetch/ftp.c +++ b/usr.bin/fetch/ftp.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ftp.c,v 1.13 1999/02/05 01:01:17 fenner Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/fetch/http.c b/usr.bin/fetch/http.c index 0805e2716677..4e19485a9f8f 100644 --- a/usr.bin/fetch/http.c +++ b/usr.bin/fetch/http.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: http.c,v 1.27 1999/05/18 19:37:37 jmg Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c index 6524fd666b03..7cae99ba4e06 100644 --- a/usr.bin/fetch/main.c +++ b/usr.bin/fetch/main.c @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: main.c,v 1.51 1999/03/08 19:16:14 wollman Exp $ */ +/* $FreeBSD$ */ #include diff --git a/usr.bin/fetch/uri.c b/usr.bin/fetch/uri.c index 95d4c91898bf..3aeb0d1c74a8 100644 --- a/usr.bin/fetch/uri.c +++ b/usr.bin/fetch/uri.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/usr.bin/fetch/util.c b/usr.bin/fetch/util.c index 1a927626e40e..bac316d3a508 100644 --- a/usr.bin/fetch/util.c +++ b/usr.bin/fetch/util.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: util.c,v 1.5 1997/02/11 20:46:06 wollman Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/file/LEGAL.NOTICE b/usr.bin/file/LEGAL.NOTICE index 122c5f615624..29f21aed456b 100644 --- a/usr.bin/file/LEGAL.NOTICE +++ b/usr.bin/file/LEGAL.NOTICE @@ -1,6 +1,6 @@ Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995. Software written by Ian F. Darwin and others; maintained by Christos Zoulas. -$Id$ +$FreeBSD$ This software (or derivative software) may not be made subject to any license which denies anyone permission to alter it and redistribute it diff --git a/usr.bin/file/MAINT b/usr.bin/file/MAINT index 2b91576c9de7..cb318445c60f 100644 --- a/usr.bin/file/MAINT +++ b/usr.bin/file/MAINT @@ -1,4 +1,4 @@ -$Id$ +$FreeBSD$ Maintenance notes: diff --git a/usr.bin/file/Magdir/Localstuff b/usr.bin/file/Magdir/Localstuff index 0b6d9554bb9e..a3e1e0bfce4c 100644 --- a/usr.bin/file/Magdir/Localstuff +++ b/usr.bin/file/Magdir/Localstuff @@ -2,6 +2,6 @@ #------------------------------------------------------------------------------ # Localstuff: file(1) magic for locally observed files # -# $Id$ +# $FreeBSD$ # Add any locally observed files here. Remember: # text if readable, executable if runnable binary, data if unreadable. diff --git a/usr.bin/file/Magdir/softquad b/usr.bin/file/Magdir/softquad index f570b0974f3f..0fd952a2ee43 100644 --- a/usr.bin/file/Magdir/softquad +++ b/usr.bin/file/Magdir/softquad @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------ # softquad: file(1) magic for SoftQuad Publishing Software # -# $Id$ +# $FreeBSD$ # Author/Editor and RulesBuilder # # XXX - byte order? diff --git a/usr.bin/file/Makefile b/usr.bin/file/Makefile index 2e00f0bc0861..3834e4b0b307 100644 --- a/usr.bin/file/Makefile +++ b/usr.bin/file/Makefile @@ -1,6 +1,6 @@ # Makefile for file(1) cmd. # Copyright (c) Ian F. Darwin 86/09/01 - see LEGAL.NOTICE. -# @(#)$Id: Makefile,v 1.11 1997/04/04 02:42:53 mpp Exp $ +# @(#)$FreeBSD$ # # This software is not subject to any license of the American Telephone # and Telegraph Company or of the Regents of the University of California. diff --git a/usr.bin/file/PORTING b/usr.bin/file/PORTING index 1fa5da16e7c0..7e65021d2950 100644 --- a/usr.bin/file/PORTING +++ b/usr.bin/file/PORTING @@ -1,5 +1,5 @@ Portability of the new file(1) command. -@(#) $Id$ +@(#) $FreeBSD$ Read this file only if the program doesn't compile on your system. diff --git a/usr.bin/file/README b/usr.bin/file/README index 21932922b2b1..9872176410be 100644 --- a/usr.bin/file/README +++ b/usr.bin/file/README @@ -1,5 +1,5 @@ ** README for file(1) Command ** -@(#) $Id: README,v 1.1.1.2 1997/03/18 17:58:39 mpp Exp $ +@(#) $FreeBSD$ This is Release 3.x of Ian Darwin's (copyright but distributable) file(1) command. This version is the standard "file" command for Linux, diff --git a/usr.bin/file/apprentice.c b/usr.bin/file/apprentice.c index 041ead0e717e..9c5b94547f55 100644 --- a/usr.bin/file/apprentice.c +++ b/usr.bin/file/apprentice.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id: apprentice.c,v 1.7 1998/01/28 07:36:21 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/ascmagic.c b/usr.bin/file/ascmagic.c index a2b5d761039a..bf116999e3dc 100644 --- a/usr.bin/file/ascmagic.c +++ b/usr.bin/file/ascmagic.c @@ -28,7 +28,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/compress.c b/usr.bin/file/compress.c index fba9c9119319..f1e8ae8b2510 100644 --- a/usr.bin/file/compress.c +++ b/usr.bin/file/compress.c @@ -8,7 +8,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/cvsimport.sh b/usr.bin/file/cvsimport.sh index f9818fa7fb4e..0436074fc634 100644 --- a/usr.bin/file/cvsimport.sh +++ b/usr.bin/file/cvsimport.sh @@ -3,7 +3,7 @@ # This shell script can be used in order to handle future imports # of newer versions of file(1) # -# $Id: cvsimport.sh,v 1.3 1997/02/22 19:29:10 peter Exp $ +# $FreeBSD$ if [ $# -ne 2 ] ; then echo "usage: $0 " 1>&2 exit 1 diff --git a/usr.bin/file/file.1 b/usr.bin/file/file.1 index bb3221faed92..685afc242591 100644 --- a/usr.bin/file/file.1 +++ b/usr.bin/file/file.1 @@ -1,4 +1,4 @@ -.\" $Id: file.1,v 1.11 1998/01/28 07:36:22 charnier Exp $ +.\" $FreeBSD$ .Dd July 30, 1997 .Dt FILE 1 "Copyright but distributable" .Os diff --git a/usr.bin/file/file.c b/usr.bin/file/file.c index 485e398ee216..f420cac9f1c0 100644 --- a/usr.bin/file/file.c +++ b/usr.bin/file/file.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/file.h b/usr.bin/file/file.h index d62942e221c9..7d42ad88c712 100644 --- a/usr.bin/file/file.h +++ b/usr.bin/file/file.h @@ -1,6 +1,6 @@ /* * file.h - definitions for file(1) program - * @(#)$Id: file.h,v 1.8 1998/01/28 07:36:23 charnier Exp $ + * @(#)$FreeBSD$ * * Copyright (c) Ian F. Darwin, 1987. * Written by Ian F. Darwin. diff --git a/usr.bin/file/fsmagic.c b/usr.bin/file/fsmagic.c index b12a617b23ff..b9f690c10540 100644 --- a/usr.bin/file/fsmagic.c +++ b/usr.bin/file/fsmagic.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id: fsmagic.c,v 1.7 1998/01/28 07:36:23 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/internat.c b/usr.bin/file/internat.c index ffb7aa2e21dc..f04208e08a01 100644 --- a/usr.bin/file/internat.c +++ b/usr.bin/file/internat.c @@ -1,7 +1,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "file.h" diff --git a/usr.bin/file/is_tar.c b/usr.bin/file/is_tar.c index 69d822d9beeb..362825f3e8d6 100644 --- a/usr.bin/file/is_tar.c +++ b/usr.bin/file/is_tar.c @@ -12,7 +12,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/magic.5 b/usr.bin/file/magic.5 index 6355245187bb..12923ac0057a 100644 --- a/usr.bin/file/magic.5 +++ b/usr.bin/file/magic.5 @@ -1,5 +1,5 @@ .\" -.\" @(#)$Id: magic.5,v 1.8 1997/11/04 03:56:56 steve Exp $ +.\" @(#)$FreeBSD$ .\" .\" install as magic.4 on USG, magic.5 on V7 or Berkeley systems. .\" diff --git a/usr.bin/file/names.h b/usr.bin/file/names.h index 1fed1bfa2a1b..1273375f6a49 100644 --- a/usr.bin/file/names.h +++ b/usr.bin/file/names.h @@ -10,7 +10,7 @@ * * See LEGAL.NOTICE * - * $Id: names.h,v 1.1.1.3 1997/03/18 17:58:52 mpp Exp $ + * $FreeBSD$ */ /* these types are used to index the table 'types': keep em in sync! */ diff --git a/usr.bin/file/patchlevel.h b/usr.bin/file/patchlevel.h index b6cea964c4bc..7fe74e7f1d65 100644 --- a/usr.bin/file/patchlevel.h +++ b/usr.bin/file/patchlevel.h @@ -3,7 +3,7 @@ /* * Patchlevel file for Ian Darwin's MAGIC command. - * $Id: patchlevel.h,v 1.7 1997/03/18 19:37:21 mpp Exp $ + * $FreeBSD$ * */ diff --git a/usr.bin/file/print.c b/usr.bin/file/print.c index 5ccf07dc6afd..8cd079ad8fcd 100644 --- a/usr.bin/file/print.c +++ b/usr.bin/file/print.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id: print.c,v 1.7 1998/01/28 07:36:25 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/readelf.c b/usr.bin/file/readelf.c index fb87af7a63df..5674402a4602 100644 --- a/usr.bin/file/readelf.c +++ b/usr.bin/file/readelf.c @@ -1,7 +1,7 @@ #ifndef lint static const char rcsid[] = - "$Id: readelf.c,v 1.4 1998/02/20 04:54:00 jb Exp $"; + "$FreeBSD$"; #endif /* not lint */ #ifdef BUILTIN_ELF diff --git a/usr.bin/file/readelf.h b/usr.bin/file/readelf.h index 853eed600f95..28d44976c241 100644 --- a/usr.bin/file/readelf.h +++ b/usr.bin/file/readelf.h @@ -1,6 +1,6 @@ /* * readelf.h - * @(#)$Id: readelf.h,v 1.1.1.1 1997/03/18 17:58:55 mpp Exp $ + * @(#)$FreeBSD$ * * Provide elf data structures for non-elf machines, allowing file * non-elf hosts to determine if an elf binary is stripped. diff --git a/usr.bin/file/softmagic.c b/usr.bin/file/softmagic.c index 5227acd50d5d..c1e79257963c 100644 --- a/usr.bin/file/softmagic.c +++ b/usr.bin/file/softmagic.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/file/tar.h b/usr.bin/file/tar.h index 6a9e1dd22398..87f0d55f25ad 100644 --- a/usr.bin/file/tar.h +++ b/usr.bin/file/tar.h @@ -5,7 +5,7 @@ * * Created 25 August 1985 by John Gilmore, ihnp4!hoptoad!gnu. * - * $Id$ # checkin only + * $FreeBSD$ # checkin only */ /* diff --git a/usr.bin/file2c/Makefile b/usr.bin/file2c/Makefile index 28cd21e83437..79fdc9267dce 100644 --- a/usr.bin/file2c/Makefile +++ b/usr.bin/file2c/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= file2c MAN1= file2c.1 diff --git a/usr.bin/file2c/file2c.1 b/usr.bin/file2c/file2c.1 index ef4e77b489b8..0cf0d42826a7 100644 --- a/usr.bin/file2c/file2c.1 +++ b/usr.bin/file2c/file2c.1 @@ -5,7 +5,7 @@ .\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp .\" --------------------------------------------------------------------------- .\" -.\" $Id: file2c.1,v 1.4 1997/06/23 04:51:58 steve Exp $ +.\" $FreeBSD$ .\" .Dd January 28, 1995 .Dt FILE2C 1 diff --git a/usr.bin/file2c/file2c.c b/usr.bin/file2c/file2c.c index 232d51b8c650..f946bbd5cc82 100644 --- a/usr.bin/file2c/file2c.c +++ b/usr.bin/file2c/file2c.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: file2c.c,v 1.3 1997/02/22 19:55:01 peter Exp $ + * $FreeBSD$ * */ diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1 index a2de73f421e3..59e76ef28034 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)find.1 8.7 (Berkeley) 5/9/95 -.\" $Id: find.1,v 1.19 1999/04/19 08:26:00 jkoshy Exp $ +.\" $FreeBSD$ .\" .Dd May 9, 1995 .Dt FIND 1 diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c index 0005cb6a808a..c6cb12ef1297 100644 --- a/usr.bin/find/option.c +++ b/usr.bin/find/option.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94"; */ static const char rcsid[] = - "$Id: option.c,v 1.6 1997/11/28 15:48:08 steve Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/finger/finger.1 b/usr.bin/finger/finger.1 index 1c43820a6854..4fa1860ce043 100644 --- a/usr.bin/finger/finger.1 +++ b/usr.bin/finger/finger.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)finger.1 8.3 (Berkeley) 5/5/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd August 1, 1997 .Dt FINGER 1 diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c index ec0e6b9889e5..77f365a537a1 100644 --- a/usr.bin/finger/finger.c +++ b/usr.bin/finger/finger.c @@ -55,7 +55,7 @@ static char copyright[] = static char sccsid[] = "@(#)finger.c 8.5 (Berkeley) 5/4/95"; #else static const char rcsid[] = - "$Id: finger.c,v 1.13 1999/05/08 00:46:04 obrien Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/finger/finger.h b/usr.bin/finger/finger.h index a3209cba89d4..7d4d99f6fb6f 100644 --- a/usr.bin/finger/finger.h +++ b/usr.bin/finger/finger.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)finger.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ typedef struct person { diff --git a/usr.bin/finger/lprint.c b/usr.bin/finger/lprint.c index 5d8023f721bd..3d0a4091c070 100644 --- a/usr.bin/finger/lprint.c +++ b/usr.bin/finger/lprint.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)lprint.c 8.3 (Berkeley) 4/28/95"; #else static const char rcsid[] = - "$Id: lprint.c,v 1.8 1997/07/02 06:34:49 charnier Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/finger/net.c b/usr.bin/finger/net.c index c4698b461c29..2903c063806f 100644 --- a/usr.bin/finger/net.c +++ b/usr.bin/finger/net.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)net.c 8.4 (Berkeley) 4/28/95"; #else static const char rcsid[] = - "$Id: net.c,v 1.10 1998/06/09 04:30:40 imp Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/finger/sprint.c b/usr.bin/finger/sprint.c index 8c38d7c414fe..acf9dff350a3 100644 --- a/usr.bin/finger/sprint.c +++ b/usr.bin/finger/sprint.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)sprint.c 8.3 (Berkeley) 4/28/95"; #else static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/finger/util.c b/usr.bin/finger/util.c index e391840cfefe..54c68f0f6f98 100644 --- a/usr.bin/finger/util.c +++ b/usr.bin/finger/util.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/28/95"; #else static const char rcsid[] = - "$Id: util.c,v 1.6 1999/08/21 18:25:38 imp Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/fmt/fmt.1 b/usr.bin/fmt/fmt.1 index e7413905239a..2760430e5546 100644 --- a/usr.bin/fmt/fmt.1 +++ b/usr.bin/fmt/fmt.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fmt.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt FMT 1 diff --git a/usr.bin/fmt/fmt.c b/usr.bin/fmt/fmt.c index 51cbe5cd1d62..94dd8c6de00d 100644 --- a/usr.bin/fmt/fmt.c +++ b/usr.bin/fmt/fmt.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)fmt.c 8.1 (Berkeley) 7/20/93"; #else static const char rcsid[] = - "$Id: fmt.c,v 1.10 1997/08/21 03:41:41 jlemon Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/fold/fold.1 b/usr.bin/fold/fold.1 index 3e020cf1cac3..a37121d6c8a7 100644 --- a/usr.bin/fold/fold.1 +++ b/usr.bin/fold/fold.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fold.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt FOLD 1 diff --git a/usr.bin/fold/fold.c b/usr.bin/fold/fold.c index 080c9abfbcae..386caaffcea2 100644 --- a/usr.bin/fold/fold.c +++ b/usr.bin/fold/fold.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)fold.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/fpr/fpr.1 b/usr.bin/fpr/fpr.1 index 7e9811258840..489885ed773f 100644 --- a/usr.bin/fpr/fpr.1 +++ b/usr.bin/fpr/fpr.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fpr.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt FPR 1 diff --git a/usr.bin/from/from.1 b/usr.bin/from/from.1 index 553b22682291..0078a9e6b5d6 100644 --- a/usr.bin/from/from.1 +++ b/usr.bin/from/from.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)from.1 8.2 (Berkeley) 12/30/93 -.\" $Id: from.1,v 1.5 1999/07/26 23:12:12 green Exp $ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt FROM 1 diff --git a/usr.bin/from/from.c b/usr.bin/from/from.c index 4daa4c4a3a18..6b3320712f06 100644 --- a/usr.bin/from/from.c +++ b/usr.bin/from/from.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)from.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: from.c,v 1.6 1999/07/26 23:12:12 green Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/fsplit/fsplit.1 b/usr.bin/fsplit/fsplit.1 index fe4d06b844a5..23a3ddfea62a 100644 --- a/usr.bin/fsplit/fsplit.1 +++ b/usr.bin/fsplit/fsplit.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fsplit.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt FSPLIT 1 diff --git a/usr.bin/fsplit/fsplit.c b/usr.bin/fsplit/fsplit.c index 03cf08a46500..d80837efb506 100644 --- a/usr.bin/fsplit/fsplit.c +++ b/usr.bin/fsplit/fsplit.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)fsplit.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: fsplit.c,v 1.3 1997/07/08 11:01:35 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/fstat/Makefile b/usr.bin/fstat/Makefile index 6ff6ab1224c4..8e9e277d38d0 100644 --- a/usr.bin/fstat/Makefile +++ b/usr.bin/fstat/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.2 1997/08/22 14:22:31 jmg Exp $ +# $FreeBSD$ PROG= fstat CFLAGS+=-Wall diff --git a/usr.bin/fstat/fstat.1 b/usr.bin/fstat/fstat.1 index fd005e580665..9354ec12891c 100644 --- a/usr.bin/fstat/fstat.1 +++ b/usr.bin/fstat/fstat.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fstat.1 8.3 (Berkeley) 2/25/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd February 25, 1994 .Dt FSTAT 1 diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index 424f1379daad..b8e0c973a470 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95"; #endif static const char rcsid[] = - "$Id: fstat.c,v 1.16 1998/07/06 21:01:16 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index c74e3adfc9b7..bbd82e253aa6 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1997/12/13 20:38:12 pst Exp $ +# $FreeBSD$ # $NetBSD: Makefile,v 1.15 1997/10/18 15:31:20 lukem Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 diff --git a/usr.bin/ftp/cmds.c b/usr.bin/ftp/cmds.c index 04b7c43ffbc7..acc3c6bde69c 100644 --- a/usr.bin/ftp/cmds.c +++ b/usr.bin/ftp/cmds.c @@ -1,4 +1,4 @@ -/* $Id: cmds.c,v 1.14 1998/02/14 15:38:29 steve Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: cmds.c,v 1.30.2.1 1997/11/18 00:58:26 mellon Exp $ */ /* @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)cmds.c 8.6 (Berkeley) 10/9/94"; #else -__RCSID("$Id: cmds.c,v 1.14 1998/02/14 15:38:29 steve Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: cmds.c,v 1.30.2.1 1997/11/18 00:58:26 mellon Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/cmdtab.c b/usr.bin/ftp/cmdtab.c index 37920e7d8bca..542d32053d95 100644 --- a/usr.bin/ftp/cmdtab.c +++ b/usr.bin/ftp/cmdtab.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: cmdtab.c,v 1.17 1997/08/18 10:20:17 lukem Exp $ */ /* @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)cmdtab.c 8.4 (Berkeley) 10/9/94"; #else -__RCSID("$Id$"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: cmdtab.c,v 1.17 1997/08/18 10:20:17 lukem Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/complete.c b/usr.bin/ftp/complete.c index 901a916d7bab..ee0453f61e15 100644 --- a/usr.bin/ftp/complete.c +++ b/usr.bin/ftp/complete.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: complete.c,v 1.11 1997/09/13 09:05:53 lukem Exp $ */ /*- @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("$Id$"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: complete.c,v 1.11 1997/09/13 09:05:53 lukem Exp $"); #endif /* not lint */ diff --git a/usr.bin/ftp/domacro.c b/usr.bin/ftp/domacro.c index c5ddc92061d7..907af4583b9a 100644 --- a/usr.bin/ftp/domacro.c +++ b/usr.bin/ftp/domacro.c @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* $NetBSD: domacro.c,v 1.10 1997/07/20 09:45:45 lukem Exp $ */ /* @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)domacro.c 8.3 (Berkeley) 4/2/94"; #else -__RCSID("$Id$"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: domacro.c,v 1.10 1997/07/20 09:45:45 lukem Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/extern.h b/usr.bin/ftp/extern.h index a334c0b6744c..a8ac97b8c866 100644 --- a/usr.bin/ftp/extern.h +++ b/usr.bin/ftp/extern.h @@ -1,4 +1,4 @@ -/* $Id: extern.h,v 1.6 1997/12/13 20:38:15 pst Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: extern.h,v 1.17.2.1 1997/11/18 00:59:50 mellon Exp $ */ /*- diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index a675886ccb7e..1d73c0f9655e 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("$Id: fetch.c,v 1.5 1997/12/16 08:58:15 ache Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: fetch.c,v 1.16.2.1 1997/11/18 01:00:22 mellon Exp $"); #endif /* not lint */ diff --git a/usr.bin/ftp/ftp.1 b/usr.bin/ftp/ftp.1 index 05981aec01cf..59b371f34b7b 100644 --- a/usr.bin/ftp/ftp.1 +++ b/usr.bin/ftp/ftp.1 @@ -1,4 +1,4 @@ -.\" $Id: ftp.1,v 1.10 1999/07/01 14:32:07 ru Exp $ +.\" $FreeBSD$ .\" $NetBSD: ftp.1,v 1.21 1997/06/10 21:59:58 lukem Exp $ .\" .\" Copyright (c) 1985, 1989, 1990, 1993 diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index 154f6942f5d6..d2edd014d54b 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -1,4 +1,4 @@ -/* $Id: ftp.c,v 1.15 1998/12/09 20:49:20 eivind Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ftp.c,v 1.29.2.1 1997/11/18 01:01:04 mellon Exp $ */ /* @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)ftp.c 8.6 (Berkeley) 10/27/94"; #else -__RCSID("$Id: ftp.c,v 1.15 1998/12/09 20:49:20 eivind Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: ftp.c,v 1.29.2.1 1997/11/18 01:01:04 mellon Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/ftp_var.h b/usr.bin/ftp/ftp_var.h index 2a4f2c8615ea..d26d22df7f14 100644 --- a/usr.bin/ftp/ftp_var.h +++ b/usr.bin/ftp/ftp_var.h @@ -1,4 +1,4 @@ -/* $Id: ftp_var.h,v 1.6 1997/12/13 20:38:18 pst Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ftp_var.h,v 1.20.2.1 1997/11/18 01:01:37 mellon Exp $ */ /* diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index f8b21d71debf..f2cad20744c1 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.18 1999/06/25 14:11:15 ru Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: main.c,v 1.26 1997/10/14 16:31:22 christos Exp $ */ /* @@ -44,7 +44,7 @@ __COPYRIGHT("@(#) Copyright (c) 1985, 1989, 1993, 1994\n\ #if 0 static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 10/9/94"; #else -__RCSID("$Id: main.c,v 1.18 1999/06/25 14:11:15 ru Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: main.c,v 1.26 1997/10/14 16:31:22 christos Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/pathnames.h b/usr.bin/ftp/pathnames.h index bc649d68efc4..bf71177a33d4 100644 --- a/usr.bin/ftp/pathnames.h +++ b/usr.bin/ftp/pathnames.h @@ -1,4 +1,4 @@ -/* $Id: pathnames.h,v 1.2 1997/06/25 08:56:43 msmith Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: pathnames.h,v 1.7 1997/01/09 20:19:40 tls Exp $ */ /* diff --git a/usr.bin/ftp/ruserpass.c b/usr.bin/ftp/ruserpass.c index c0e7f95cbea6..84355d320e17 100644 --- a/usr.bin/ftp/ruserpass.c +++ b/usr.bin/ftp/ruserpass.c @@ -1,4 +1,4 @@ -/* $Id: ruserpass.c,v 1.7 1997/12/13 20:38:20 pst Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: ruserpass.c,v 1.14.2.1 1997/11/18 01:02:05 mellon Exp $ */ /* @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)ruserpass.c 8.4 (Berkeley) 4/27/95"; #else -__RCSID("$Id: ruserpass.c,v 1.7 1997/12/13 20:38:20 pst Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: ruserpass.c,v 1.14.2.1 1997/11/18 01:02:05 mellon Exp $"); #endif #endif /* not lint */ diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c index 45baf324d705..24024a19342d 100644 --- a/usr.bin/ftp/util.c +++ b/usr.bin/ftp/util.c @@ -1,4 +1,4 @@ -/* $Id: util.c,v 1.6 1998/07/19 00:01:24 jmz Exp $ */ +/* $FreeBSD$ */ /* $NetBSD: util.c,v 1.16.2.1 1997/11/18 01:02:33 mellon Exp $ */ /* @@ -36,7 +36,7 @@ #include #ifndef lint -__RCSID("$Id: util.c,v 1.6 1998/07/19 00:01:24 jmz Exp $"); +__RCSID("$FreeBSD$"); __RCSID_SOURCE("$NetBSD: util.c,v 1.16.2.1 1997/11/18 01:02:33 mellon Exp $"); #endif /* not lint */ diff --git a/usr.bin/gcore/aoutcore.c b/usr.bin/gcore/aoutcore.c index 6d8f9d358cc8..6ad9568ede3f 100644 --- a/usr.bin/gcore/aoutcore.c +++ b/usr.bin/gcore/aoutcore.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)gcore.c 8.2 (Berkeley) 9/23/93"; #endif static const char rcsid[] = - "$Id: gcore.c,v 1.13 1998/11/01 06:35:36 jdp Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/gcore/elfcore.c b/usr.bin/gcore/elfcore.c index f612232b458a..f66e584ac146 100644 --- a/usr.bin/gcore/elfcore.c +++ b/usr.bin/gcore/elfcore.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elfcore.c,v 1.2 1998/11/01 06:35:36 jdp Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/gcore/gcore.1 b/usr.bin/gcore/gcore.1 index a4d3e3cb9e89..ed3d0d628138 100644 --- a/usr.bin/gcore/gcore.1 +++ b/usr.bin/gcore/gcore.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)gcore.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt GCORE 1 diff --git a/usr.bin/gcore/gcore.c b/usr.bin/gcore/gcore.c index 6d8f9d358cc8..6ad9568ede3f 100644 --- a/usr.bin/gcore/gcore.c +++ b/usr.bin/gcore/gcore.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)gcore.c 8.2 (Berkeley) 9/23/93"; #endif static const char rcsid[] = - "$Id: gcore.c,v 1.13 1998/11/01 06:35:36 jdp Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/gcore/md-nop.c b/usr.bin/gcore/md-nop.c index b7dcdc4a73fc..331901c1841c 100644 --- a/usr.bin/gcore/md-nop.c +++ b/usr.bin/gcore/md-nop.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)md-nop.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/gencat/Makefile b/usr.bin/gencat/Makefile index 44ed94145c35..45af07adf895 100644 --- a/usr.bin/gencat/Makefile +++ b/usr.bin/gencat/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 19:55:04 peter Exp $ +# $FreeBSD$ PROG= gencat SRCS= gencat.c genlib.c diff --git a/usr.bin/gencat/gencat.1 b/usr.bin/gencat/gencat.1 index c9959e332396..b7936c6ef128 100644 --- a/usr.bin/gencat/gencat.1 +++ b/usr.bin/gencat/gencat.1 @@ -24,7 +24,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: gencat.1,v 1.2 1998/11/18 04:30:53 jkoshy Exp $ +.\" $FreeBSD$ .\" .Dd June 11, 1997 .Dt GENCAT 1 diff --git a/usr.bin/gensetdefs/Makefile b/usr.bin/gensetdefs/Makefile index 0ea2b678a9f4..00dd6aaf7da1 100644 --- a/usr.bin/gensetdefs/Makefile +++ b/usr.bin/gensetdefs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1999/05/04 20:31:26 ghelmer Exp $ +# $FreeBSD$ PROG= gensetdefs MAN8= gensetdefs.8 diff --git a/usr.bin/gensetdefs/gensetdefs.8 b/usr.bin/gensetdefs/gensetdefs.8 index ecbfe3a3668b..8b0bf59073a0 100644 --- a/usr.bin/gensetdefs/gensetdefs.8 +++ b/usr.bin/gensetdefs/gensetdefs.8 @@ -1,5 +1,5 @@ .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 10, 1999 .Dt GENSETDEFS 8 diff --git a/usr.bin/gensetdefs/gensetdefs.c b/usr.bin/gensetdefs/gensetdefs.c index 9a35e097cebf..7e36992214f7 100644 --- a/usr.bin/gensetdefs/gensetdefs.c +++ b/usr.bin/gensetdefs/gensetdefs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #include diff --git a/usr.bin/global/Makefile b/usr.bin/global/Makefile index 8676dc3ceaf2..a37a2f967cda 100644 --- a/usr.bin/global/Makefile +++ b/usr.bin/global/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/12/15 02:28:04 skynyrd Exp $ +# $FreeBSD$ SUBDIR= lib global gtags gctags btreeop htags systags diff --git a/usr.bin/global/Makefile.inc b/usr.bin/global/Makefile.inc index 34657a06430a..0e33fa03b8fe 100644 --- a/usr.bin/global/Makefile.inc +++ b/usr.bin/global/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.5 1999/01/18 07:38:09 simokawa Exp $ +# $FreeBSD$ .if !defined(GLOBAL_MAKEFILE_INC_BEEN_HERE) diff --git a/usr.bin/global/btreeop/Makefile b/usr.bin/global/btreeop/Makefile index 12f4357e7bbe..da762b8ccbbb 100644 --- a/usr.bin/global/btreeop/Makefile +++ b/usr.bin/global/btreeop/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/12/17 15:18:49 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/btreeop diff --git a/usr.bin/global/gctags/Makefile b/usr.bin/global/gctags/Makefile index b66694a58d1f..48ae79232d68 100644 --- a/usr.bin/global/gctags/Makefile +++ b/usr.bin/global/gctags/Makefile @@ -1,5 +1,5 @@ -# $Id: Makefile,v 1.4 1997/12/17 15:18:52 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/gctags diff --git a/usr.bin/global/global/Makefile b/usr.bin/global/global/Makefile index 0deeda464303..61c4d092ab73 100644 --- a/usr.bin/global/global/Makefile +++ b/usr.bin/global/global/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/12/17 15:18:53 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/global diff --git a/usr.bin/global/gtags/Makefile b/usr.bin/global/gtags/Makefile index 05f506f77ce1..ab3fc7624f49 100644 --- a/usr.bin/global/gtags/Makefile +++ b/usr.bin/global/gtags/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/12/17 15:18:54 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/gtags diff --git a/usr.bin/global/htags/Makefile b/usr.bin/global/htags/Makefile index c842decafa7a..197d5bb6ad47 100644 --- a/usr.bin/global/htags/Makefile +++ b/usr.bin/global/htags/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/12/15 02:28:19 skynyrd Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/htags diff --git a/usr.bin/global/lib/Makefile b/usr.bin/global/lib/Makefile index 793f953cb09f..ad6b48d8ecdb 100644 --- a/usr.bin/global/lib/Makefile +++ b/usr.bin/global/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1997/12/21 08:31:50 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/lib diff --git a/usr.bin/global/systags/Makefile b/usr.bin/global/systags/Makefile index c2b06a1d1175..ed125c424c68 100644 --- a/usr.bin/global/systags/Makefile +++ b/usr.bin/global/systags/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/12/15 23:34:57 cwt Exp $ +# $FreeBSD$ GLOBAL_DIR= ${.CURDIR}/../../../contrib/global .PATH: ${GLOBAL_DIR}/systags diff --git a/usr.bin/gprof/arcs.c b/usr.bin/gprof/arcs.c index 6a7b17ef82b5..c6e77103e739 100644 --- a/usr.bin/gprof/arcs.c +++ b/usr.bin/gprof/arcs.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)arcs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: arcs.c,v 1.4 1997/07/11 06:11:35 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/gprof/gprof.1 b/usr.bin/gprof/gprof.1 index 90b9ec95eef0..df83a70025d1 100644 --- a/usr.bin/gprof/gprof.1 +++ b/usr.bin/gprof/gprof.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)gprof.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt GPROF 1 diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c index 2b6285184d42..dfb1e2c82a7f 100644 --- a/usr.bin/gprof/gprof.c +++ b/usr.bin/gprof/gprof.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: gprof.c,v 1.9 1999/05/23 00:37:54 jmz Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c index 9c122bb19bca..0fb74f44ce98 100644 --- a/usr.bin/gprof/printgprof.c +++ b/usr.bin/gprof/printgprof.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)printgprof.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/gprof/printlist.c b/usr.bin/gprof/printlist.c index 15af8e198521..c77b19fa008b 100644 --- a/usr.bin/gprof/printlist.c +++ b/usr.bin/gprof/printlist.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)printlist.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/head/head.1 b/usr.bin/head/head.1 index 2a23d53eeb55..8e333a5d3ab7 100644 --- a/usr.bin/head/head.1 +++ b/usr.bin/head/head.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)head.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt HEAD 1 diff --git a/usr.bin/head/head.c b/usr.bin/head/head.c index fc4bdf61664b..e93896bc3ef0 100644 --- a/usr.bin/head/head.c +++ b/usr.bin/head/head.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: head.c,v 1.8 1997/07/11 06:13:18 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/hexdump/display.c b/usr.bin/hexdump/display.c index b72da84ce8c7..2d3bdcbd964a 100644 --- a/usr.bin/hexdump/display.c +++ b/usr.bin/hexdump/display.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)display.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: display.c,v 1.2 1997/07/10 06:48:12 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/hexdump/hexdump.1 b/usr.bin/hexdump/hexdump.1 index 1fd6d07c14c1..a743a5082e27 100644 --- a/usr.bin/hexdump/hexdump.1 +++ b/usr.bin/hexdump/hexdump.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)hexdump.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt HEXDUMP 1 diff --git a/usr.bin/hexdump/hexdump.c b/usr.bin/hexdump/hexdump.c index 8491c42d0d52..c8ce78de8c3a 100644 --- a/usr.bin/hexdump/hexdump.c +++ b/usr.bin/hexdump/hexdump.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)hexdump.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: hexdump.c,v 1.2 1997/07/10 06:48:16 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/hexdump/hexsyntax.c b/usr.bin/hexdump/hexsyntax.c index ae21411fa694..f3bf5878dafe 100644 --- a/usr.bin/hexdump/hexsyntax.c +++ b/usr.bin/hexdump/hexsyntax.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)hexsyntax.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/hexdump/od.1 b/usr.bin/hexdump/od.1 index 001b90088c7d..87cea73a83ab 100644 --- a/usr.bin/hexdump/od.1 +++ b/usr.bin/hexdump/od.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)od.1 8.1 (Berkeley) 6/6/93 -.\" $Id: od.1,v 1.5 1997/02/22 19:55:07 peter Exp $ +.\" $FreeBSD$ .\" .Dd May 27, 1994 .Os diff --git a/usr.bin/hexdump/odsyntax.c b/usr.bin/hexdump/odsyntax.c index 7636ab80a439..65a160e64453 100644 --- a/usr.bin/hexdump/odsyntax.c +++ b/usr.bin/hexdump/odsyntax.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)odsyntax.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: odsyntax.c,v 1.6 1997/11/04 05:33:14 ache Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/hexdump/parse.c b/usr.bin/hexdump/parse.c index 34a223649e60..d02cd09a0185 100644 --- a/usr.bin/hexdump/parse.c +++ b/usr.bin/hexdump/parse.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: parse.c,v 1.2 1997/07/10 06:48:24 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/host/Makefile b/usr.bin/host/Makefile index 70a87aa51c52..9f521895ddab 100644 --- a/usr.bin/host/Makefile +++ b/usr.bin/host/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/02/22 19:55:08 peter Exp $ +# $FreeBSD$ .include "${.CURDIR}/../../usr.sbin/named/Makefile.inc" diff --git a/usr.bin/id/groups.1 b/usr.bin/id/groups.1 index a19c5935bd18..48bbff64d07b 100644 --- a/usr.bin/id/groups.1 +++ b/usr.bin/id/groups.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)groups.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt GROUPS 1 diff --git a/usr.bin/id/groups.sh b/usr.bin/id/groups.sh index 904f200fcac5..b6350be8057e 100644 --- a/usr.bin/id/groups.sh +++ b/usr.bin/id/groups.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)groups.sh 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PATH=/bin:/usr/bin; export PATH diff --git a/usr.bin/id/id.1 b/usr.bin/id/id.1 index 56fdcb7c9b56..de43f87ee2c2 100644 --- a/usr.bin/id/id.1 +++ b/usr.bin/id/id.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)id.1 8.1 (Berkeley) 6/6/93 -.\" $Id: id.1,v 1.4 1998/02/28 21:37:54 alex Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt ID 1 diff --git a/usr.bin/id/id.c b/usr.bin/id/id.c index 2b6c96b407bc..c609a0f7c90b 100644 --- a/usr.bin/id/id.c +++ b/usr.bin/id/id.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)id.c 8.2 (Berkeley) 2/16/94"; #endif static const char rcsid[] = - "$Id: id.c,v 1.7 1998/08/21 06:47:58 obrien Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/id/whoami.1 b/usr.bin/id/whoami.1 index 125a05ee8d98..16e542e41d83 100644 --- a/usr.bin/id/whoami.1 +++ b/usr.bin/id/whoami.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)whoami.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt WHOAMI 1 diff --git a/usr.bin/id/whoami.sh b/usr.bin/id/whoami.sh index 1c24bcc71989..9b18bac19953 100644 --- a/usr.bin/id/whoami.sh +++ b/usr.bin/id/whoami.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)whoami.sh 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PATH=/bin:/usr/bin; export PATH diff --git a/usr.bin/indent/args.c b/usr.bin/indent/args.c index 376a6030a292..7a646c0fcfd9 100644 --- a/usr.bin/indent/args.c +++ b/usr.bin/indent/args.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)args.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/indent/indent.1 b/usr.bin/indent/indent.1 index 71fb6bc8d032..b7af9b4c2af3 100644 --- a/usr.bin/indent/indent.1 +++ b/usr.bin/indent/indent.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)indent.1 8.1 (Berkeley) 7/1/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd July 1, 1993 .Dt INDENT 1 diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c index c903d705765e..02d34445ee75 100644 --- a/usr.bin/indent/indent.c +++ b/usr.bin/indent/indent.c @@ -46,7 +46,7 @@ static const char copyright[] = static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93"; #endif static const char rcsid[] = - "$Id: indent.c,v 1.3 1998/10/18 04:46:24 thepish Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/indent/io.c b/usr.bin/indent/io.c index 11c9a8d7ad54..596c849d6c35 100644 --- a/usr.bin/indent/io.c +++ b/usr.bin/indent/io.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: io.c,v 1.3 1997/07/15 09:50:59 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ipcrm/Makefile b/usr.bin/ipcrm/Makefile index 6cc7bda7d56d..9c0e45c0702c 100644 --- a/usr.bin/ipcrm/Makefile +++ b/usr.bin/ipcrm/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= ipcrm diff --git a/usr.bin/ipcrm/ipcrm.1 b/usr.bin/ipcrm/ipcrm.1 index 7dd2c830908c..78e4054a02fc 100644 --- a/usr.bin/ipcrm/ipcrm.1 +++ b/usr.bin/ipcrm/ipcrm.1 @@ -21,7 +21,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: ipcrm.1,v 1.5 1997/07/15 09:54:34 charnier Exp $ +.\" $FreeBSD$ .\"" .Dd August 8, 1994 .Dt IPCRM 1 diff --git a/usr.bin/ipcrm/ipcrm.c b/usr.bin/ipcrm/ipcrm.c index cca197e0bc8e..b52100f632bc 100644 --- a/usr.bin/ipcrm/ipcrm.c +++ b/usr.bin/ipcrm/ipcrm.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ipcs/Makefile b/usr.bin/ipcs/Makefile index 5e4afcc5c781..665371074767 100644 --- a/usr.bin/ipcs/Makefile +++ b/usr.bin/ipcs/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= ipcs BINGRP= kmem diff --git a/usr.bin/ipcs/ipcs.1 b/usr.bin/ipcs/ipcs.1 index e4d441c4a3f4..b52961465f65 100644 --- a/usr.bin/ipcs/ipcs.1 +++ b/usr.bin/ipcs/ipcs.1 @@ -27,7 +27,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ipcs.1,v 1.7 1997/07/15 09:55:58 charnier Exp $ +.\" $FreeBSD$ .\" .Dd June 18, 1994 .Dt "IPCS" 1 diff --git a/usr.bin/ipcs/ipcs.c b/usr.bin/ipcs/ipcs.c index 5eee8b1c5027..a752e6cbf360 100644 --- a/usr.bin/ipcs/ipcs.c +++ b/usr.bin/ipcs/ipcs.c @@ -27,7 +27,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/join/join.1 b/usr.bin/join/join.1 index 7e0b5bd78793..a95454b17b7f 100644 --- a/usr.bin/join/join.1 +++ b/usr.bin/join/join.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)join.1 8.3 (Berkeley) 4/28/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt JOIN 1 diff --git a/usr.bin/join/join.c b/usr.bin/join/join.c index a0229b538a90..4b4add9bc1d6 100644 --- a/usr.bin/join/join.c +++ b/usr.bin/join/join.c @@ -46,7 +46,7 @@ static const char copyright[] = static char sccsid[] = "@(#)join.c 8.6 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: join.c,v 1.8 1997/08/19 15:58:15 jlemon Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/jot/jot.1 b/usr.bin/jot/jot.1 index d0f0ce457fc2..d8419c71b0c0 100644 --- a/usr.bin/jot/jot.1 +++ b/usr.bin/jot/jot.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)jot.1 8.1 (Berkeley) 6/6/93 -.\" $Id: jot.1,v 1.5 1999/07/12 20:23:37 nik Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt JOT 1 diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index 7d96f2b22f67..12b5998cac94 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)jot.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: jot.c,v 1.10 1999/07/22 17:11:59 sheldonh Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/kdump/kdump.1 b/usr.bin/kdump/kdump.1 index ac47abf887b6..b4df3ebb698b 100644 --- a/usr.bin/kdump/kdump.1 +++ b/usr.bin/kdump/kdump.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)kdump.1 8.1 (Berkeley) 6/6/93 -.\" $Id: kdump.1,v 1.3 1997/04/27 08:45:44 jmg Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt KDUMP 1 diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index c8d46025d599..7fad0f3f7eea 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)kdump.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: kdump.c,v 1.14 1999/06/26 07:31:13 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #define KERNEL diff --git a/usr.bin/key/key.1 b/usr.bin/key/key.1 index 56a6e1c0838c..a20dd419d558 100644 --- a/usr.bin/key/key.1 +++ b/usr.bin/key/key.1 @@ -1,5 +1,5 @@ .\" from: @(#)key.1 1.0 (Bellcore) 12/2/91 -.\" $Id: key.1,v 1.3 1997/07/16 06:51:12 charnier Exp $ +.\" $FreeBSD$ .\" .Dd December 2, 1991 .Dt KEY 1 diff --git a/usr.bin/keyinfo/keyinfo.1 b/usr.bin/keyinfo/keyinfo.1 index 5b6a6c5b6817..775043736354 100644 --- a/usr.bin/keyinfo/keyinfo.1 +++ b/usr.bin/keyinfo/keyinfo.1 @@ -1,5 +1,5 @@ .\" from: @(#)keyinfo.1 1.1 (Bellcore) 7/20/93 -.\" $Id: keyinfo.1,v 1.5 1997/07/16 06:52:13 charnier Exp $ +.\" $FreeBSD$ .\" .Dd April 26, 1996 .Dt KEYINFO 1 diff --git a/usr.bin/keyinfo/keyinfo.pl b/usr.bin/keyinfo/keyinfo.pl index 260a72479f98..8316c5896505 100644 --- a/usr.bin/keyinfo/keyinfo.pl +++ b/usr.bin/keyinfo/keyinfo.pl @@ -3,7 +3,7 @@ # Search /etc/skeykeys for the skey string for this user OR user specified # in 1st parameter. # -# $Id$ +# $FreeBSD$ # die "usage: keyinfo [user]\n" unless $#ARGV < 1; diff --git a/usr.bin/keyinit/keyinit.1 b/usr.bin/keyinit/keyinit.1 index 8513507faef5..ee3dba152038 100644 --- a/usr.bin/keyinit/keyinit.1 +++ b/usr.bin/keyinit/keyinit.1 @@ -1,5 +1,5 @@ .\" @(#)keyinit.1 1.0 (Bellcore) 7/20/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd July 20, 1993 .Dt KEYINIT 1 diff --git a/usr.bin/keylogin/Makefile b/usr.bin/keylogin/Makefile index 1c3b861ab67c..bf279eb25b22 100644 --- a/usr.bin/keylogin/Makefile +++ b/usr.bin/keylogin/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= keylogin diff --git a/usr.bin/keylogin/keylogin.1 b/usr.bin/keylogin/keylogin.1 index e20ddfab469d..501d002cffba 100644 --- a/usr.bin/keylogin/keylogin.1 +++ b/usr.bin/keylogin/keylogin.1 @@ -1,6 +1,6 @@ .\" @(#)keylogin.1 1.5 91/03/11 TIRPC 1.0; .\" Copyright (c) 1988 Sun Microsystems, Inc. - All Rights Reserved. -.\" $Id$ +.\" $FreeBSD$ .\" .Dd September 9, 1987 .Dt KEYLOGIN 1 diff --git a/usr.bin/keylogout/Makefile b/usr.bin/keylogout/Makefile index e3743ad6029e..cc433e444669 100644 --- a/usr.bin/keylogout/Makefile +++ b/usr.bin/keylogout/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= keylogout diff --git a/usr.bin/keylogout/keylogout.1 b/usr.bin/keylogout/keylogout.1 index 373304b2b402..7a3503e55e0a 100644 --- a/usr.bin/keylogout/keylogout.1 +++ b/usr.bin/keylogout/keylogout.1 @@ -1,4 +1,4 @@ -.\" $Id$ +.\" $FreeBSD$ .\" @(#)keylogout.1 1.4 91/03/11 TIRPC 1.0; from 1.3 89/07/26 SMI; .Dd April 15, 1989 .Dt KEYLOGOUT 1 diff --git a/usr.bin/keylogout/keylogout.c b/usr.bin/keylogout/keylogout.c index 86d391bc7070..d5276d2e168f 100644 --- a/usr.bin/keylogout/keylogout.c +++ b/usr.bin/keylogout/keylogout.c @@ -33,7 +33,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/killall/Makefile b/usr.bin/killall/Makefile index b7b319627392..0a0ced7d0db2 100644 --- a/usr.bin/killall/Makefile +++ b/usr.bin/killall/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ MAINTAINER= wosch MAN1= killall.1 diff --git a/usr.bin/killall/killall.1 b/usr.bin/killall/killall.1 index 2e51e058bfbb..c7b3c3e0feb2 100644 --- a/usr.bin/killall/killall.1 +++ b/usr.bin/killall/killall.1 @@ -22,7 +22,7 @@ .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: killall.1,v 1.9 1997/11/01 15:06:40 wosch Exp $ +.\" $FreeBSD$ .\" .Dd June 25, 1995 .Os FreeBSD 2.2 diff --git a/usr.bin/killall/killall.pl b/usr.bin/killall/killall.pl index e18489acf706..6238c7b49668 100755 --- a/usr.bin/killall/killall.pl +++ b/usr.bin/killall/killall.pl @@ -26,7 +26,7 @@ # # killall - kill processes by name # -# $Id: killall.pl,v 1.10 1998/08/30 16:54:58 wosch Exp $ +# $FreeBSD$ $ENV{'PATH'} = '/bin:/usr/bin'; # security diff --git a/usr.bin/ktrace/Makefile b/usr.bin/ktrace/Makefile index b551a37d461a..c00bb7510459 100644 --- a/usr.bin/ktrace/Makefile +++ b/usr.bin/ktrace/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 1.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.4 1997/02/22 19:55:27 peter Exp $ +# $FreeBSD$ PROG= ktrace SRCS= ktrace.c subr.c diff --git a/usr.bin/ktrace/ktrace.1 b/usr.bin/ktrace/ktrace.1 index 6708e3ca7d2d..20a461a39410 100644 --- a/usr.bin/ktrace/ktrace.1 +++ b/usr.bin/ktrace/ktrace.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ktrace.1 8.1 (Berkeley) 6/6/93 -.\" $Id: ktrace.1,v 1.6 1997/04/27 08:45:45 jmg Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt KTRACE 1 diff --git a/usr.bin/ktrace/ktrace.c b/usr.bin/ktrace/ktrace.c index f96c4fd45744..1c5a98ba6796 100644 --- a/usr.bin/ktrace/ktrace.c +++ b/usr.bin/ktrace/ktrace.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)ktrace.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: ktrace.c,v 1.10 1997/03/29 04:30:16 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ktrace/subr.c b/usr.bin/ktrace/subr.c index 8af26bab5cfa..4e4b3bf466a5 100644 --- a/usr.bin/ktrace/subr.c +++ b/usr.bin/ktrace/subr.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/kzip/Makefile b/usr.bin/kzip/Makefile index 7c9f8c3b438f..8ff6f7f09623 100644 --- a/usr.bin/kzip/Makefile +++ b/usr.bin/kzip/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= kzip MAN8= kzip.8 diff --git a/usr.bin/kzip/kzip.8 b/usr.bin/kzip/kzip.8 index f720da67fc1f..a966d365f314 100644 --- a/usr.bin/kzip/kzip.8 +++ b/usr.bin/kzip/kzip.8 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: kzip.8,v 1.5 1998/03/23 07:44:18 charnier Exp $ +.\" $FreeBSD$ .\" .Dd August 15, 1996 .Os diff --git a/usr.bin/kzip/kzip.c b/usr.bin/kzip/kzip.c index 74bd701751da..430dcc39f619 100644 --- a/usr.bin/kzip/kzip.c +++ b/usr.bin/kzip/kzip.c @@ -13,7 +13,7 @@ #ifndef lint static const char rcsid[] = - "$Id: kzip.c,v 1.11 1998/06/01 18:34:19 jhay Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/lam/lam.1 b/usr.bin/lam/lam.1 index 78b8ea025231..b1c9ed8aba1c 100644 --- a/usr.bin/lam/lam.1 +++ b/usr.bin/lam/lam.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)lam.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt LAM 1 diff --git a/usr.bin/lam/lam.c b/usr.bin/lam/lam.c index 599337a71855..277081095af7 100644 --- a/usr.bin/lam/lam.c +++ b/usr.bin/lam/lam.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)lam.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/last/last.1 b/usr.bin/last/last.1 index 8983fc19763d..27be940c0811 100644 --- a/usr.bin/last/last.1 +++ b/usr.bin/last/last.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)last.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt LAST 1 diff --git a/usr.bin/lastcomm/lastcomm.1 b/usr.bin/lastcomm/lastcomm.1 index 7e84c7ded476..33248e24b3c7 100644 --- a/usr.bin/lastcomm/lastcomm.1 +++ b/usr.bin/lastcomm/lastcomm.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)lastcomm.1 8.1 (Berkeley) 6/6/93 -.\" $Id: lastcomm.1,v 1.5 1997/02/22 19:55:32 peter Exp $ +.\" $FreeBSD$ .\" .Dd September 18, 1996 .Dt LASTCOMM 1 diff --git a/usr.bin/lastcomm/lastcomm.c b/usr.bin/lastcomm/lastcomm.c index 64aae8fa4860..4beed143c977 100644 --- a/usr.bin/lastcomm/lastcomm.c +++ b/usr.bin/lastcomm/lastcomm.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)lastcomm.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ldd/Makefile b/usr.bin/ldd/Makefile index a3a726944965..d7cd01069682 100644 --- a/usr.bin/ldd/Makefile +++ b/usr.bin/ldd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1998/06/12 14:11:15 peter Exp $ +# $FreeBSD$ PROG= ldd SRCS= ldd.c diff --git a/usr.bin/ldd/ldd.c b/usr.bin/ldd/ldd.c index 860b05336296..d565d607102f 100644 --- a/usr.bin/ldd/ldd.c +++ b/usr.bin/ldd/ldd.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ldd.c,v 1.16 1998/08/30 18:30:59 jdp Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/ldd/sods.c b/usr.bin/ldd/sods.c index 70784e6258b0..a41afaa63c13 100644 --- a/usr.bin/ldd/sods.c +++ b/usr.bin/ldd/sods.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sods.c,v 1.7 1998/05/01 08:40:11 dfr Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/leave/Makefile b/usr.bin/leave/Makefile index 4c6129171217..eacf6f1e021d 100644 --- a/usr.bin/leave/Makefile +++ b/usr.bin/leave/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= leave CFLAGS+=-Wall diff --git a/usr.bin/leave/leave.1 b/usr.bin/leave/leave.1 index 32b1999e76e8..f0cc56e726f5 100644 --- a/usr.bin/leave/leave.1 +++ b/usr.bin/leave/leave.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)leave.1 8.3 (Berkeley) 4/28/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt LEAVE 1 diff --git a/usr.bin/leave/leave.c b/usr.bin/leave/leave.c index c39269692683..d76465531fa4 100644 --- a/usr.bin/leave/leave.c +++ b/usr.bin/leave/leave.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)leave.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: leave.c,v 1.3 1998/01/06 17:27:09 helbig Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index 5d98811d4840..855da64da498 100644 --- a/usr.bin/lex/Makefile +++ b/usr.bin/lex/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1997/10/05 09:39:58 jkh Exp $ +# $FreeBSD$ # # By default, flex will be configured to generate 8-bit scanners only if the # -8 flag is given. If you want it to always generate 8-bit scanners, add diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 8fd744f3c9e8..0091cc2747bc 100644 --- a/usr.bin/lex/lib/Makefile +++ b/usr.bin/lex/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/02/22 19:55:36 peter Exp $ +# $FreeBSD$ LIB= ln SRCS= libmain.c libyywrap.c diff --git a/usr.bin/limits/limits.1 b/usr.bin/limits/limits.1 index 29033ea1d77d..258dc55b3708 100644 --- a/usr.bin/limits/limits.1 +++ b/usr.bin/limits/limits.1 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $Id: limits.1,v 1.11 1999/04/13 02:32:12 ghelmer Exp $ +.\" $FreeBSD$ .\" .Dd January 15, 1996 .Dt LIMITS 1 diff --git a/usr.bin/limits/limits.c b/usr.bin/limits/limits.c index e2f8bef620e4..b9de9a4c9cd7 100644 --- a/usr.bin/limits/limits.c +++ b/usr.bin/limits/limits.c @@ -20,7 +20,7 @@ * * Display/change(+runprogram)/eval resource limits. * - * $Id: limits.c,v 1.4 1997/05/10 19:00:58 davidn Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/locate/Makefile b/usr.bin/locate/Makefile index 2c82bee27aa6..1d495e420ece 100644 --- a/usr.bin/locate/Makefile +++ b/usr.bin/locate/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.4 1997/02/22 19:55:40 peter Exp $ +# $FreeBSD$ MAINTAINER= wosch diff --git a/usr.bin/locate/Makefile.inc b/usr.bin/locate/Makefile.inc index 0f80876250b2..48174083d848 100644 --- a/usr.bin/locate/Makefile.inc +++ b/usr.bin/locate/Makefile.inc @@ -1,3 +1,3 @@ -# $Id$ +# $FreeBSD$ LIBEXECDIR?= /usr/libexec diff --git a/usr.bin/locate/bigram/Makefile b/usr.bin/locate/bigram/Makefile index bcb016e24a7f..e0018d89b7fd 100644 --- a/usr.bin/locate/bigram/Makefile +++ b/usr.bin/locate/bigram/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= locate.bigram NOMAN= noman diff --git a/usr.bin/locate/bigram/locate.bigram.c b/usr.bin/locate/bigram/locate.bigram.c index 663428a0526d..137b590697ae 100644 --- a/usr.bin/locate/bigram/locate.bigram.c +++ b/usr.bin/locate/bigram/locate.bigram.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/locate/code/Makefile b/usr.bin/locate/code/Makefile index 7e4c4fd573fe..fb1fb510e59a 100644 --- a/usr.bin/locate/code/Makefile +++ b/usr.bin/locate/code/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= locate.code CFLAGS+=-I${.CURDIR}/../locate diff --git a/usr.bin/locate/code/locate.code.c b/usr.bin/locate/code/locate.code.c index 47d20590dbad..c7cb09715fb4 100644 --- a/usr.bin/locate/code/locate.code.c +++ b/usr.bin/locate/code/locate.code.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locate.code.c,v 1.9 1997/02/22 19:55:43 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/locate/locate/Makefile b/usr.bin/locate/locate/Makefile index c1b14bf657e9..064cf08a52be 100644 --- a/usr.bin/locate/locate/Makefile +++ b/usr.bin/locate/locate/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= locate SRCS= util.c locate.c diff --git a/usr.bin/locate/locate/concatdb.sh b/usr.bin/locate/locate/concatdb.sh index 86251a33ca75..75c683246ca4 100644 --- a/usr.bin/locate/locate/concatdb.sh +++ b/usr.bin/locate/locate/concatdb.sh @@ -30,7 +30,7 @@ # # Sequence of databases is important. # -# $Id: concatdb.sh,v 1.7 1998/03/08 15:28:32 wosch Exp $ +# $FreeBSD$ # The directory containing locate subprograms : ${LIBEXECDIR:=/usr/libexec}; export LIBEXECDIR diff --git a/usr.bin/locate/locate/fastfind.c b/usr.bin/locate/locate/fastfind.c index d886ffa55667..68f8a86d2b2b 100644 --- a/usr.bin/locate/locate/fastfind.c +++ b/usr.bin/locate/locate/fastfind.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fastfind.c,v 1.10 1997/07/21 12:08:13 charnier Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/locate/locate/locate.1 b/usr.bin/locate/locate/locate.1 index 2519a0722c7f..e4cffa873aa3 100644 --- a/usr.bin/locate/locate/locate.1 +++ b/usr.bin/locate/locate/locate.1 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)locate.1 8.1 (Berkeley) 6/6/93 -.\" $Id: locate.1,v 1.10 1998/02/07 05:30:14 alex Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt LOCATE 1 diff --git a/usr.bin/locate/locate/locate.c b/usr.bin/locate/locate/locate.c index 819d8a50c926..a0ffe0dbdcc0 100644 --- a/usr.bin/locate/locate/locate.c +++ b/usr.bin/locate/locate/locate.c @@ -47,7 +47,7 @@ static const char copyright[] = static char sccsid[] = "@(#)locate.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/locate/locate/locate.h b/usr.bin/locate/locate/locate.h index 9e997d447231..24df8d4002be 100644 --- a/usr.bin/locate/locate/locate.h +++ b/usr.bin/locate/locate/locate.h @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * @(#)locate.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ /* Symbolic constants shared by locate.c and code.c */ diff --git a/usr.bin/locate/locate/locate.rc b/usr.bin/locate/locate/locate.rc index e1f400083ba9..57835b363a3c 100644 --- a/usr.bin/locate/locate/locate.rc +++ b/usr.bin/locate/locate/locate.rc @@ -1,7 +1,7 @@ # # /etc/locate.rc - command script for updatedb(8) # -# $Id: locate.rc,v 1.6 1998/03/08 16:09:26 wosch Exp $ +# $FreeBSD$ # # All commented values are the defaults diff --git a/usr.bin/locate/locate/locate.updatedb.8 b/usr.bin/locate/locate/locate.updatedb.8 index 9e9bb1e8c1af..fad70894c050 100644 --- a/usr.bin/locate/locate/locate.updatedb.8 +++ b/usr.bin/locate/locate/locate.updatedb.8 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd February 11, 1996 .Dt LOCATE.UPDATEDB 8 diff --git a/usr.bin/locate/locate/mklocatedb.sh b/usr.bin/locate/locate/mklocatedb.sh index 864760e87ec7..4df3afa1386f 100644 --- a/usr.bin/locate/locate/mklocatedb.sh +++ b/usr.bin/locate/locate/mklocatedb.sh @@ -28,7 +28,7 @@ # # usage: mklocatedb [-presort] < filelist > database # -# $Id: mklocatedb.sh,v 1.7 1998/03/08 16:09:28 wosch Exp $ +# $FreeBSD$ # The directory containing locate subprograms : ${LIBEXECDIR:=/usr/libexec}; export LIBEXECDIR diff --git a/usr.bin/locate/locate/updatedb.sh b/usr.bin/locate/locate/updatedb.sh index 0eea10e3c2b7..fbf1e61b0a49 100644 --- a/usr.bin/locate/locate/updatedb.sh +++ b/usr.bin/locate/locate/updatedb.sh @@ -26,7 +26,7 @@ # # updatedb - update locate database for local mounted filesystems # -# $Id: updatedb.sh,v 1.14 1999/05/14 10:18:43 wosch Exp $ +# $FreeBSD$ : ${LOCATE_CONFIG="/etc/locate.rc"} if [ -f "$LOCATE_CONFIG" -a -r "$LOCATE_CONFIG" ]; then diff --git a/usr.bin/locate/locate/util.c b/usr.bin/locate/locate/util.c index 87ad02f10574..38fe284a80f8 100644 --- a/usr.bin/locate/locate/util.c +++ b/usr.bin/locate/locate/util.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: util.c,v 1.4 1997/02/22 19:55:50 peter Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/lock/lock.1 b/usr.bin/lock/lock.1 index 8f707777f50e..d3538ed2fe0f 100644 --- a/usr.bin/lock/lock.1 +++ b/usr.bin/lock/lock.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)lock.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt LOCK 1 diff --git a/usr.bin/lock/lock.c b/usr.bin/lock/lock.c index 786c31ac762b..d5b60ae10da1 100644 --- a/usr.bin/lock/lock.c +++ b/usr.bin/lock/lock.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)lock.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: lock.c,v 1.4 1997/07/21 12:09:34 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/lockf/Makefile b/usr.bin/lockf/Makefile index 47fb6ab863e1..77d89c45bbdf 100644 --- a/usr.bin/lockf/Makefile +++ b/usr.bin/lockf/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= lockf CFLAGS+=-Wall diff --git a/usr.bin/lockf/lockf.1 b/usr.bin/lockf/lockf.1 index 36b50de0cc84..e4fc80eb93dc 100644 --- a/usr.bin/lockf/lockf.1 +++ b/usr.bin/lockf/lockf.1 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: lockf.1,v 1.5 1998/03/23 07:44:28 charnier Exp $ +.\" $FreeBSD$ .\" .Dd July 7, 1998 .Os FreeBSD diff --git a/usr.bin/lockf/lockf.c b/usr.bin/lockf/lockf.c index 76b4870634dd..0a91048cafc4 100644 --- a/usr.bin/lockf/lockf.c +++ b/usr.bin/lockf/lockf.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: lockf.c,v 1.6 1997/07/22 07:32:23 charnier Exp $ + * $FreeBSD$ */ #include diff --git a/usr.bin/logger/logger.1 b/usr.bin/logger/logger.1 index 413b39af49ba..b2abd2ba2de2 100644 --- a/usr.bin/logger/logger.1 +++ b/usr.bin/logger/logger.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)logger.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt LOGGER 1 diff --git a/usr.bin/logger/logger.c b/usr.bin/logger/logger.c index c272ae269305..e7be77125506 100644 --- a/usr.bin/logger/logger.c +++ b/usr.bin/logger/logger.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)logger.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile index 595a2fc9fc81..2813ccbdfe30 100644 --- a/usr.bin/login/Makefile +++ b/usr.bin/login/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 7/19/93 -# $Id: Makefile,v 1.27 1999/01/20 21:58:46 jdp Exp $ +# $FreeBSD$ PROG= login MAN1= login.1 diff --git a/usr.bin/login/login.1 b/usr.bin/login/login.1 index 7bea546b6dc9..2ee22ef7f0db 100644 --- a/usr.bin/login/login.1 +++ b/usr.bin/login/login.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)login.1 8.2 (Berkeley) 5/5/94 -.\" $Id: login.1,v 1.13 1999/01/11 09:07:42 asami Exp $ +.\" $FreeBSD$ .\" .Dd May 5, 1994 .Dt LOGIN 1 diff --git a/usr.bin/login/login.access.5 b/usr.bin/login/login.access.5 index ff6d21cc14fe..10788ed38e6f 100644 --- a/usr.bin/login/login.access.5 +++ b/usr.bin/login/login.access.5 @@ -1,5 +1,5 @@ .\" -.\" $Id$ +.\" $FreeBSD$ .\" .\" this is comment .Dd April 30, 1994 diff --git a/usr.bin/login/login.c b/usr.bin/login/login.c index 94a463d90ffa..7b7cc97b7d77 100644 --- a/usr.bin/login/login.c +++ b/usr.bin/login/login.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)login.c 8.4 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: login.c,v 1.47 1999/04/24 17:26:32 ache Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/logname/logname.1 b/usr.bin/logname/logname.1 index d8de2ce01f46..e75afcb925ec 100644 --- a/usr.bin/logname/logname.1 +++ b/usr.bin/logname/logname.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)logname.1 8.1 (Berkeley) 6/9/93 -.\" $Id: logname.1,v 1.3 1997/04/27 08:45:45 jmg Exp $ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt LOGNAME 1 diff --git a/usr.bin/look/look.1 b/usr.bin/look/look.1 index 32958aff71a3..ed688b467f37 100644 --- a/usr.bin/look/look.1 +++ b/usr.bin/look/look.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)look.1 8.1 (Berkeley) 6/14/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 14, 1993 .Dt LOOK 1 diff --git a/usr.bin/look/look.c b/usr.bin/look/look.c index ddca4d02f698..ad2f35c4f3bf 100644 --- a/usr.bin/look/look.c +++ b/usr.bin/look/look.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)look.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: look.c,v 1.9 1997/09/15 11:02:10 jkh Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/lorder/lorder.1 b/usr.bin/lorder/lorder.1 index 418556e414e1..68b074b2bdb5 100644 --- a/usr.bin/lorder/lorder.1 +++ b/usr.bin/lorder/lorder.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)lorder.1 8.2 (Berkeley) 4/28/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt LORDER 1 diff --git a/usr.bin/lsvfs/Makefile b/usr.bin/lsvfs/Makefile index 3b25443ca3a2..b2b06113e666 100644 --- a/usr.bin/lsvfs/Makefile +++ b/usr.bin/lsvfs/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= lsvfs .include diff --git a/usr.bin/lsvfs/lsvfs.1 b/usr.bin/lsvfs/lsvfs.1 index 3bd508350a33..bd075c85db55 100644 --- a/usr.bin/lsvfs/lsvfs.1 +++ b/usr.bin/lsvfs/lsvfs.1 @@ -1,4 +1,4 @@ -.\" $Id: lsvfs.1,v 1.5 1997/02/22 19:55:59 peter Exp $ +.\" $FreeBSD$ .\" Garrett A. Wollman, September 1994 .\" This file is in the public domain. .\" diff --git a/usr.bin/lsvfs/lsvfs.c b/usr.bin/lsvfs/lsvfs.c index d9889042d32a..cb6a032e634b 100644 --- a/usr.bin/lsvfs/lsvfs.c +++ b/usr.bin/lsvfs/lsvfs.c @@ -3,7 +3,7 @@ * Garrett A. Wollman, September 1994 * This file is in the public domain. * - * $Id: lsvfs.c,v 1.11 1998/08/29 13:53:22 bde Exp $ + * $FreeBSD$ */ #define _NEW_VFSCONF diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index 5c51141e71b3..e863a13cbdff 100644 --- a/usr.bin/m4/eval.c +++ b/usr.bin/m4/eval.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)eval.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: eval.c,v 1.8 1997/08/18 21:01:45 jlemon Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/m4/m4.1 b/usr.bin/m4/m4.1 index 68d69295eb25..3e5551f4e283 100644 --- a/usr.bin/m4/m4.1 +++ b/usr.bin/m4/m4.1 @@ -1,5 +1,5 @@ .\" -.\" @(#) $Id: m4.1,v 1.7 1998/12/13 23:15:50 steve Exp $ +.\" @(#) $FreeBSD$ .\" .Dd January 26, 1993 .Dt M4 1 diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index d95f1f2215f6..41b7b1385fe9 100644 --- a/usr.bin/m4/main.c +++ b/usr.bin/m4/main.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c index 9e9c70e87698..452f849cf4d2 100644 --- a/usr.bin/m4/misc.c +++ b/usr.bin/m4/misc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/mail/mail.1 b/usr.bin/mail/mail.1 index 81ea50be8861..7109ef44ab2a 100644 --- a/usr.bin/mail/mail.1 +++ b/usr.bin/mail/mail.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mail.1 8.2 (Berkeley) 12/30/93 -.\" $Id: mail.1,v 1.14 1998/01/02 16:43:49 joerg Exp $ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt MAIL 1 diff --git a/usr.bin/mail/temp.c b/usr.bin/mail/temp.c index 5101a74931ef..fd14c58e971b 100644 --- a/usr.bin/mail/temp.c +++ b/usr.bin/mail/temp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)temp.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: temp.c,v 1.4 1998/10/10 09:58:20 thepish Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "rcv.h" diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index 9f6b524a23f7..7530945384ee 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.2 (Berkeley) 12/28/90 -# $Id: Makefile,v 1.10 1997/02/22 19:27:05 peter Exp $ +# $FreeBSD$ PROG= make CFLAGS+= -I${.CURDIR} ${CROSS_MAKE_FLAGS} diff --git a/usr.bin/make/PSD.doc/Makefile b/usr.bin/make/PSD.doc/Makefile index 432ff314964e..d9f5acd3a47a 100644 --- a/usr.bin/make/PSD.doc/Makefile +++ b/usr.bin/make/PSD.doc/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 8/14/93 -# $Id$ +# $FreeBSD$ DIR= psd/12.make SRCS= tutorial.ms diff --git a/usr.bin/make/PSD.doc/tutorial.ms b/usr.bin/make/PSD.doc/tutorial.ms index 31de37865ec1..d4269ca06488 100644 --- a/usr.bin/make/PSD.doc/tutorial.ms +++ b/usr.bin/make/PSD.doc/tutorial.ms @@ -35,7 +35,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tutorial.ms 8.1 (Berkeley) 8/18/93 -.\" $Id: tutorial.ms,v 1.6 1997/02/22 19:27:31 peter Exp $ +.\" $FreeBSD$ .\" .EH 'PSD:12-%''PMake \*- A Tutorial' .OH 'PMake \*- A Tutorial''PSD:12-%' diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 7f70daddfef6..5397e270a4bf 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: arch.c,v 1.10 1998/10/15 16:09:56 jdp Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/buf.c b/usr.bin/make/buf.c index 8ed5aa754a92..74983452f698 100644 --- a/usr.bin/make/buf.c +++ b/usr.bin/make/buf.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: buf.c,v 1.8 1997/02/22 19:27:06 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/buf.h b/usr.bin/make/buf.h index 8721bfb6ac20..207262be48d5 100644 --- a/usr.bin/make/buf.h +++ b/usr.bin/make/buf.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)buf.h 8.1 (Berkeley) 6/6/93 - * $Id: buf.h,v 1.7 1997/02/22 19:27:06 peter Exp $ + * $FreeBSD$ */ /*- diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index e894699d25f8..ee13bf0d5421 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: compat.c,v 1.13 1999/07/31 20:38:22 hoek Exp $ + * $FreeBSD$ */ #ifndef lint @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94"; #else static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c index f19b93a71ce9..bbcebd6bb869 100644 --- a/usr.bin/make/cond.c +++ b/usr.bin/make/cond.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cond.c,v 1.9 1999/08/12 13:30:08 hoek Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/config.h b/usr.bin/make/config.h index 3d44e2e07e12..5732247eb83d 100644 --- a/usr.bin/make/config.h +++ b/usr.bin/make/config.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)config.h 8.1 (Berkeley) 6/6/93 - * $Id: config.h,v 1.6 1997/02/22 19:27:08 peter Exp $ + * $FreeBSD$ */ #define DEFSHELL 1 /* Bourne shell */ diff --git a/usr.bin/make/dir.c b/usr.bin/make/dir.c index eb059993186b..95e6bfb45fc6 100644 --- a/usr.bin/make/dir.c +++ b/usr.bin/make/dir.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: dir.c,v 1.7 1997/02/22 19:27:08 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/dir.h b/usr.bin/make/dir.h index 62687c5e57e3..487957222eee 100644 --- a/usr.bin/make/dir.h +++ b/usr.bin/make/dir.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)dir.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ /* dir.h -- diff --git a/usr.bin/make/for.c b/usr.bin/make/for.c index 983b9fdba898..0d907cafaa46 100644 --- a/usr.bin/make/for.c +++ b/usr.bin/make/for.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: for.c,v 1.7 1997/02/22 19:27:09 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/hash.c b/usr.bin/make/hash.c index 12dfbd9cd415..021980053ea3 100644 --- a/usr.bin/make/hash.c +++ b/usr.bin/make/hash.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: hash.c,v 1.6 1997/02/22 19:27:10 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/hash.h b/usr.bin/make/hash.h index 6e88ed8f44d9..6a1dcbd12f44 100644 --- a/usr.bin/make/hash.h +++ b/usr.bin/make/hash.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)hash.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ /* hash.h -- diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 0dbc3adc2a03..7fac04e3ba17 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: job.c,v 1.13 1999/08/17 00:39:19 hoek Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h index 6dac5e497071..87aef22057e6 100644 --- a/usr.bin/make/job.h +++ b/usr.bin/make/job.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)job.h 8.1 (Berkeley) 6/6/93 - * $Id: job.h,v 1.8 1997/04/21 20:32:11 phk Exp $ + * $FreeBSD$ */ /*- diff --git a/usr.bin/make/list.h b/usr.bin/make/list.h index fef964250586..e053f1a6d6f0 100644 --- a/usr.bin/make/list.h +++ b/usr.bin/make/list.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)list.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ /* diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h index 3cb3ee1909bb..e297ff09d46a 100644 --- a/usr.bin/make/lst.h +++ b/usr.bin/make/lst.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)lst.h 8.1 (Berkeley) 6/6/93 - * $Id: lst.h,v 1.7 1997/02/22 19:27:13 peter Exp $ + * $FreeBSD$ */ /*- diff --git a/usr.bin/make/lst.lib/lstAppend.c b/usr.bin/make/lst.lib/lstAppend.c index e936f730826b..a6d3a7bbd143 100644 --- a/usr.bin/make/lst.lib/lstAppend.c +++ b/usr.bin/make/lst.lib/lstAppend.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstAtEnd.c b/usr.bin/make/lst.lib/lstAtEnd.c index c4f7480963df..9d22bef9ba05 100644 --- a/usr.bin/make/lst.lib/lstAtEnd.c +++ b/usr.bin/make/lst.lib/lstAtEnd.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstAtFront.c b/usr.bin/make/lst.lib/lstAtFront.c index 720e6635e17a..57a895062890 100644 --- a/usr.bin/make/lst.lib/lstAtFront.c +++ b/usr.bin/make/lst.lib/lstAtFront.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstClose.c b/usr.bin/make/lst.lib/lstClose.c index f28119f056d1..d0a8e9f6600a 100644 --- a/usr.bin/make/lst.lib/lstClose.c +++ b/usr.bin/make/lst.lib/lstClose.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstConcat.c b/usr.bin/make/lst.lib/lstConcat.c index 5cb8a67f63bb..fd98a308bf86 100644 --- a/usr.bin/make/lst.lib/lstConcat.c +++ b/usr.bin/make/lst.lib/lstConcat.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstDatum.c b/usr.bin/make/lst.lib/lstDatum.c index ec7d11c91e68..afb84b46fec6 100644 --- a/usr.bin/make/lst.lib/lstDatum.c +++ b/usr.bin/make/lst.lib/lstDatum.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstDeQueue.c b/usr.bin/make/lst.lib/lstDeQueue.c index 62335022c838..a10becbc0be9 100644 --- a/usr.bin/make/lst.lib/lstDeQueue.c +++ b/usr.bin/make/lst.lib/lstDeQueue.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstDestroy.c b/usr.bin/make/lst.lib/lstDestroy.c index e2414522ac61..2a84d638c0c0 100644 --- a/usr.bin/make/lst.lib/lstDestroy.c +++ b/usr.bin/make/lst.lib/lstDestroy.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstDupl.c b/usr.bin/make/lst.lib/lstDupl.c index cc5e75e1ebb1..a29fa2febecc 100644 --- a/usr.bin/make/lst.lib/lstDupl.c +++ b/usr.bin/make/lst.lib/lstDupl.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstEnQueue.c b/usr.bin/make/lst.lib/lstEnQueue.c index d7627f33b3e5..cafc4a699473 100644 --- a/usr.bin/make/lst.lib/lstEnQueue.c +++ b/usr.bin/make/lst.lib/lstEnQueue.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstFind.c b/usr.bin/make/lst.lib/lstFind.c index fbbae6689410..a74d6b9b6bf2 100644 --- a/usr.bin/make/lst.lib/lstFind.c +++ b/usr.bin/make/lst.lib/lstFind.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstFindFrom.c b/usr.bin/make/lst.lib/lstFindFrom.c index 6c64cf1483fe..96ce3b079cf4 100644 --- a/usr.bin/make/lst.lib/lstFindFrom.c +++ b/usr.bin/make/lst.lib/lstFindFrom.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstFirst.c b/usr.bin/make/lst.lib/lstFirst.c index e7a30397d555..b9f2ae55286a 100644 --- a/usr.bin/make/lst.lib/lstFirst.c +++ b/usr.bin/make/lst.lib/lstFirst.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstForEach.c b/usr.bin/make/lst.lib/lstForEach.c index 1688e9d36d7c..95ee44abbc27 100644 --- a/usr.bin/make/lst.lib/lstForEach.c +++ b/usr.bin/make/lst.lib/lstForEach.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstForEachFrom.c b/usr.bin/make/lst.lib/lstForEachFrom.c index 7692c57e7806..aff154f70e0c 100644 --- a/usr.bin/make/lst.lib/lstForEachFrom.c +++ b/usr.bin/make/lst.lib/lstForEachFrom.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstInit.c b/usr.bin/make/lst.lib/lstInit.c index a16fca27c458..7b3c2b089312 100644 --- a/usr.bin/make/lst.lib/lstInit.c +++ b/usr.bin/make/lst.lib/lstInit.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstInsert.c b/usr.bin/make/lst.lib/lstInsert.c index 8c4ebcb30b04..3c3861e11803 100644 --- a/usr.bin/make/lst.lib/lstInsert.c +++ b/usr.bin/make/lst.lib/lstInsert.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstInt.h b/usr.bin/make/lst.lib/lstInt.h index dd38bf0eaa69..0e287405ab39 100644 --- a/usr.bin/make/lst.lib/lstInt.h +++ b/usr.bin/make/lst.lib/lstInt.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)lstInt.h 8.1 (Berkeley) 6/6/93 - * $Id: lstInt.h,v 1.5 1997/02/22 19:27:40 peter Exp $ + * $FreeBSD$ */ /*- diff --git a/usr.bin/make/lst.lib/lstIsAtEnd.c b/usr.bin/make/lst.lib/lstIsAtEnd.c index 2c480197c1e0..50a4de019319 100644 --- a/usr.bin/make/lst.lib/lstIsAtEnd.c +++ b/usr.bin/make/lst.lib/lstIsAtEnd.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstIsEmpty.c b/usr.bin/make/lst.lib/lstIsEmpty.c index 6a9a7bdb5a29..79a27431e4dd 100644 --- a/usr.bin/make/lst.lib/lstIsEmpty.c +++ b/usr.bin/make/lst.lib/lstIsEmpty.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstLast.c b/usr.bin/make/lst.lib/lstLast.c index 49b2f8e39adc..1affe2e0c383 100644 --- a/usr.bin/make/lst.lib/lstLast.c +++ b/usr.bin/make/lst.lib/lstLast.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstMember.c b/usr.bin/make/lst.lib/lstMember.c index cc5cb4f416d4..7e3c2ceb9f72 100644 --- a/usr.bin/make/lst.lib/lstMember.c +++ b/usr.bin/make/lst.lib/lstMember.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstNext.c b/usr.bin/make/lst.lib/lstNext.c index f6e2656e89ef..6008d0a485b5 100644 --- a/usr.bin/make/lst.lib/lstNext.c +++ b/usr.bin/make/lst.lib/lstNext.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstOpen.c b/usr.bin/make/lst.lib/lstOpen.c index fbb7d0e7b298..9af9c7cd163d 100644 --- a/usr.bin/make/lst.lib/lstOpen.c +++ b/usr.bin/make/lst.lib/lstOpen.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstRemove.c b/usr.bin/make/lst.lib/lstRemove.c index e84d301ec626..be8b375e4b7d 100644 --- a/usr.bin/make/lst.lib/lstRemove.c +++ b/usr.bin/make/lst.lib/lstRemove.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstReplace.c b/usr.bin/make/lst.lib/lstReplace.c index a2dcb459da2d..967da863f6a4 100644 --- a/usr.bin/make/lst.lib/lstReplace.c +++ b/usr.bin/make/lst.lib/lstReplace.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/lst.lib/lstSucc.c b/usr.bin/make/lst.lib/lstSucc.c index b43a00cb4dc0..6412f3e52d8a 100644 --- a/usr.bin/make/lst.lib/lstSucc.c +++ b/usr.bin/make/lst.lib/lstSucc.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 3aecd8332fe4..25726b871a5f 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -47,7 +47,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; #else static const char rcsid[] = - "$Id: main.c,v 1.32 1999/07/31 20:53:01 hoek Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index ff3e61786354..642e7e78ccf8 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 -.\" $Id: make.1,v 1.22 1999/08/14 06:47:13 chris Exp $ +.\" $FreeBSD$ .\" .Dd March 19, 1994 .Dt MAKE 1 diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c index 509215c2746e..6c53c052caac 100644 --- a/usr.bin/make/make.c +++ b/usr.bin/make/make.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: make.c,v 1.8 1997/02/22 19:27:16 peter Exp $ + * $FreeBSD$ */ #ifndef lint @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93"; #else static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h index 3845e7dafa0a..24106519eb30 100644 --- a/usr.bin/make/make.h +++ b/usr.bin/make/make.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)make.h 8.3 (Berkeley) 6/13/95 - * $Id: make.h,v 1.9 1999/07/31 20:53:02 hoek Exp $ + * $FreeBSD$ */ /*- diff --git a/usr.bin/make/nonints.h b/usr.bin/make/nonints.h index 4b8b21152b0e..ce1665d96c85 100644 --- a/usr.bin/make/nonints.h +++ b/usr.bin/make/nonints.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)nonints.h 8.3 (Berkeley) 3/19/94 - * $Id: nonints.h,v 1.6 1997/02/22 19:27:17 peter Exp $ + * $FreeBSD$ */ /* arch.c */ diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 5b2ceb79781d..e7e5daf9debc 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -41,7 +41,7 @@ static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else static const char rcsid[] = - "$Id: parse.c,v 1.20 1999/01/08 18:37:34 jkh Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/make/pathnames.h b/usr.bin/make/pathnames.h index d456c357ff2d..1f15c082ead7 100644 --- a/usr.bin/make/pathnames.h +++ b/usr.bin/make/pathnames.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)pathnames.h 5.2 (Berkeley) 6/1/90 - * $Id: pathnames.h,v 1.7 1997/02/22 19:27:20 peter Exp $ + * $FreeBSD$ */ #ifndef _PATH_OBJDIR diff --git a/usr.bin/make/sprite.h b/usr.bin/make/sprite.h index ca55509e22e6..ee20057f43bb 100644 --- a/usr.bin/make/sprite.h +++ b/usr.bin/make/sprite.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)sprite.h 8.1 (Berkeley) 6/6/93 - * $Id: sprite.h,v 1.7 1997/02/22 19:27:21 peter Exp $ + * $FreeBSD$ */ /* diff --git a/usr.bin/make/str.c b/usr.bin/make/str.c index 7d17dd621ea4..524d9001aa95 100644 --- a/usr.bin/make/str.c +++ b/usr.bin/make/str.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: str.c,v 1.9 1997/02/22 19:27:23 peter Exp $ + * $FreeBSD$ */ #ifndef lint @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)str.c 5.8 (Berkeley) 6/1/90"; #else static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/make/suff.c b/usr.bin/make/suff.c index 898cc9e1bdf8..0bec455ead4e 100644 --- a/usr.bin/make/suff.c +++ b/usr.bin/make/suff.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: suff.c,v 1.9 1998/04/26 09:44:48 phk Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 21aaa64dbe31..04ab41889195 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: targ.c,v 1.7 1997/02/22 19:27:24 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/make/util.c b/usr.bin/make/util.c index 62b0e79dab60..174954eb445a 100644 --- a/usr.bin/make/util.c +++ b/usr.bin/make/util.c @@ -3,7 +3,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/make/var.c b/usr.bin/make/var.c index 2f29567b4e50..f9ae2b126d06 100644 --- a/usr.bin/make/var.c +++ b/usr.bin/make/var.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: var.c,v 1.13 1999/07/31 20:53:02 hoek Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/mesg/mesg.1 b/usr.bin/mesg/mesg.1 index 2dce0b1651f9..7bdf0fd17246 100644 --- a/usr.bin/mesg/mesg.1 +++ b/usr.bin/mesg/mesg.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mesg.1 8.1 (Berkeley) 6/6/93 -.\" $Id: mesg.1,v 1.5 1997/03/29 20:01:59 mpp Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt MESG 1 diff --git a/usr.bin/mesg/mesg.c b/usr.bin/mesg/mesg.c index 5faffa4a7ef2..4e5878b2a1ae 100644 --- a/usr.bin/mesg/mesg.c +++ b/usr.bin/mesg/mesg.c @@ -47,7 +47,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mesg.c 8.2 (Berkeley) 1/21/94"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/minigzip/Makefile b/usr.bin/minigzip/Makefile index 4d7fff388e33..edc5d85e81c7 100644 --- a/usr.bin/minigzip/Makefile +++ b/usr.bin/minigzip/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1997/12/13 09:57:48 msmith Exp $ +# $FreeBSD$ PROG= minigzip LDADD+= -lz diff --git a/usr.bin/minigzip/minigzip.1 b/usr.bin/minigzip/minigzip.1 index 7ace82cbf4e5..48a60ea11324 100644 --- a/usr.bin/minigzip/minigzip.1 +++ b/usr.bin/minigzip/minigzip.1 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: minigzip.1,v 1.1.1.1 1997/12/13 09:57:48 msmith Exp $ +.\" $FreeBSD$ .\" .Dd December 13, 1997 .Dt MINIGZIP 1 diff --git a/usr.bin/mk_cmds/Makefile b/usr.bin/mk_cmds/Makefile index 8cc838403d60..5286e0126add 100644 --- a/usr.bin/mk_cmds/Makefile +++ b/usr.bin/mk_cmds/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/05/04 20:09:03 bde Exp $ +# $FreeBSD$ PROG= mk_cmds SRCS= mk_cmds.c options.c utils.c ct.y cmd_tbl.l y.tab.h diff --git a/usr.bin/mkdep/mkdep.1 b/usr.bin/mkdep/mkdep.1 index f19fbc87c61a..9165a0e2a6f4 100644 --- a/usr.bin/mkdep/mkdep.1 +++ b/usr.bin/mkdep/mkdep.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mkdep.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt MKDEP 1 diff --git a/usr.bin/mkdep/mkdep.gcc.sh b/usr.bin/mkdep/mkdep.gcc.sh index ff4e2f360131..ec00dcfbdf92 100644 --- a/usr.bin/mkdep/mkdep.gcc.sh +++ b/usr.bin/mkdep/mkdep.gcc.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)mkdep.gcc.sh 8.1 (Berkeley) 6/6/93 -# $Id: mkdep.gcc.sh,v 1.14 1998/08/24 10:16:39 cracauer Exp $ +# $FreeBSD$ D=.depend # default dependency file is .depend append=0 diff --git a/usr.bin/mkfifo/mkfifo.1 b/usr.bin/mkfifo/mkfifo.1 index 44fe0044cb1c..a7443c57664f 100644 --- a/usr.bin/mkfifo/mkfifo.1 +++ b/usr.bin/mkfifo/mkfifo.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mkfifo.1 8.2 (Berkeley) 1/5/94 -.\" $Id: mkfifo.1,v 1.4 1997/04/27 08:45:45 jmg Exp $ +.\" $FreeBSD$ .\" .Dd January 5, 1994 .Dt MKFIFO 1 diff --git a/usr.bin/mkfifo/mkfifo.c b/usr.bin/mkfifo/mkfifo.c index 270951a5d0d7..7f97a13566ba 100644 --- a/usr.bin/mkfifo/mkfifo.c +++ b/usr.bin/mkfifo/mkfifo.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mkfifo.c 8.2 (Berkeley) 1/5/94"; #endif static const char rcsid[] = - "$Id: mkfifo.c,v 1.3 1997/07/24 07:02:55 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/mklocale/Makefile b/usr.bin/mklocale/Makefile index 41933a9c1a5d..955c8c2fe961 100644 --- a/usr.bin/mklocale/Makefile +++ b/usr.bin/mklocale/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/7/93 -# $Id: Makefile,v 1.18 1998/05/04 20:09:03 bde Exp $ +# $FreeBSD$ PROG= mklocale SRCS= yacc.y lex.l y.tab.h diff --git a/usr.bin/mklocale/data/Makefile b/usr.bin/mklocale/data/Makefile index 2ef612c9f74d..1c446a9ca13b 100644 --- a/usr.bin/mklocale/data/Makefile +++ b/usr.bin/mklocale/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1999/06/05 03:04:00 julian Exp $ +# $FreeBSD$ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} diff --git a/usr.bin/mklocale/data/lt_LN.ISO_8859-2.src b/usr.bin/mklocale/data/lt_LN.ISO_8859-2.src index 3f9ad913e06a..a9fa03fc89e5 100644 --- a/usr.bin/mklocale/data/lt_LN.ISO_8859-2.src +++ b/usr.bin/mklocale/data/lt_LN.ISO_8859-2.src @@ -1,7 +1,7 @@ /* * LOCALE_CTYPE for the iso_8859_2 Locale * - * $Id$ + * $FreeBSD$ */ ENCODING "NONE" diff --git a/usr.bin/mklocale/data/zh_CN.EUC.src b/usr.bin/mklocale/data/zh_CN.EUC.src index 1680f3cc1998..b298ef5de562 100644 --- a/usr.bin/mklocale/data/zh_CN.EUC.src +++ b/usr.bin/mklocale/data/zh_CN.EUC.src @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zh_CN.EUC.src,v 1.1 1998/08/10 09:49:42 phk Exp $ + * $FreeBSD$ */ ENCODING "EUC" diff --git a/usr.bin/mklocale/mklocale.1 b/usr.bin/mklocale/mklocale.1 index 842b434db494..34ec49f24ab5 100644 --- a/usr.bin/mklocale/mklocale.1 +++ b/usr.bin/mklocale/mklocale.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mklocale.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt MKLOCALE 1 diff --git a/usr.bin/mkstr/mkstr.1 b/usr.bin/mkstr/mkstr.1 index 00d981389a2e..9486c8c4bf73 100644 --- a/usr.bin/mkstr/mkstr.1 +++ b/usr.bin/mkstr/mkstr.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mkstr.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt MKSTR 1 diff --git a/usr.bin/mkstr/mkstr.c b/usr.bin/mkstr/mkstr.c index 588af2c20760..a0db88949595 100644 --- a/usr.bin/mkstr/mkstr.c +++ b/usr.bin/mkstr/mkstr.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mkstr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: mkstr.c,v 1.2 1997/07/24 07:05:02 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/mktemp/mktemp.1 b/usr.bin/mktemp/mktemp.1 index 25e8b4ff731f..1e5eff0c3758 100644 --- a/usr.bin/mktemp/mktemp.1 +++ b/usr.bin/mktemp/mktemp.1 @@ -32,7 +32,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd November, 20, 1996 .Dt MKTEMP 1 diff --git a/usr.bin/more/Makefile b/usr.bin/more/Makefile index e63efcf6009e..79048432118c 100644 --- a/usr.bin/more/Makefile +++ b/usr.bin/more/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= more CFLAGS+=-I${.CURDIR} -DTERMIOS diff --git a/usr.bin/more/command.c b/usr.bin/more/command.c index ba6430ad99db..0a400d881bc6 100644 --- a/usr.bin/more/command.c +++ b/usr.bin/more/command.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)command.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id: command.c,v 1.12 1999/06/01 20:02:31 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/more/decode.c b/usr.bin/more/decode.c index 2d490fae5605..4a3315275946 100644 --- a/usr.bin/more/decode.c +++ b/usr.bin/more/decode.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)decode.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id: decode.c,v 1.2 1999/05/30 18:06:53 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/input.c b/usr.bin/more/input.c index b22c3d9fd2a3..50e2031724ab 100644 --- a/usr.bin/more/input.c +++ b/usr.bin/more/input.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/less.h b/usr.bin/more/less.h index deb7ec50620d..e17ec4038210 100644 --- a/usr.bin/more/less.h +++ b/usr.bin/more/less.h @@ -33,7 +33,7 @@ * * @(#)less.h 8.1 (Berkeley) 6/6/93 * - * $Id: less.h,v 1.3 1999/05/30 18:06:55 hoek Exp $ + * $FreeBSD$ */ #define NULL_POSITION ((off_t)(-1)) diff --git a/usr.bin/more/line.c b/usr.bin/more/line.c index 88178bb76a2b..6b980739b1dc 100644 --- a/usr.bin/more/line.c +++ b/usr.bin/more/line.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)line.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/main.c b/usr.bin/more/main.c index 52e81bf10391..f7159eaafbb8 100644 --- a/usr.bin/more/main.c +++ b/usr.bin/more/main.c @@ -45,7 +45,7 @@ static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/7/93"; #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.11 1999/05/30 18:06:56 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/more.1 b/usr.bin/more/more.1 index c31a7c1f43c8..09bd03066c89 100644 --- a/usr.bin/more/more.1 +++ b/usr.bin/more/more.1 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)more.1 8.2 (Berkeley) 4/18/94 -.\" $Id: more.1,v 1.11 1999/07/12 20:23:47 nik Exp $ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt MORE 1 diff --git a/usr.bin/more/option.c b/usr.bin/more/option.c index 79fd849e2a36..53f332b9e6ce 100644 --- a/usr.bin/more/option.c +++ b/usr.bin/more/option.c @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)option.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: option.c,v 1.4 1998/07/25 05:56:49 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/more/output.c b/usr.bin/more/output.c index 862dbc22a4b5..337a294e6b9a 100644 --- a/usr.bin/more/output.c +++ b/usr.bin/more/output.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)output.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id: output.c,v 1.9 1999/05/30 18:06:56 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/prim.c b/usr.bin/more/prim.c index bb815672e51f..03fcad8d408e 100644 --- a/usr.bin/more/prim.c +++ b/usr.bin/more/prim.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)prim.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/more/tags.c b/usr.bin/more/tags.c index c48c99fc3891..1014d48494b7 100644 --- a/usr.bin/more/tags.c +++ b/usr.bin/more/tags.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)tags.c 8.1 (Berkeley) 6/6/93"; #ifndef lint static const char rcsid[] = - "$Id: tags.c,v 1.5 1999/06/04 19:35:22 hoek Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/msgs/Makefile b/usr.bin/msgs/Makefile index 8613f79cb5ea..21cb15155568 100644 --- a/usr.bin/msgs/Makefile +++ b/usr.bin/msgs/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= msgs DPADD= ${LIBTERMCAP} diff --git a/usr.bin/msgs/msgs.1 b/usr.bin/msgs/msgs.1 index 2efddec4372e..3139f00dc943 100644 --- a/usr.bin/msgs/msgs.1 +++ b/usr.bin/msgs/msgs.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)msgs.1 8.2 (Berkeley) 4/28/95 -.\" $Id: msgs.1,v 1.6 1999/07/12 20:23:47 nik Exp $ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt MSGS 1 diff --git a/usr.bin/msgs/msgs.c b/usr.bin/msgs/msgs.c index ff09c9e07248..17536400f468 100644 --- a/usr.bin/msgs/msgs.c +++ b/usr.bin/msgs/msgs.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)msgs.c 8.2 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: msgs.c,v 1.13 1998/07/14 19:07:30 ghelmer Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/mt/Makefile b/usr.bin/mt/Makefile index b09a36b6d372..0e692e92cd12 100644 --- a/usr.bin/mt/Makefile +++ b/usr.bin/mt/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= mt CFLAGS+=-I${.CURDIR}/../../sys diff --git a/usr.bin/mt/mt.1 b/usr.bin/mt/mt.1 index 9a988057e9c8..5647313b2a14 100644 --- a/usr.bin/mt/mt.1 +++ b/usr.bin/mt/mt.1 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mt.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt MT 1 diff --git a/usr.bin/mt/mt.c b/usr.bin/mt/mt.c index ff2a2d64b574..9fcb727e197a 100644 --- a/usr.bin/mt/mt.c +++ b/usr.bin/mt/mt.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mt.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: mt.c,v 1.24 1999/03/10 18:42:20 mjacob Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/ncal/Makefile b/usr.bin/ncal/Makefile index 7d0212cbd0fe..569453240d60 100644 --- a/usr.bin/ncal/Makefile +++ b/usr.bin/ncal/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= ncal SRCS= ncal.c diff --git a/usr.bin/ncal/ncal.1 b/usr.bin/ncal/ncal.1 index 635cc926ea33..5636440d0e56 100644 --- a/usr.bin/ncal/ncal.1 +++ b/usr.bin/ncal/ncal.1 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: ncal.1,v 1.6 1998/03/23 07:45:08 charnier Exp $ +.\" $FreeBSD$ .\" .Dd December 16, 1997 .Dt CAL 1 diff --git a/usr.bin/ncal/ncal.c b/usr.bin/ncal/ncal.c index 03f48a93b06a..5feac67afa9a 100644 --- a/usr.bin/ncal/ncal.c +++ b/usr.bin/ncal/ncal.c @@ -26,7 +26,7 @@ #ifndef lint static const char rcsid[] = - "$Id: ncal.c,v 1.7 1999/03/27 21:08:13 helbig Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/atalk.c b/usr.bin/netstat/atalk.c index 90ed87dbe5cd..f0a72e48eae1 100644 --- a/usr.bin/netstat/atalk.c +++ b/usr.bin/netstat/atalk.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)atalk.c 1.1 (Whistle) 6/6/96"; */ static const char rcsid[] = - "$Id: atalk.c,v 1.10 1997/07/29 06:51:39 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c index 26191f8b82a8..61ad2b6cd30b 100644 --- a/usr.bin/netstat/if.c +++ b/usr.bin/netstat/if.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)if.c 8.3 (Berkeley) 4/28/95"; */ static const char rcsid[] = - "$Id: if.c,v 1.25 1999/04/20 22:04:31 billf Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 08777aa20e91..826afccce4ee 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95"; */ static const char rcsid[] = - "$Id: inet.c,v 1.31 1999/03/10 17:25:42 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/ipx.c b/usr.bin/netstat/ipx.c index 215cbd0309b0..3495adaadf5d 100644 --- a/usr.bin/netstat/ipx.c +++ b/usr.bin/netstat/ipx.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ns.c 8.1 (Berkeley) 6/6/93"; */ static const char rcsid[] = - "$Id: ipx.c,v 1.9 1997/07/29 06:51:39 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 0f3072ef3bd9..f3c956387b50 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -42,7 +42,7 @@ char const copyright[] = static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 3/1/94"; #endif static const char rcsid[] = - "$Id: main.c,v 1.25 1999/04/26 16:11:48 luigi Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c index 76e001fdc827..921b31ac7bee 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mbuf.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: mbuf.c,v 1.14 1998/08/23 15:23:11 gpalmer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/netstat.1 b/usr.bin/netstat/netstat.1 index 22b3a5d0619d..6a77a482af28 100644 --- a/usr.bin/netstat/netstat.1 +++ b/usr.bin/netstat/netstat.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)netstat.1 8.8 (Berkeley) 4/18/94 -.\" $Id: netstat.1,v 1.13 1999/07/12 20:23:49 nik Exp $ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt NETSTAT 1 diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index 24b5a9b4e1ab..129337bfbcae 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -36,7 +36,7 @@ static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: route.c,v 1.32 1998/07/06 20:52:08 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c index 195588e2c1aa..345e28a4ee41 100644 --- a/usr.bin/netstat/unix.c +++ b/usr.bin/netstat/unix.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)unix.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unix.c,v 1.10 1998/08/08 08:13:04 phk Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/newkey/Makefile b/usr.bin/newkey/Makefile index e976b9a5bb9f..75f369face5a 100644 --- a/usr.bin/newkey/Makefile +++ b/usr.bin/newkey/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1997/05/28 15:52:07 wpaul Exp $ +# $FreeBSD$ PROG= newkey SRCS= newkey.c update.c generic.c diff --git a/usr.bin/newkey/generic.c b/usr.bin/newkey/generic.c index 2c3ec1e8cbe1..4067867d6598 100644 --- a/usr.bin/newkey/generic.c +++ b/usr.bin/newkey/generic.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)generic.c 1.2 91/03/11 Copyr 1986 Sun Micro"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/newkey/newkey.8 b/usr.bin/newkey/newkey.8 index ad9f990ad07e..d17c9594a69e 100644 --- a/usr.bin/newkey/newkey.8 +++ b/usr.bin/newkey/newkey.8 @@ -1,5 +1,5 @@ .\" @(#)newkey.8 1.3 91/03/11 TIRPC 1.0; from 1.12 90/02/03 SMI; -.\" $Id$ +.\" $FreeBSD$ .Dd October 12, 1987 .Dt NEWKEY 8 .Os diff --git a/usr.bin/newkey/newkey.c b/usr.bin/newkey/newkey.c index dcf14ecab28e..141614ee088d 100644 --- a/usr.bin/newkey/newkey.c +++ b/usr.bin/newkey/newkey.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)newkey.c 1.8 91/03/11 Copyr 1986 Sun Micro"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/newkey/update.c b/usr.bin/newkey/update.c index 609977a593df..2f1c53fab9ae 100644 --- a/usr.bin/newkey/update.c +++ b/usr.bin/newkey/update.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)update.c 1.2 91/03/11 Copyr 1986 Sun Micro"; #endif static const char rcsid[] = - "$Id: update.c,v 1.3 1998/02/20 04:38:20 jb Exp $"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/nfsstat/nfsstat.1 b/usr.bin/nfsstat/nfsstat.1 index 4d29692de52d..94f36d750187 100644 --- a/usr.bin/nfsstat/nfsstat.1 +++ b/usr.bin/nfsstat/nfsstat.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)nfsstat.1 8.1 (Berkeley) 6/6/93 -.\" $Id: nfsstat.1,v 1.6 1997/02/22 19:56:24 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt NFSSTAT 1 diff --git a/usr.bin/nfsstat/nfsstat.c b/usr.bin/nfsstat/nfsstat.c index 3ba45c9cc0c0..f68f6216c3e5 100644 --- a/usr.bin/nfsstat/nfsstat.c +++ b/usr.bin/nfsstat/nfsstat.c @@ -45,7 +45,7 @@ static char copyright[] = static char sccsid[] = "@(#)nfsstat.c 8.2 (Berkeley) 3/31/95"; #endif static const char rcsid[] = - "$Id: nfsstat.c,v 1.11 1998/10/24 19:36:52 msmith Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/nice/nice.1 b/usr.bin/nice/nice.1 index 010a3458f493..2531a9ca4aaf 100644 --- a/usr.bin/nice/nice.1 +++ b/usr.bin/nice/nice.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)nice.1 8.1 (Berkeley) 6/6/93 -.\" $Id: nice.1,v 1.8 1999/06/25 20:54:28 billf Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt NICE 1 diff --git a/usr.bin/nm/nm.1 b/usr.bin/nm/nm.1 index a1f8b3c462fa..d6a52d22b42e 100644 --- a/usr.bin/nm/nm.1 +++ b/usr.bin/nm/nm.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)nm.1 8.1 (Berkeley) 6/6/93 -.\" $Id: nm.1,v 1.7 1997/02/22 19:56:28 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt NM 1 diff --git a/usr.bin/nm/nm.1aout b/usr.bin/nm/nm.1aout index a1f8b3c462fa..d6a52d22b42e 100644 --- a/usr.bin/nm/nm.1aout +++ b/usr.bin/nm/nm.1aout @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)nm.1 8.1 (Berkeley) 6/6/93 -.\" $Id: nm.1,v 1.7 1997/02/22 19:56:28 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt NM 1 diff --git a/usr.bin/nm/nm.c b/usr.bin/nm/nm.c index 1e6cbc5d6de6..91665b229a51 100644 --- a/usr.bin/nm/nm.c +++ b/usr.bin/nm/nm.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)nm.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: nm.c,v 1.11 1997/07/31 06:53:36 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/nohup/nohup.1 b/usr.bin/nohup/nohup.1 index 780cd7ba823c..1fcc7efd3a21 100644 --- a/usr.bin/nohup/nohup.1 +++ b/usr.bin/nohup/nohup.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)nohup.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt NOHUP 1 diff --git a/usr.bin/nohup/nohup.c b/usr.bin/nohup/nohup.c index 3455c7cb797e..8992997b6cfd 100644 --- a/usr.bin/nohup/nohup.c +++ b/usr.bin/nohup/nohup.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)nohup.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: nohup.c,v 1.2 1997/07/31 06:54:45 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/objformat/objformat.1 b/usr.bin/objformat/objformat.1 index 28cb408bb2cd..9fde70c17d69 100644 --- a/usr.bin/objformat/objformat.1 +++ b/usr.bin/objformat/objformat.1 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: objformat.1,v 1.1 1998/10/25 13:25:42 obrien Exp $ +.\" $FreeBSD$ .\" .Dd October 25, 1998 .Os diff --git a/usr.bin/opieinfo/Makefile b/usr.bin/opieinfo/Makefile index 1e3f9778feb3..7f7241dc5e72 100644 --- a/usr.bin/opieinfo/Makefile +++ b/usr.bin/opieinfo/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ # OPIE_DIST?= ${.CURDIR}/../../contrib/opie diff --git a/usr.bin/opiekey/Makefile b/usr.bin/opiekey/Makefile index de04e8daa6e0..6c43636ad57b 100644 --- a/usr.bin/opiekey/Makefile +++ b/usr.bin/opiekey/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ # OPIE_DIST?= ${.CURDIR}/../../contrib/opie diff --git a/usr.bin/opiepasswd/Makefile b/usr.bin/opiepasswd/Makefile index bb52c8229bcd..7fc70ffbf5e7 100644 --- a/usr.bin/opiepasswd/Makefile +++ b/usr.bin/opiepasswd/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ # OPIE_DIST?= ${.CURDIR}/../../contrib/opie diff --git a/usr.bin/pagesize/pagesize.1 b/usr.bin/pagesize/pagesize.1 index d89cd9a33d8e..aac371d04db0 100644 --- a/usr.bin/pagesize/pagesize.1 +++ b/usr.bin/pagesize/pagesize.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)pagesize.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt PAGESIZE 1 diff --git a/usr.bin/pagesize/pagesize.sh b/usr.bin/pagesize/pagesize.sh index 4c7aeea75e08..fd5477b3222b 100644 --- a/usr.bin/pagesize/pagesize.sh +++ b/usr.bin/pagesize/pagesize.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # @(#)pagesize.sh 8.1 (Berkeley) 4/3/94 -# $Id$ +# $FreeBSD$ # PATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile index d376bff0a3e7..9ac3f0dab724 100644 --- a/usr.bin/passwd/Makefile +++ b/usr.bin/passwd/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 4/2/94 -# $Id: Makefile,v 1.31 1999/02/14 13:56:15 des Exp $ +# $FreeBSD$ PROG= passwd SRCS= local_passwd.c passwd.c pw_copy.c pw_util.c pw_yp.c \ diff --git a/usr.bin/passwd/extern.h b/usr.bin/passwd/extern.h index 7a4bd127c98d..287646c6a380 100644 --- a/usr.bin/passwd/extern.h +++ b/usr.bin/passwd/extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)extern.h 8.1 (Berkeley) 4/2/94 - * $Id$ + * $FreeBSD$ */ int krb_passwd __P((char *, char *, char *, char *)); diff --git a/usr.bin/passwd/local_passwd.c b/usr.bin/passwd/local_passwd.c index 339d5e31be09..07e1d183d440 100644 --- a/usr.bin/passwd/local_passwd.c +++ b/usr.bin/passwd/local_passwd.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/passwd/passwd.1 b/usr.bin/passwd/passwd.1 index 140c203d16e4..8019c759b8d9 100644 --- a/usr.bin/passwd/passwd.1 +++ b/usr.bin/passwd/passwd.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)passwd.1 8.1 (Berkeley) 6/6/93 -.\" $Id: passwd.1,v 1.14 1999/04/30 18:19:42 hoek Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt PASSWD 1 diff --git a/usr.bin/passwd/passwd.c b/usr.bin/passwd/passwd.c index 19a18309ace9..e69864a0dedb 100644 --- a/usr.bin/passwd/passwd.c +++ b/usr.bin/passwd/passwd.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)passwd.c 8.3 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: passwd.c,v 1.14 1998/03/23 14:14:24 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/paste/paste.1 b/usr.bin/paste/paste.1 index 7b97915e509e..77253ffafbbd 100644 --- a/usr.bin/paste/paste.1 +++ b/usr.bin/paste/paste.1 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)paste.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt PASTE 1 diff --git a/usr.bin/paste/paste.c b/usr.bin/paste/paste.c index 7e14a56b7799..a1971199b49c 100644 --- a/usr.bin/paste/paste.c +++ b/usr.bin/paste/paste.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)paste.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: paste.c,v 1.4 1997/08/05 03:40:04 asami Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/pr/pr.1 b/usr.bin/pr/pr.1 index 74d6d7c8f454..d6afef327138 100644 --- a/usr.bin/pr/pr.1 +++ b/usr.bin/pr/pr.1 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)pr.1 8.3 (Berkeley) 4/18/94 -.\" $Id: pr.1,v 1.4 1997/02/22 19:56:37 peter Exp $ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt PR 1 diff --git a/usr.bin/printenv/printenv.1 b/usr.bin/printenv/printenv.1 index d3f8a145d4e0..18f76ee93e89 100644 --- a/usr.bin/printenv/printenv.1 +++ b/usr.bin/printenv/printenv.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)printenv.1 8.1 (Berkeley) 6/6/93 -.\" $Id: printenv.1,v 1.3 1999/07/12 20:23:52 nik Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt PRINTENV 1 diff --git a/usr.bin/printf/printf.1 b/usr.bin/printf/printf.1 index e84aa2de1bf9..665d28fe3dd8 100644 --- a/usr.bin/printf/printf.1 +++ b/usr.bin/printf/printf.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)printf.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt PRINTF 1 diff --git a/usr.bin/quota/quota.1 b/usr.bin/quota/quota.1 index c9bdb10412ad..7d1a471e98bd 100644 --- a/usr.bin/quota/quota.1 +++ b/usr.bin/quota/quota.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)quota.1 8.1 (Berkeley) 6/6/93 -.\" $Id: quota.1,v 1.5 1997/02/22 19:56:38 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt QUOTA 1 diff --git a/usr.bin/quota/quota.c b/usr.bin/quota/quota.c index c9a15eebb473..246922df88b5 100644 --- a/usr.bin/quota/quota.c +++ b/usr.bin/quota/quota.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: quota.c,v 1.9 1998/06/09 04:30:54 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/ranlib/Makefile b/usr.bin/ranlib/Makefile index 60ba526cff88..8148e57c2bac 100644 --- a/usr.bin/ranlib/Makefile +++ b/usr.bin/ranlib/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= ranlib SRCS= archive.c build.c misc.c ranlib.c touch.c diff --git a/usr.bin/ranlib/build.c b/usr.bin/ranlib/build.c index eedb7215d08d..b4d8bc69a8ee 100644 --- a/usr.bin/ranlib/build.c +++ b/usr.bin/ranlib/build.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)build.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ranlib/misc.c b/usr.bin/ranlib/misc.c index 97e970de1140..19b4854cbfa7 100644 --- a/usr.bin/ranlib/misc.c +++ b/usr.bin/ranlib/misc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ranlib/ranlib.1 b/usr.bin/ranlib/ranlib.1 index 2d37924b7668..d57cf9836a42 100644 --- a/usr.bin/ranlib/ranlib.1 +++ b/usr.bin/ranlib/ranlib.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ranlib.1 8.1 (Berkeley) 6/6/93 -.\" $Id: ranlib.1,v 1.5 1997/02/22 19:56:39 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RANLIB 1 diff --git a/usr.bin/ranlib/ranlib.1aout b/usr.bin/ranlib/ranlib.1aout index 2d37924b7668..d57cf9836a42 100644 --- a/usr.bin/ranlib/ranlib.1aout +++ b/usr.bin/ranlib/ranlib.1aout @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ranlib.1 8.1 (Berkeley) 6/6/93 -.\" $Id: ranlib.1,v 1.5 1997/02/22 19:56:39 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RANLIB 1 diff --git a/usr.bin/ranlib/ranlib.5 b/usr.bin/ranlib/ranlib.5 index 8f7ec14d122e..668ef88c30da 100644 --- a/usr.bin/ranlib/ranlib.5 +++ b/usr.bin/ranlib/ranlib.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ranlib.5.5 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RANLIB 5 diff --git a/usr.bin/ranlib/ranlib.c b/usr.bin/ranlib/ranlib.c index 0b60eb1c68cc..40263318e6a6 100644 --- a/usr.bin/ranlib/ranlib.c +++ b/usr.bin/ranlib/ranlib.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)ranlib.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ranlib/touch.c b/usr.bin/ranlib/touch.c index bfb10f727616..b062e087c4fe 100644 --- a/usr.bin/ranlib/touch.c +++ b/usr.bin/ranlib/touch.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)touch.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: touch.c,v 1.4 1997/08/04 06:48:25 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/rdist/Makefile b/usr.bin/rdist/Makefile index 9aae11958470..ea47411d40a7 100644 --- a/usr.bin/rdist/Makefile +++ b/usr.bin/rdist/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.3 (Berkeley) 7/19/93 -# $Id$ +# $FreeBSD$ PROG= rdist SRCS= docmd.c expand.c gram.y lookup.c main.c rshrcmd.c server.c diff --git a/usr.bin/rdist/docmd.c b/usr.bin/rdist/docmd.c index 2da37c6efd01..7ea9a8c1103a 100644 --- a/usr.bin/rdist/docmd.c +++ b/usr.bin/rdist/docmd.c @@ -36,7 +36,7 @@ static char sccsid[] = "From: @(#)docmd.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/expand.c b/usr.bin/rdist/expand.c index 83178d00aec2..d5f7ed4fd8a5 100644 --- a/usr.bin/rdist/expand.c +++ b/usr.bin/rdist/expand.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: expand.c,v 1.6 1998/04/06 06:18:20 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/gram.y b/usr.bin/rdist/gram.y index 4040f948a207..bd77901726d6 100644 --- a/usr.bin/rdist/gram.y +++ b/usr.bin/rdist/gram.y @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)gram.y 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/lookup.c b/usr.bin/rdist/lookup.c index acf4bae4fc54..b97ce3f5bf71 100644 --- a/usr.bin/rdist/lookup.c +++ b/usr.bin/rdist/lookup.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)lookup.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: lookup.c,v 1.4 1998/04/06 06:18:25 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/main.c b/usr.bin/rdist/main.c index c6ab940e9b8b..d4d94a2219b6 100644 --- a/usr.bin/rdist/main.c +++ b/usr.bin/rdist/main.c @@ -39,7 +39,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.3 1997/08/05 06:41:26 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/rdist.1 b/usr.bin/rdist/rdist.1 index b66b5aca2545..9e265b00130f 100644 --- a/usr.bin/rdist/rdist.1 +++ b/usr.bin/rdist/rdist.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rdist.1 8.3 (Berkeley) 3/17/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 17, 1994 .Dt RDIST 1 diff --git a/usr.bin/rdist/rshrcmd.c b/usr.bin/rdist/rshrcmd.c index 306ef05fe6f8..c747cc6cf5ea 100644 --- a/usr.bin/rdist/rshrcmd.c +++ b/usr.bin/rdist/rshrcmd.c @@ -6,7 +6,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "defs.h" diff --git a/usr.bin/rdist/server.c b/usr.bin/rdist/server.c index d91d723084b5..44c2610fa114 100644 --- a/usr.bin/rdist/server.c +++ b/usr.bin/rdist/server.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)server.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: server.c,v 1.8 1998/04/20 06:20:24 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/renice/renice.8 b/usr.bin/renice/renice.8 index 1e99fceeb5ab..09ddf5bb9fbd 100644 --- a/usr.bin/renice/renice.8 +++ b/usr.bin/renice/renice.8 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)renice.8 8.1 (Berkeley) 6/9/93 -.\" $Id: renice.8,v 1.3 1999/07/12 20:23:54 nik Exp $ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt RENICE 8 diff --git a/usr.bin/renice/renice.c b/usr.bin/renice/renice.c index 5962ed1707e3..baed30a8b582 100644 --- a/usr.bin/renice/renice.c +++ b/usr.bin/renice/renice.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)renice.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/rev/rev.1 b/usr.bin/rev/rev.1 index f112ac5976f1..5f15501512b3 100644 --- a/usr.bin/rev/rev.1 +++ b/usr.bin/rev/rev.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rev.1 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt REV 1 diff --git a/usr.bin/rlogin/Makefile b/usr.bin/rlogin/Makefile index e5ca71f07b80..2f2fef112f4c 100644 --- a/usr.bin/rlogin/Makefile +++ b/usr.bin/rlogin/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 -# $Id: Makefile,v 1.12 1998/09/19 22:42:05 obrien Exp $ +# $FreeBSD$ PROG= rlogin SRCS= rlogin.c diff --git a/usr.bin/rlogin/rlogin.1 b/usr.bin/rlogin/rlogin.1 index e24234bdaab9..d95e642394cc 100644 --- a/usr.bin/rlogin/rlogin.1 +++ b/usr.bin/rlogin/rlogin.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rlogin.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RLOGIN 1 diff --git a/usr.bin/rlogin/rlogin.c b/usr.bin/rlogin/rlogin.c index fd8793b41263..0df97a34bcf0 100644 --- a/usr.bin/rlogin/rlogin.c +++ b/usr.bin/rlogin/rlogin.c @@ -40,7 +40,7 @@ static const char copyright[] = #ifndef lint static const char sccsid[] = "@(#)rlogin.c 8.1 (Berkeley) 6/6/93"; static const char rcsid[] = - "$Id: rlogin.c,v 1.19 1999/05/25 11:14:33 peter Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/rpcgen/rpc_cout.c b/usr.bin/rpcgen/rpc_cout.c index 4fc6684325c2..cf783040f807 100644 --- a/usr.bin/rpcgen/rpc_cout.c +++ b/usr.bin/rpcgen/rpc_cout.c @@ -34,7 +34,7 @@ static char sccsid[] = "@(#)rpc_cout.c 1.13 89/02/22 (C) 1987 SMI"; #endif static const char rcsid[] = - "$Id: rpc_cout.c,v 1.5 1997/08/06 06:47:39 charnier Exp $"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/rpcgen/rpc_main.c b/usr.bin/rpcgen/rpc_main.c index b6d7b2c81699..9224dbbc9832 100644 --- a/usr.bin/rpcgen/rpc_main.c +++ b/usr.bin/rpcgen/rpc_main.c @@ -35,7 +35,7 @@ static char sccsid[] = "@(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI"; #endif static const char rcsid[] = - "$Id: rpc_main.c,v 1.9 1998/03/07 05:43:59 jb Exp $"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/rpcgen/rpc_tblout.c b/usr.bin/rpcgen/rpc_tblout.c index 00b5561e7681..45282c87418c 100644 --- a/usr.bin/rpcgen/rpc_tblout.c +++ b/usr.bin/rpcgen/rpc_tblout.c @@ -34,7 +34,7 @@ static char sccsid[] = "@(#)rpc_tblout.c 1.4 89/02/22 (C) 1988 SMI"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/rpcgen/rpc_util.c b/usr.bin/rpcgen/rpc_util.c index 175cf29fb3f3..75583a586596 100644 --- a/usr.bin/rpcgen/rpc_util.c +++ b/usr.bin/rpcgen/rpc_util.c @@ -34,7 +34,7 @@ static char sccsid[] = "@(#)rpc_util.c 1.11 89/02/22 (C) 1987 SMI"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/rpcgen/rpcgen.1 b/usr.bin/rpcgen/rpcgen.1 index a4e1150d7355..7c9abed8f8b2 100644 --- a/usr.bin/rpcgen/rpcgen.1 +++ b/usr.bin/rpcgen/rpcgen.1 @@ -1,5 +1,5 @@ .\" @(#)rpcgen.1 1.35 93/06/02 SMI -.\" $Id$ +.\" $FreeBSD$ .\" Copyright 1985-1993 Sun Microsystems, Inc. .Dd March 28, 1993 .Dt RPCGEN 1 diff --git a/usr.bin/rpcinfo/Makefile b/usr.bin/rpcinfo/Makefile index f9377c6dbd1b..045c37cf1188 100644 --- a/usr.bin/rpcinfo/Makefile +++ b/usr.bin/rpcinfo/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.2 (Berkeley) 5/11/90 -# $Id$ +# $FreeBSD$ PROG= rpcinfo MAN8 = rpcinfo.8 diff --git a/usr.bin/rpcinfo/rpcinfo.8 b/usr.bin/rpcinfo/rpcinfo.8 index 1b6a1bb6dbff..e3fb914fcd09 100644 --- a/usr.bin/rpcinfo/rpcinfo.8 +++ b/usr.bin/rpcinfo/rpcinfo.8 @@ -1,5 +1,5 @@ .\" from: @(#)rpcinfo.8c 2.2 88/08/03 4.0 RPCSRC; from 1.24 88/02/25 SMI -.\" $Id: rpcinfo.8,v 1.3 1997/02/22 19:56:44 peter Exp $ +.\" $FreeBSD$ .\" .Dd December 17, 1987 .Dt RPCINFO 8 diff --git a/usr.bin/rpcinfo/rpcinfo.c b/usr.bin/rpcinfo/rpcinfo.c index 4b77f34c47b8..99089bb2f305 100644 --- a/usr.bin/rpcinfo/rpcinfo.c +++ b/usr.bin/rpcinfo/rpcinfo.c @@ -2,7 +2,7 @@ /*static char sccsid[] = "from: @(#)rpcinfo.c 1.22 87/08/12 SMI";*/ /*static char sccsid[] = "from: @(#)rpcinfo.c 2.2 88/08/11 4.0 RPCSRC";*/ static char rcsid[] = - "$Id: rpcinfo.c,v 1.7 1998/06/09 04:30:56 imp Exp $"; + "$FreeBSD$"; #endif /* diff --git a/usr.bin/rs/rs.1 b/usr.bin/rs/rs.1 index a500d3f63dd3..d21bde35448e 100644 --- a/usr.bin/rs/rs.1 +++ b/usr.bin/rs/rs.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rs.1 8.2 (Berkeley) 12/30/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt RS 1 diff --git a/usr.bin/rs/rs.c b/usr.bin/rs/rs.c index b495a8f630c2..bd7dc33dcce8 100644 --- a/usr.bin/rs/rs.c +++ b/usr.bin/rs/rs.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)rs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: rs.c,v 1.3 1997/08/07 06:42:37 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/rsh/Makefile b/usr.bin/rsh/Makefile index 5d545f94fdbd..6b102f4dc950 100644 --- a/usr.bin/rsh/Makefile +++ b/usr.bin/rsh/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 -# $Id: Makefile,v 1.8 1998/09/19 22:42:05 obrien Exp $ +# $FreeBSD$ PROG= rsh SRCS= rsh.c diff --git a/usr.bin/rsh/rsh.1 b/usr.bin/rsh/rsh.1 index 291fd099d1c6..836d830d63d8 100644 --- a/usr.bin/rsh/rsh.1 +++ b/usr.bin/rsh/rsh.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rsh.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RSH 1 diff --git a/usr.bin/rsh/rsh.c b/usr.bin/rsh/rsh.c index 13f3c2163b80..deea9d94990d 100644 --- a/usr.bin/rsh/rsh.c +++ b/usr.bin/rsh/rsh.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "From: @(#)rsh.c 8.3 (Berkeley) 4/6/94"; #endif static const char rcsid[] = - "$Id: rsh.c,v 1.16 1998/10/09 06:47:57 markm Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/rup/Makefile b/usr.bin/rup/Makefile index ab50a8a88f4c..2e67e374bfa7 100644 --- a/usr.bin/rup/Makefile +++ b/usr.bin/rup/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG= rup MAN1= rup.1 diff --git a/usr.bin/rup/rup.1 b/usr.bin/rup/rup.1 index b19041548d7b..f7e83d715d12 100644 --- a/usr.bin/rup/rup.1 +++ b/usr.bin/rup/rup.1 @@ -31,7 +31,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: rup.1,v 1.5 1997/02/22 19:56:48 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 7, 1993 .Dt RUP 1 diff --git a/usr.bin/rup/rup.c b/usr.bin/rup/rup.c index 89b6ffb3c1b8..b916e9d23440 100644 --- a/usr.bin/rup/rup.c +++ b/usr.bin/rup/rup.c @@ -33,7 +33,7 @@ #ifndef lint static const char rcsid[] = - "$Id: rup.c,v 1.9 1997/09/15 09:46:42 jkh Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ruptime/ruptime.1 b/usr.bin/ruptime/ruptime.1 index 2d8de0d22a5d..175856aa3bdb 100644 --- a/usr.bin/ruptime/ruptime.1 +++ b/usr.bin/ruptime/ruptime.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ruptime.1 8.2 (Berkeley) 4/5/94 -.\" $Id: ruptime.1,v 1.5 1999/08/14 01:04:10 chris Exp $ +.\" $FreeBSD$ .\" .Dd April 5, 1994 .Dt RUPTIME 1 diff --git a/usr.bin/ruptime/ruptime.c b/usr.bin/ruptime/ruptime.c index e075d920c5b9..ab275b901bbe 100644 --- a/usr.bin/ruptime/ruptime.c +++ b/usr.bin/ruptime/ruptime.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. */ -/* $Id: ruptime.c,v 1.10 1997/03/29 04:32:02 imp Exp $ */ +/* $FreeBSD$ */ #ifndef lint static char copyright[] = diff --git a/usr.bin/rusers/Makefile b/usr.bin/rusers/Makefile index a6b753ff4e5a..6ec50ab8ea50 100644 --- a/usr.bin/rusers/Makefile +++ b/usr.bin/rusers/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG = rusers MAN1 = rusers.1 diff --git a/usr.bin/rusers/rusers.1 b/usr.bin/rusers/rusers.1 index 424971e3b03a..05044f57816b 100644 --- a/usr.bin/rusers/rusers.1 +++ b/usr.bin/rusers/rusers.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)rusers.1 6.7 (Berkeley) 4/23/91 -.\" $Id: rusers.1,v 1.5 1997/02/22 19:56:52 peter Exp $ +.\" $FreeBSD$ .\" .Dd April 23, 1991 .Dt RUSERS 1 diff --git a/usr.bin/rusers/rusers.c b/usr.bin/rusers/rusers.c index 2ac8837aa2e4..a59abd62872d 100644 --- a/usr.bin/rusers/rusers.c +++ b/usr.bin/rusers/rusers.c @@ -33,7 +33,7 @@ #ifndef lint static const char rcsid[] = - "$Id: rusers.c,v 1.6 1997/08/08 12:12:54 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/rwall/Makefile b/usr.bin/rwall/Makefile index e81c30aafafe..33a2dcc6b634 100644 --- a/usr.bin/rwall/Makefile +++ b/usr.bin/rwall/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ PROG = rwall MAN1 = rwall.1 diff --git a/usr.bin/rwall/rwall.1 b/usr.bin/rwall/rwall.1 index d7265a05852d..abdcda5b5bbe 100644 --- a/usr.bin/rwall/rwall.1 +++ b/usr.bin/rwall/rwall.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)rwall.1 6.7 (Berkeley) 4/23/91 -.\" $Id: rwall.1,v 1.4 1997/02/22 19:56:55 peter Exp $ +.\" $FreeBSD$ .\" .Dd April 23, 1991 .Dt RWALL 1 diff --git a/usr.bin/rwall/rwall.c b/usr.bin/rwall/rwall.c index a39e478a8840..214a5a59236e 100644 --- a/usr.bin/rwall/rwall.c +++ b/usr.bin/rwall/rwall.c @@ -43,7 +43,7 @@ static const char copyright[] = static char sccsid[] = "from: @(#)wall.c 5.14 (Berkeley) 3/2/91"; #endif static const char rcsid[] = - "$Id: rwall.c,v 1.6 1997/08/08 12:18:16 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/rwho/rwho.1 b/usr.bin/rwho/rwho.1 index edd0288f4d7d..3568c2d22879 100644 --- a/usr.bin/rwho/rwho.1 +++ b/usr.bin/rwho/rwho.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rwho.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt RWHO 1 diff --git a/usr.bin/rwho/rwho.c b/usr.bin/rwho/rwho.c index 2a6a7ab483ef..c9045f1f9e2f 100644 --- a/usr.bin/rwho/rwho.c +++ b/usr.bin/rwho/rwho.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)rwho.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: rwho.c,v 1.11 1997/08/08 12:20:24 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sasc/sasc.1 b/usr.bin/sasc/sasc.1 index 325f6fd45321..cf5635ecd842 100644 --- a/usr.bin/sasc/sasc.1 +++ b/usr.bin/sasc/sasc.1 @@ -28,7 +28,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: sasc.1,v 1.6 1997/08/08 12:22:29 charnier Exp $ +.\" $FreeBSD$ .\" .Dd January 6, 1995 .Dt SASC 1 diff --git a/usr.bin/sasc/sasc.c b/usr.bin/sasc/sasc.c index e811abfd9177..3b023ea8eaa6 100644 --- a/usr.bin/sasc/sasc.c +++ b/usr.bin/sasc/sasc.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/script/script.1 b/usr.bin/script/script.1 index 277c5f7f1bcb..ac00cb1d29ad 100644 --- a/usr.bin/script/script.1 +++ b/usr.bin/script/script.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)script.1 8.1 (Berkeley) 6/6/93 -.\" $Id: script.1,v 1.5 1998/06/04 21:06:02 steve Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt SCRIPT 1 diff --git a/usr.bin/script/script.c b/usr.bin/script/script.c index c4f3e917dee1..708a59b68e61 100644 --- a/usr.bin/script/script.c +++ b/usr.bin/script/script.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)script.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: script.c,v 1.9 1998/09/19 09:45:42 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c index 1313fcaec0f0..136f56ce1197 100644 --- a/usr.bin/sed/compile.c +++ b/usr.bin/sed/compile.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)compile.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: compile.c,v 1.11 1998/12/07 05:35:54 archie Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sed/main.c b/usr.bin/sed/main.c index 353dedbc8e3d..88f4ea52b3e4 100644 --- a/usr.bin/sed/main.c +++ b/usr.bin/sed/main.c @@ -46,7 +46,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/3/94"; #endif static const char rcsid[] = - "$Id: main.c,v 1.7 1997/08/11 07:21:03 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sed/misc.c b/usr.bin/sed/misc.c index 237f67a3f50c..c9b013a8dbd9 100644 --- a/usr.bin/sed/misc.c +++ b/usr.bin/sed/misc.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index cf0edbef809d..77ef93a58d96 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94"; #endif static const char rcsid[] = - "$Id: process.c,v 1.8 1998/12/07 05:33:39 archie Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index eb20cb04710d..96d94c5dc34a 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sed.1 8.2 (Berkeley) 12/30/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt SED 1 diff --git a/usr.bin/shar/shar.1 b/usr.bin/shar/shar.1 index da59e14d98ab..795d939c58dc 100644 --- a/usr.bin/shar/shar.1 +++ b/usr.bin/shar/shar.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)shar.1 8.1 (Berkeley) 6/6/93 -.\" $Id: shar.1,v 1.5 1997/04/27 08:45:46 jmg Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt SHAR 1 diff --git a/usr.bin/showmount/showmount.8 b/usr.bin/showmount/showmount.8 index 386efa0aab57..c2aae0484399 100644 --- a/usr.bin/showmount/showmount.8 +++ b/usr.bin/showmount/showmount.8 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)showmount.8 8.3 (Berkeley) 3/29/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 29, 1995 .Dt SHOWMOUNT 8 diff --git a/usr.bin/showmount/showmount.c b/usr.bin/showmount/showmount.c index 08d7d5023f2b..ecc528d8e6ec 100644 --- a/usr.bin/showmount/showmount.c +++ b/usr.bin/showmount/showmount.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)showmount.c 8.3 (Berkeley) 3/29/95"; #endif static const char rcsid[] = - "$Id: showmount.c,v 1.6 1997/08/11 07:27:27 charnier Exp $"; + "$FreeBSD$"; #endif not lint #include diff --git a/usr.bin/size/size.1 b/usr.bin/size/size.1 index 24341dbaad1e..1cd1f9f7bec7 100644 --- a/usr.bin/size/size.1 +++ b/usr.bin/size/size.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)size.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt SIZE 1 diff --git a/usr.bin/size/size.c b/usr.bin/size/size.c index 69322d34b05d..b42e975da34a 100644 --- a/usr.bin/size/size.c +++ b/usr.bin/size/size.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)size.c 8.2 (Berkeley) 12/9/93"; #endif static const char rcsid[] = - "$Id: size.c,v 1.3 1997/08/11 07:28:19 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/sockstat/Makefile b/usr.bin/sockstat/Makefile index eafc337e1d54..a72aadfe8ba8 100644 --- a/usr.bin/sockstat/Makefile +++ b/usr.bin/sockstat/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/04/14 16:17:34 des Exp $ +# $FreeBSD$ MAINTAINER= des@freebsd.org MAN1= sockstat.1 diff --git a/usr.bin/sockstat/sockstat.1 b/usr.bin/sockstat/sockstat.1 index d009bf93dfd9..b9b810bfb2f3 100644 --- a/usr.bin/sockstat/sockstat.1 +++ b/usr.bin/sockstat/sockstat.1 @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: sockstat.1,v 1.1 1999/04/15 13:40:43 des Exp $ +.\" $FreeBSD$ .\" .Dd April 13, 1999 .Dt LSOCK 1 diff --git a/usr.bin/sockstat/sockstat.pl b/usr.bin/sockstat/sockstat.pl index 9d9261c27f1b..3c251884cb49 100644 --- a/usr.bin/sockstat/sockstat.pl +++ b/usr.bin/sockstat/sockstat.pl @@ -26,7 +26,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id: sockstat.pl,v 1.2 1999/05/01 11:31:19 des Exp $ +# $FreeBSD$ # my (%myaddr, %hisaddr); diff --git a/usr.bin/soelim/soelim.1 b/usr.bin/soelim/soelim.1 index aa5bf4d1c795..2c8c835d7c97 100644 --- a/usr.bin/soelim/soelim.1 +++ b/usr.bin/soelim/soelim.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)soelim.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt SOELIM 1 diff --git a/usr.bin/soelim/soelim.c b/usr.bin/soelim/soelim.c index 635088a0a7c5..9152a2791b44 100644 --- a/usr.bin/soelim/soelim.c +++ b/usr.bin/soelim/soelim.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)soelim.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/split/split.1 b/usr.bin/split/split.1 index 927250c26ffb..12759bf0de64 100644 --- a/usr.bin/split/split.1 +++ b/usr.bin/split/split.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)split.1 8.3 (Berkeley) 4/16/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 16, 1994 .Dt SPLIT 1 diff --git a/usr.bin/strings/strings.1 b/usr.bin/strings/strings.1 index d644237ffafe..df660b0c333f 100644 --- a/usr.bin/strings/strings.1 +++ b/usr.bin/strings/strings.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)strings.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt STRINGS 1 diff --git a/usr.bin/strings/strings.c b/usr.bin/strings/strings.c index 80011677c3f5..6a49d632035e 100644 --- a/usr.bin/strings/strings.c +++ b/usr.bin/strings/strings.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)strings.c 8.2 (Berkeley) 1/28/94"; #endif static const char rcsid[] = - "$Id: strings.c,v 1.6 1997/08/11 07:31:28 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/strip/strip.1 b/usr.bin/strip/strip.1 index de225ab4832b..e91d6d9ada33 100644 --- a/usr.bin/strip/strip.1 +++ b/usr.bin/strip/strip.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)strip.1 8.1 (Berkeley) 6/6/93 -.\" $Id: strip.1,v 1.5 1997/02/22 19:57:13 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt STRIP 1 diff --git a/usr.bin/strip/strip.1aout b/usr.bin/strip/strip.1aout index de225ab4832b..e91d6d9ada33 100644 --- a/usr.bin/strip/strip.1aout +++ b/usr.bin/strip/strip.1aout @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)strip.1 8.1 (Berkeley) 6/6/93 -.\" $Id: strip.1,v 1.5 1997/02/22 19:57:13 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt STRIP 1 diff --git a/usr.bin/strip/strip.c b/usr.bin/strip/strip.c index 7baf965d14bb..03ba76c6baac 100644 --- a/usr.bin/strip/strip.c +++ b/usr.bin/strip/strip.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)strip.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: strip.c,v 1.10 1997/03/29 04:32:36 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/su/Makefile b/usr.bin/su/Makefile index 2ffba8c85145..33064a4e089d 100644 --- a/usr.bin/su/Makefile +++ b/usr.bin/su/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 -# $Id: Makefile,v 1.22 1999/08/13 16:51:40 sheldonh Exp $ +# $FreeBSD$ PROG= su SRCS= su.c diff --git a/usr.bin/su/su.1 b/usr.bin/su/su.1 index 78ce5f15bd1b..c7a05977a351 100644 --- a/usr.bin/su/su.1 +++ b/usr.bin/su/su.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)su.1 8.2 (Berkeley) 4/18/94 -.\" $Id: su.1,v 1.14 1998/06/08 05:29:51 jkoshy Exp $ +.\" $FreeBSD$ .\" .\" this is for hilit19's braindeadness: " .Dd April 18, 1994 diff --git a/usr.bin/su/su.c b/usr.bin/su/su.c index 72ace2656633..2e5651e9bfc0 100644 --- a/usr.bin/su/su.c +++ b/usr.bin/su/su.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)su.c 8.3 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: su.c,v 1.31 1999/07/02 11:20:59 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/symorder/symorder.1 b/usr.bin/symorder/symorder.1 index 9769490e0142..51cd83b6d33e 100644 --- a/usr.bin/symorder/symorder.1 +++ b/usr.bin/symorder/symorder.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)symorder.1 6.5 (Berkeley) 4/22/91 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 22, 1991 .Dt SYMORDER 1 diff --git a/usr.bin/symorder/symorder.c b/usr.bin/symorder/symorder.c index 91302292ea1a..503c67eca60f 100644 --- a/usr.bin/symorder/symorder.c +++ b/usr.bin/symorder/symorder.c @@ -42,7 +42,7 @@ char const copyright[] = static char sccsid[] = "@(#)symorder.c 5.8 (Berkeley) 4/1/91"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/systat/cmds.c b/usr.bin/systat/cmds.c index bbdb58e6a83d..e15d7e28a50b 100644 --- a/usr.bin/systat/cmds.c +++ b/usr.bin/systat/cmds.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmds.c 8.2 (Berkeley) 4/29/95"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/cmdtab.c b/usr.bin/systat/cmdtab.c index 83b5b02476a1..ffb0259d474a 100644 --- a/usr.bin/systat/cmdtab.c +++ b/usr.bin/systat/cmdtab.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmdtab.c 8.1 (Berkeley) 6/6/93"; */ static const char rcsid[] = - "$Id: cmdtab.c,v 1.3 1997/09/25 00:37:31 wollman Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "systat.h" diff --git a/usr.bin/systat/devs.c b/usr.bin/systat/devs.c index ac13b768e118..6f9c8117063e 100644 --- a/usr.bin/systat/devs.c +++ b/usr.bin/systat/devs.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devs.c,v 1.2 1998/09/20 00:11:23 ken Exp $ + * $FreeBSD$ */ /* * Some code and ideas taken from the old disks.c. diff --git a/usr.bin/systat/devs.h b/usr.bin/systat/devs.h index ce49c40d0ab9..ec656543b91b 100644 --- a/usr.bin/systat/devs.h +++ b/usr.bin/systat/devs.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ int dsinit(int, struct statinfo *, struct statinfo *, struct statinfo *); diff --git a/usr.bin/systat/icmp.c b/usr.bin/systat/icmp.c index 458aa84edfc6..3b5b82935364 100644 --- a/usr.bin/systat/icmp.c +++ b/usr.bin/systat/icmp.c @@ -38,7 +38,7 @@ static const char rcsid[] = "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"; */ static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index 21d4424e151f..b499a8b21046 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: iostat.c,v 1.6 1998/09/15 08:16:40 gibbs Exp $ + * $FreeBSD$ */ /* * Copyright (c) 1980, 1992, 1993 diff --git a/usr.bin/systat/ip.c b/usr.bin/systat/ip.c index 4501af17791f..d54c76ddb41d 100644 --- a/usr.bin/systat/ip.c +++ b/usr.bin/systat/ip.c @@ -38,7 +38,7 @@ static const char rcsid[] = "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"; */ static const char rcsid[] = - "$Id: ip.c,v 1.1 1997/09/25 00:37:32 wollman Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/main.c b/usr.bin/systat/main.c index 44310948040e..8454682e8eba 100644 --- a/usr.bin/systat/main.c +++ b/usr.bin/systat/main.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.9 1998/07/06 22:07:58 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/mbufs.c b/usr.bin/systat/mbufs.c index 389e143e9662..f542da99e727 100644 --- a/usr.bin/systat/mbufs.c +++ b/usr.bin/systat/mbufs.c @@ -34,7 +34,7 @@ #ifndef lint static char sccsid[] = "@(#)mbufs.c 8.1 (Berkeley) 6/6/93"; static const char rcsid[] = - "$Id: mbufs.c,v 1.7 1998/06/09 04:17:21 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/mode.c b/usr.bin/systat/mode.c index 17d79b00df45..3eb85c033f1b 100644 --- a/usr.bin/systat/mode.c +++ b/usr.bin/systat/mode.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/usr.bin/systat/mode.h b/usr.bin/systat/mode.h index 586ecb1f11fd..caa6bae7e246 100644 --- a/usr.bin/systat/mode.h +++ b/usr.bin/systat/mode.h @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/usr.bin/systat/netcmds.c b/usr.bin/systat/netcmds.c index 479b33673eb0..b5d0422143a8 100644 --- a/usr.bin/systat/netcmds.c +++ b/usr.bin/systat/netcmds.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)netcmds.c 8.1 (Berkeley) 6/6/93"; */ static const char rcsid[] = - "$Id: netcmds.c,v 1.7 1997/12/04 03:44:44 steve Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/systat/netstat.c b/usr.bin/systat/netstat.c index 227f210711e5..ba53fdae58ab 100644 --- a/usr.bin/systat/netstat.c +++ b/usr.bin/systat/netstat.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)netstat.c 8.1 (Berkeley) 6/6/93"; */ static const char rcsid[] = - "$Id: netstat.c,v 1.10 1998/06/12 14:15:24 peter Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/systat/swap.c b/usr.bin/systat/swap.c index fa323b00599c..eda7b91f1207 100644 --- a/usr.bin/systat/swap.c +++ b/usr.bin/systat/swap.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)swap.c 8.3 (Berkeley) 4/29/95"; #endif static const char rcsid[] = - "$Id: swap.c,v 1.10 1999/02/06 06:43:56 dillon Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/systat/systat.1 b/usr.bin/systat/systat.1 index c39031b8074d..cbbd77b748ca 100644 --- a/usr.bin/systat/systat.1 +++ b/usr.bin/systat/systat.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)systat.1 8.2 (Berkeley) 12/30/93 -.\" $Id: systat.1,v 1.19 1999/07/30 07:44:25 des Exp $ +.\" $FreeBSD$ .\" .Dd September 9, 1997 .Dt SYSTAT 1 diff --git a/usr.bin/systat/systat.h b/usr.bin/systat/systat.h index 72f0f284fdf8..d8045d8fecff 100644 --- a/usr.bin/systat/systat.h +++ b/usr.bin/systat/systat.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)systat.h 8.1 (Berkeley) 6/6/93 - * $Id$ + * $FreeBSD$ */ #include diff --git a/usr.bin/systat/tcp.c b/usr.bin/systat/tcp.c index e0edbe1c199a..433721ec187f 100644 --- a/usr.bin/systat/tcp.c +++ b/usr.bin/systat/tcp.c @@ -38,7 +38,7 @@ static const char rcsid[] = "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"; */ static const char rcsid[] = - "$Id: tcp.c,v 1.1 1997/09/27 00:44:55 wollman Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index d3b5a68d322b..184c7e66152d 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #endif static const char rcsid[] = - "$Id: vmstat.c,v 1.35 1999/03/22 03:44:01 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tail/reverse.c b/usr.bin/tail/reverse.c index 6efe193aed32..7acf45063725 100644 --- a/usr.bin/tail/reverse.c +++ b/usr.bin/tail/reverse.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)reverse.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: reverse.c,v 1.7 1997/08/13 06:46:56 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tail/tail.1 b/usr.bin/tail/tail.1 index 39864d09c684..8ffb8b7c8683 100644 --- a/usr.bin/tail/tail.1 +++ b/usr.bin/tail/tail.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tail.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt TAIL 1 diff --git a/usr.bin/talk/Makefile b/usr.bin/talk/Makefile index 921a12e168ad..bddde1ba259f 100644 --- a/usr.bin/talk/Makefile +++ b/usr.bin/talk/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= talk DPADD= ${LIBCURSES} ${LIBTERMCAP} diff --git a/usr.bin/talk/ctl.c b/usr.bin/talk/ctl.c index f4cdcd111f4b..c8094b47c51d 100644 --- a/usr.bin/talk/ctl.c +++ b/usr.bin/talk/ctl.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ctl.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: ctl.c,v 1.4 1998/01/14 07:20:59 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/talk/ctl_transact.c b/usr.bin/talk/ctl_transact.c index 2f2d8430bbb2..fa3ebad7a5c8 100644 --- a/usr.bin/talk/ctl_transact.c +++ b/usr.bin/talk/ctl_transact.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ctl_transact.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/display.c b/usr.bin/talk/display.c index 8dbd7583d386..16c7605d447d 100644 --- a/usr.bin/talk/display.c +++ b/usr.bin/talk/display.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)display.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/talk/get_addrs.c b/usr.bin/talk/get_addrs.c index 641f80fa3237..871dc9ac786b 100644 --- a/usr.bin/talk/get_addrs.c +++ b/usr.bin/talk/get_addrs.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)get_addrs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/get_iface.c b/usr.bin/talk/get_iface.c index 1d303e8dd031..05a8368e6b1f 100644 --- a/usr.bin/talk/get_iface.c +++ b/usr.bin/talk/get_iface.c @@ -32,7 +32,7 @@ #ifndef lint static const char rcsid[] = - "$Id: get_iface.c,v 1.5 1998/01/14 07:21:03 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/get_names.c b/usr.bin/talk/get_names.c index 762f4ff83700..73e20a162bd9 100644 --- a/usr.bin/talk/get_names.c +++ b/usr.bin/talk/get_names.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)get_names.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/init_disp.c b/usr.bin/talk/init_disp.c index c5cd612a474d..b752e0aa4926 100644 --- a/usr.bin/talk/init_disp.c +++ b/usr.bin/talk/init_disp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)init_disp.c 8.2 (Berkeley) 2/16/94"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/talk/invite.c b/usr.bin/talk/invite.c index a788d43bd00d..f941c8dde78d 100644 --- a/usr.bin/talk/invite.c +++ b/usr.bin/talk/invite.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)invite.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/io.c b/usr.bin/talk/io.c index 4770d5b0c3a5..9653e1b11d7d 100644 --- a/usr.bin/talk/io.c +++ b/usr.bin/talk/io.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: io.c,v 1.6 1998/01/14 07:21:10 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/talk/look_up.c b/usr.bin/talk/look_up.c index fad2e391d2ae..3c6f3edc2765 100644 --- a/usr.bin/talk/look_up.c +++ b/usr.bin/talk/look_up.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)look_up.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/talk/msgs.c b/usr.bin/talk/msgs.c index ea9560887689..82c5038fc447 100644 --- a/usr.bin/talk/msgs.c +++ b/usr.bin/talk/msgs.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)msgs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/talk/talk.1 b/usr.bin/talk/talk.1 index 8226e9df5542..64bf639f86ce 100644 --- a/usr.bin/talk/talk.1 +++ b/usr.bin/talk/talk.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)talk.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt TALK 1 diff --git a/usr.bin/talk/talk.c b/usr.bin/talk/talk.c index 09b6c753f1ea..d71d49ae2b7d 100644 --- a/usr.bin/talk/talk.c +++ b/usr.bin/talk/talk.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)talk.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "talk.h" diff --git a/usr.bin/tconv/Makefile b/usr.bin/tconv/Makefile index 0a4af30bbe34..403397f67e4a 100644 --- a/usr.bin/tconv/Makefile +++ b/usr.bin/tconv/Makefile @@ -1,5 +1,5 @@ # Makefile for tconv -# $Id$ +# $FreeBSD$ PROG= tconv SRCS= tconv.c quit.c diff --git a/usr.bin/tconv/tconv.1 b/usr.bin/tconv/tconv.1 index 1a6d0c5bf651..2cfa9c100989 100644 --- a/usr.bin/tconv/tconv.1 +++ b/usr.bin/tconv/tconv.1 @@ -1,5 +1,5 @@ .\" @(#) mytinfo tconv.1 3.2 92/02/01 public domain, By Ross Ridge -.\" $Id: tconv.1,v 1.8 1997/08/13 06:58:44 charnier Exp $ +.\" $FreeBSD$ .\" .Dd February 1, 1992 .Dt TCONV 1 diff --git a/usr.bin/tconv/tconv.c b/usr.bin/tconv/tconv.c index 5beeb1becc53..a9d035d028d6 100644 --- a/usr.bin/tconv/tconv.c +++ b/usr.bin/tconv/tconv.c @@ -58,7 +58,7 @@ static const char SCCSid[] = "@(#) mytinfo tconv.c 3.2 92/02/01 public domain, By Ross Ridge"; static const char rcsid[] = - "$Id: tconv.c,v 1.3 1997/08/13 06:58:45 charnier Exp $"; + "$FreeBSD$"; #endif /* the right margin of the output */ diff --git a/usr.bin/tcopy/tcopy.1 b/usr.bin/tcopy/tcopy.1 index 9155207375fc..85a344eed2fa 100644 --- a/usr.bin/tcopy/tcopy.1 +++ b/usr.bin/tcopy/tcopy.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tcopy.1 8.2 (Berkeley) 4/17/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 17, 1994 .Dt TCOPY 1 diff --git a/usr.bin/tcopy/tcopy.c b/usr.bin/tcopy/tcopy.c index 3b9ffdd81a5b..18be38f28c17 100644 --- a/usr.bin/tcopy/tcopy.c +++ b/usr.bin/tcopy/tcopy.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tcopy.c 8.2 (Berkeley) 4/17/94"; #endif static const char rcsid[] = - "$Id: tcopy.c,v 1.5 1999/04/30 13:13:32 phk Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tee/tee.1 b/usr.bin/tee/tee.1 index 271afde59077..adacd0764ff5 100644 --- a/usr.bin/tee/tee.1 +++ b/usr.bin/tee/tee.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tee.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt TEE 1 diff --git a/usr.bin/tee/tee.c b/usr.bin/tee/tee.c index d844c5b00ba4..c393200780c1 100644 --- a/usr.bin/tee/tee.c +++ b/usr.bin/tee/tee.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tee.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/telnet/telnet.1 b/usr.bin/telnet/telnet.1 index 7091304b46f2..ca2e968be6fd 100644 --- a/usr.bin/telnet/telnet.1 +++ b/usr.bin/telnet/telnet.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)telnet.1 8.5 (Berkeley) 3/1/94 -.\" $Id: telnet.1,v 1.12 1999/06/17 07:12:39 ru Exp $ +.\" $FreeBSD$ .\" .Dd March 1, 1994 .Dt TELNET 1 diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c index 3c6a15116d47..4ae5dc4c11c0 100644 --- a/usr.bin/tftp/main.c +++ b/usr.bin/tftp/main.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.6 1998/06/09 04:31:02 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ diff --git a/usr.bin/tftp/tftp.1 b/usr.bin/tftp/tftp.1 index 85ab1af52151..0f87f58f39ce 100644 --- a/usr.bin/tftp/tftp.1 +++ b/usr.bin/tftp/tftp.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tftp.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt TFTP 1 diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c index ae517a486329..9dc00afeddba 100644 --- a/usr.bin/tftp/tftp.c +++ b/usr.bin/tftp/tftp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: tftp.c,v 1.3 1998/02/20 04:30:34 jb Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ diff --git a/usr.bin/tftp/tftpsubs.c b/usr.bin/tftp/tftpsubs.c index 277d561403e0..5f3549d7dcf8 100644 --- a/usr.bin/tftp/tftpsubs.c +++ b/usr.bin/tftp/tftpsubs.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)tftpsubs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* Simple minded read-ahead/write-behind subroutines for tftp user and diff --git a/usr.bin/time/time.1 b/usr.bin/time/time.1 index b2b2a50be597..4d29566bfbfa 100644 --- a/usr.bin/time/time.1 +++ b/usr.bin/time/time.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)time.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt TIME 1 diff --git a/usr.bin/time/time.c b/usr.bin/time/time.c index 1400a97e5859..960d00e27aac 100644 --- a/usr.bin/time/time.c +++ b/usr.bin/time/time.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: time.c,v 1.12 1998/10/13 14:52:32 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tip/libacu/acucommon.c b/usr.bin/tip/libacu/acucommon.c index fe0d146b1783..efb644fce7d6 100644 --- a/usr.bin/tip/libacu/acucommon.c +++ b/usr.bin/tip/libacu/acucommon.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)acucommon.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tip/libacu/unidialer.c b/usr.bin/tip/libacu/unidialer.c index bac2368c0772..0206571007a1 100644 --- a/usr.bin/tip/libacu/unidialer.c +++ b/usr.bin/tip/libacu/unidialer.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)unidialer.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unidialer.c,v 1.5 1997/08/18 07:15:41 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tip/libacu/ventel.c b/usr.bin/tip/libacu/ventel.c index a438b4252e43..08f2be588e62 100644 --- a/usr.bin/tip/libacu/ventel.c +++ b/usr.bin/tip/libacu/ventel.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ventel.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tip/tip/acu.c b/usr.bin/tip/tip/acu.c index 3f65c5547334..3ee0381f9468 100644 --- a/usr.bin/tip/tip/acu.c +++ b/usr.bin/tip/tip/acu.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)acu.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: acu.c,v 1.3 1997/08/18 07:15:58 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/acutab.c b/usr.bin/tip/tip/acutab.c index cb0dd85a1342..2d38c7d3efb8 100644 --- a/usr.bin/tip/tip/acutab.c +++ b/usr.bin/tip/tip/acutab.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)acutab.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/cmds.c b/usr.bin/tip/tip/cmds.c index c605022e87d3..f0caf1e648d8 100644 --- a/usr.bin/tip/tip/cmds.c +++ b/usr.bin/tip/tip/cmds.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmds.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: cmds.c,v 1.8 1998/10/03 11:01:39 dfr Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/cmdtab.c b/usr.bin/tip/tip/cmdtab.c index f9efc7b05dc9..3ad19e89afa8 100644 --- a/usr.bin/tip/tip/cmdtab.c +++ b/usr.bin/tip/tip/cmdtab.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmdtab.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/cu.c b/usr.bin/tip/tip/cu.c index 50955fc6a129..2b3b2ed60d42 100644 --- a/usr.bin/tip/tip/cu.c +++ b/usr.bin/tip/tip/cu.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cu.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: cu.c,v 1.2 1997/08/18 07:16:02 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/hunt.c b/usr.bin/tip/tip/hunt.c index 0f71ea97fa95..90f7a613ad70 100644 --- a/usr.bin/tip/tip/hunt.c +++ b/usr.bin/tip/tip/hunt.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)hunt.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tip/tip/log.c b/usr.bin/tip/tip/log.c index acf5d87e4cd4..20004e8aa683 100644 --- a/usr.bin/tip/tip/log.c +++ b/usr.bin/tip/tip/log.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: log.c,v 1.2 1997/08/18 07:16:03 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tip/tip/modems.5 b/usr.bin/tip/tip/modems.5 index 0e74ca2d3df1..5fd486699ed5 100644 --- a/usr.bin/tip/tip/modems.5 +++ b/usr.bin/tip/tip/modems.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)modems.5 3/24/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 24, 1995 .Dt MODEMS 5 diff --git a/usr.bin/tip/tip/partab.c b/usr.bin/tip/tip/partab.c index c49721e643f0..94b2ab195e5d 100644 --- a/usr.bin/tip/tip/partab.c +++ b/usr.bin/tip/tip/partab.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)partab.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tip/tip/remote.c b/usr.bin/tip/tip/remote.c index 9071eb62028f..2bc934389252 100644 --- a/usr.bin/tip/tip/remote.c +++ b/usr.bin/tip/tip/remote.c @@ -43,7 +43,7 @@ static const char copyright[] = static char sccsid[] = "@(#)remote.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tip/tip/tip.1 b/usr.bin/tip/tip/tip.1 index 00ebfd7f538e..dd9327fe0769 100644 --- a/usr.bin/tip/tip/tip.1 +++ b/usr.bin/tip/tip/tip.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tip.1 8.4 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt TIP 1 diff --git a/usr.bin/tip/tip/tip.c b/usr.bin/tip/tip/tip.c index 124286e6e1f4..810c9c6b123f 100644 --- a/usr.bin/tip/tip/tip.c +++ b/usr.bin/tip/tip/tip.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tip.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: tip.c,v 1.9 1998/06/09 14:51:05 imp Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tip/tip/tipout.c b/usr.bin/tip/tip/tipout.c index d9417d68602d..c9292a870a30 100644 --- a/usr.bin/tip/tip/tipout.c +++ b/usr.bin/tip/tip/tipout.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)tipout.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: tipout.c,v 1.4 1997/08/18 07:16:08 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tip.h" diff --git a/usr.bin/tip/tip/value.c b/usr.bin/tip/tip/value.c index 52bcfeba1e62..8be5cd9a0db0 100644 --- a/usr.bin/tip/tip/value.c +++ b/usr.bin/tip/tip/value.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)value.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: value.c,v 1.3 1997/08/18 07:16:12 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tip.h" diff --git a/usr.bin/tip/tip/vars.c b/usr.bin/tip/tip/vars.c index 34d604e6d0c9..6aba4993e23d 100644 --- a/usr.bin/tip/tip/vars.c +++ b/usr.bin/tip/tip/vars.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)vars.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: vars.c,v 1.2 1997/08/18 07:16:12 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "tipconf.h" diff --git a/usr.bin/tn3270/api/api_bsd.c b/usr.bin/tn3270/api/api_bsd.c index 7a884e83a12c..0e39a855b0fd 100644 --- a/usr.bin/tn3270/api/api_bsd.c +++ b/usr.bin/tn3270/api/api_bsd.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)api_bsd.c 8.2 (Berkeley) 1/7/94"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #if defined(unix) diff --git a/usr.bin/tn3270/ascii/mset.c b/usr.bin/tn3270/ascii/mset.c index a26852d27cbe..8e344930320d 100644 --- a/usr.bin/tn3270/ascii/mset.c +++ b/usr.bin/tn3270/ascii/mset.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mset.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tn3270/mset/map3270.5 b/usr.bin/tn3270/mset/map3270.5 index 40a49781328a..d9249f563191 100644 --- a/usr.bin/tn3270/mset/map3270.5 +++ b/usr.bin/tn3270/mset/map3270.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)map3270.5 8.4 (Berkeley) 6/1/94 -.\" $Id$ +.\" $FreeBSD$ .\" .TH MAP3270 5 "June 1, 1994" .UC 6 diff --git a/usr.bin/tn3270/mset/mset.1 b/usr.bin/tn3270/mset/mset.1 index 362493bd32ce..8caa8aa25aa2 100644 --- a/usr.bin/tn3270/mset/mset.1 +++ b/usr.bin/tn3270/mset/mset.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mset.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt MSET 1 diff --git a/usr.bin/tn3270/tn3270/tn3270.1 b/usr.bin/tn3270/tn3270/tn3270.1 index 41d795494ee1..d1675a782a93 100644 --- a/usr.bin/tn3270/tn3270/tn3270.1 +++ b/usr.bin/tn3270/tn3270/tn3270.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tn3270.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt TN3270 1 diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c index ee651d03ccc9..a3935021d162 100644 --- a/usr.bin/top/machine.c +++ b/usr.bin/top/machine.c @@ -19,7 +19,7 @@ * Steven Wallace * Wolfram Schneider * - * $Id: machine.c,v 1.25 1999/05/11 14:32:15 peter Exp $ + * $FreeBSD$ */ diff --git a/usr.bin/touch/touch.1 b/usr.bin/touch/touch.1 index dbb337774174..b1583f316f67 100644 --- a/usr.bin/touch/touch.1 +++ b/usr.bin/touch/touch.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)touch.1 8.3 (Berkeley) 4/28/95 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 28, 1995 .Dt TOUCH 1 diff --git a/usr.bin/tput/tput.1 b/usr.bin/tput/tput.1 index e48f9f57be90..834f49e78585 100644 --- a/usr.bin/tput/tput.1 +++ b/usr.bin/tput/tput.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tput.1 8.2 (Berkeley) 3/19/94 -.\" $Id: tput.1,v 1.3 1997/04/27 08:45:46 jmg Exp $ +.\" $FreeBSD$ .\" .Dd March 19, 1994 .Dt TPUT 1 diff --git a/usr.bin/tr/str.c b/usr.bin/tr/str.c index 55ad1bd448bc..ff27e4add3ce 100644 --- a/usr.bin/tr/str.c +++ b/usr.bin/tr/str.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)str.c 8.2 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tr/tr.1 b/usr.bin/tr/tr.1 index d38ab2a0dad6..7403dba1619b 100644 --- a/usr.bin/tr/tr.1 +++ b/usr.bin/tr/tr.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tr.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd October 11, 1997 .Dt TR 1 diff --git a/usr.bin/tr/tr.c b/usr.bin/tr/tr.c index 52ccb1a1c8c8..b842e6d3452f 100644 --- a/usr.bin/tr/tr.c +++ b/usr.bin/tr/tr.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tr.c 8.2 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: tr.c,v 1.6 1997/08/18 07:24:58 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/true/true.1 b/usr.bin/true/true.1 index c0bf4d2fade5..1eee432284c2 100644 --- a/usr.bin/true/true.1 +++ b/usr.bin/true/true.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)true.1 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt TRUE 1 diff --git a/usr.bin/truss/alpha-fbsd.c b/usr.bin/truss/alpha-fbsd.c index 09f7394de4ed..125e126da9c4 100644 --- a/usr.bin/truss/alpha-fbsd.c +++ b/usr.bin/truss/alpha-fbsd.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: alpha-fbsd.c,v 1.1 1998/10/03 00:43:05 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/amd64-fbsd32.c b/usr.bin/truss/amd64-fbsd32.c index 3096c82c2bdf..463f475cefaf 100644 --- a/usr.bin/truss/amd64-fbsd32.c +++ b/usr.bin/truss/amd64-fbsd32.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: i386-fbsd.c,v 1.5 1998/01/09 09:31:40 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/amd64-linux32.c b/usr.bin/truss/amd64-linux32.c index 2d334ba01540..ec7632b83e0d 100644 --- a/usr.bin/truss/amd64-linux32.c +++ b/usr.bin/truss/amd64-linux32.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: i386-linux.c,v 1.5 1998/01/09 09:31:42 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/i386-fbsd.c b/usr.bin/truss/i386-fbsd.c index 3096c82c2bdf..463f475cefaf 100644 --- a/usr.bin/truss/i386-fbsd.c +++ b/usr.bin/truss/i386-fbsd.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: i386-fbsd.c,v 1.5 1998/01/09 09:31:40 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/i386-linux.c b/usr.bin/truss/i386-linux.c index 2d334ba01540..ec7632b83e0d 100644 --- a/usr.bin/truss/i386-linux.c +++ b/usr.bin/truss/i386-linux.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: i386-linux.c,v 1.5 1998/01/09 09:31:42 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index b82db46c9be6..ab5c0bae20dd 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.12 1998/10/03 00:43:05 sef Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/setup.c b/usr.bin/truss/setup.c index fbef7e11a30b..afa011308e93 100644 --- a/usr.bin/truss/setup.c +++ b/usr.bin/truss/setup.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: setup.c,v 1.7 1998/01/05 07:30:25 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/truss/syscall.h b/usr.bin/truss/syscall.h index 5f3757c81ef2..2b3c66b5928c 100644 --- a/usr.bin/truss/syscall.h +++ b/usr.bin/truss/syscall.h @@ -18,7 +18,7 @@ * IN (meaning that the data is passed *into* the system call). */ /* - * $Id: syscall.h,v 1.3 1997/12/20 18:40:41 sef Exp $ + * $FreeBSD$ */ enum Argtype { None = 1, Hex, Octal, Int, String, Ptr, Stat, Ioctl, Quad, diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index 53865fddcb43..bdd087bbf50c 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: syscalls.c,v 1.7 1999/08/05 12:03:50 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/tset/map.c b/usr.bin/tset/map.c index 056f367c39bc..016afb1ff596 100644 --- a/usr.bin/tset/map.c +++ b/usr.bin/tset/map.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)map.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: map.c,v 1.4 1997/08/18 07:27:53 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tset/misc.c b/usr.bin/tset/misc.c index 1e94df18c83a..4d8d705a9a25 100644 --- a/usr.bin/tset/misc.c +++ b/usr.bin/tset/misc.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tset/set.c b/usr.bin/tset/set.c index 68fa7a2259c0..0f3081437d60 100644 --- a/usr.bin/tset/set.c +++ b/usr.bin/tset/set.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)set.c 8.2 (Berkeley) 2/28/94"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tset/term.c b/usr.bin/tset/term.c index f64b86944176..857f9b1737bf 100644 --- a/usr.bin/tset/term.c +++ b/usr.bin/tset/term.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)term.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id: term.c,v 1.2 1997/08/18 07:27:56 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tset/tset.1 b/usr.bin/tset/tset.1 index fb07cf18b999..bb0481ad9be6 100644 --- a/usr.bin/tset/tset.1 +++ b/usr.bin/tset/tset.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tset.1 8.1 (Berkeley) 6/9/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 9, 1993 .Dt TSET 1 diff --git a/usr.bin/tset/tset.c b/usr.bin/tset/tset.c index a097dcac8eef..df6b5b452d1a 100644 --- a/usr.bin/tset/tset.c +++ b/usr.bin/tset/tset.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tset.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcdif[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tset/wrterm.c b/usr.bin/tset/wrterm.c index d6274cfd1e04..8c5936898d63 100644 --- a/usr.bin/tset/wrterm.c +++ b/usr.bin/tset/wrterm.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)wrterm.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/tsort/tsort.1 b/usr.bin/tsort/tsort.1 index 8d9f25f1b294..6be1978fc06d 100644 --- a/usr.bin/tsort/tsort.1 +++ b/usr.bin/tsort/tsort.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tsort.1 8.3 (Berkeley) 4/1/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 1, 1994 .Dt TSORT 1 diff --git a/usr.bin/tsort/tsort.c b/usr.bin/tsort/tsort.c index fca46e904856..2f73a80d1fe9 100644 --- a/usr.bin/tsort/tsort.c +++ b/usr.bin/tsort/tsort.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: tsort.c,v 1.8 1997/03/29 04:33:15 imp Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/tty/tty.1 b/usr.bin/tty/tty.1 index 67f2d634b351..dbf0e777661c 100644 --- a/usr.bin/tty/tty.1 +++ b/usr.bin/tty/tty.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)tty.1 8.1 (Berkeley) 6/6/93 -.\" $Id: tty.1,v 1.4 1997/02/22 19:57:29 peter Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt TTY 1 diff --git a/usr.bin/tty/tty.c b/usr.bin/tty/tty.c index 7a7e688d8a3e..4d02fa9dccd4 100644 --- a/usr.bin/tty/tty.c +++ b/usr.bin/tty/tty.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ul/ul.1 b/usr.bin/ul/ul.1 index b84e826f8910..470fea1450a2 100644 --- a/usr.bin/ul/ul.1 +++ b/usr.bin/ul/ul.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ul.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt UL 1 diff --git a/usr.bin/ul/ul.c b/usr.bin/ul/ul.c index f6fbdf035b7e..cfdd55245690 100644 --- a/usr.bin/ul/ul.c +++ b/usr.bin/ul/ul.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)ul.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: ul.c,v 1.4 1997/08/20 11:01:59 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/uname/uname.1 b/usr.bin/uname/uname.1 index b2d1168cf79b..08f7508312e4 100644 --- a/usr.bin/uname/uname.1 +++ b/usr.bin/uname/uname.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)uname.1 8.3 (Berkeley) 4/8/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 8, 1994 .Dt UNAME 1 diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c index 4d70913d7b2d..ed05c85d73af 100644 --- a/usr.bin/unexpand/unexpand.c +++ b/usr.bin/unexpand/unexpand.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unexpand.c,v 1.3 1997/08/26 11:02:36 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/unifdef/unifdef.1 b/usr.bin/unifdef/unifdef.1 index d0509692b49a..2c06332d938e 100644 --- a/usr.bin/unifdef/unifdef.1 +++ b/usr.bin/unifdef/unifdef.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)unifdef.1 8.2 (Berkeley) 4/1/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 1, 1994 .Dt UNIFDEF 1 diff --git a/usr.bin/unifdef/unifdef.c b/usr.bin/unifdef/unifdef.c index 58b92de9ceaf..0b7344b2eb77 100644 --- a/usr.bin/unifdef/unifdef.c +++ b/usr.bin/unifdef/unifdef.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)unifdef.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unifdef.c,v 1.2 1997/08/20 11:07:53 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/uniq/uniq.1 b/usr.bin/uniq/uniq.1 index 1728369f959b..e14dd517cda1 100644 --- a/usr.bin/uniq/uniq.1 +++ b/usr.bin/uniq/uniq.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)uniq.1 8.1 (Berkeley) 6/6/93 -.\" $Id: uniq.1,v 1.3 1997/09/07 15:09:22 joerg Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt UNIQ 1 diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c index fe47d42c3175..0cc7977bbaf7 100644 --- a/usr.bin/uniq/uniq.c +++ b/usr.bin/uniq/uniq.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: uniq.c,v 1.4 1997/09/07 15:09:22 joerg Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/units/Makefile b/usr.bin/units/Makefile index 5f4f8057fd57..946132c7bb99 100644 --- a/usr.bin/units/Makefile +++ b/usr.bin/units/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 19:57:30 peter Exp $ +# $FreeBSD$ PROG= units diff --git a/usr.bin/units/README b/usr.bin/units/README index b7a173a38320..974cbe9fee3f 100644 --- a/usr.bin/units/README +++ b/usr.bin/units/README @@ -1,4 +1,4 @@ -# $Id$ +# $FreeBSD$ This is a program which I wrote as a clone of the UNIX 'units' command. I threw it together in a couple days, but it seems to work, diff --git a/usr.bin/units/pathnames.h b/usr.bin/units/pathnames.h index f41f2077f168..227dd00b4922 100644 --- a/usr.bin/units/pathnames.h +++ b/usr.bin/units/pathnames.h @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $FreeBSD$ */ /* * Copyright (c) 1993 Christopher G. Demetriou diff --git a/usr.bin/units/units.1 b/usr.bin/units/units.1 index 85f0159a51ec..f1c2de8602e7 100644 --- a/usr.bin/units/units.1 +++ b/usr.bin/units/units.1 @@ -1,4 +1,4 @@ -.\" $Id: units.1,v 1.6 1997/08/21 06:49:32 charnier Exp $ +.\" $FreeBSD$ .Dd July 14, 1993 .Dt UNITS 1 .Os diff --git a/usr.bin/units/units.c b/usr.bin/units/units.c index 3eae64b59130..7d1fd785d5b6 100644 --- a/usr.bin/units/units.c +++ b/usr.bin/units/units.c @@ -17,7 +17,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/units/units.lib b/usr.bin/units/units.lib index f02649a78c78..a2f821459881 100644 --- a/usr.bin/units/units.lib +++ b/usr.bin/units/units.lib @@ -1,4 +1,4 @@ -/ $Id: units.lib,v 1.3 1997/02/22 19:57:34 peter Exp $ +/ $FreeBSD$ / primitive units diff --git a/usr.bin/unvis/unvis.1 b/usr.bin/unvis/unvis.1 index f16c3ff60c77..a3cb608a0d9c 100644 --- a/usr.bin/unvis/unvis.1 +++ b/usr.bin/unvis/unvis.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)unvis.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt UNVIS 1 diff --git a/usr.bin/unvis/unvis.c b/usr.bin/unvis/unvis.c index 1549fd9ac249..418b74ec460b 100644 --- a/usr.bin/unvis/unvis.c +++ b/usr.bin/unvis/unvis.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unvis.c,v 1.3 1997/08/21 06:52:43 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/users/users.1 b/usr.bin/users/users.1 index 1542aa95a2c3..874960705300 100644 --- a/usr.bin/users/users.1 +++ b/usr.bin/users/users.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)users.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt USERS 1 diff --git a/usr.bin/users/users.c b/usr.bin/users/users.c index a3ab2b5ba8c9..7acb26836e40 100644 --- a/usr.bin/users/users.c +++ b/usr.bin/users/users.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)users.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: users.c,v 1.3 1997/08/22 06:50:33 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index bb01770f05b8..247e80212d1e 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)uudecode.c 8.2 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: uudecode.c,v 1.11 1998/01/25 19:25:54 wosch Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/uuencode/uuencode.1 b/usr.bin/uuencode/uuencode.1 index 784b39407f68..9616d6608974 100644 --- a/usr.bin/uuencode/uuencode.1 +++ b/usr.bin/uuencode/uuencode.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)uuencode.1 8.1 (Berkeley) 6/6/93 -.\" $Id: uuencode.1,v 1.6 1997/08/22 06:52:59 charnier Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt UUENCODE 1 diff --git a/usr.bin/uuencode/uuencode.c b/usr.bin/uuencode/uuencode.c index b10a524a1900..e8696e900d0a 100644 --- a/usr.bin/uuencode/uuencode.c +++ b/usr.bin/uuencode/uuencode.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/uuencode/uuencode.format.5 b/usr.bin/uuencode/uuencode.format.5 index 4ffc7f217a3a..10f16995c8c1 100644 --- a/usr.bin/uuencode/uuencode.format.5 +++ b/usr.bin/uuencode/uuencode.format.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)uuencode.format.5 8.2 (Berkeley) 1/12/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd January 12, 1994 .Dt UUENCODE 5 diff --git a/usr.bin/vacation/Makefile b/usr.bin/vacation/Makefile index 6fc47954892c..ee668d894e64 100644 --- a/usr.bin/vacation/Makefile +++ b/usr.bin/vacation/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ PROG= vacation CFLAGS+= -Wall diff --git a/usr.bin/vacation/vacation.1 b/usr.bin/vacation/vacation.1 index e90eef6c7411..7d2c6aee6558 100644 --- a/usr.bin/vacation/vacation.1 +++ b/usr.bin/vacation/vacation.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)vacation.1 8.1 (Berkeley) 6/16/93 -.\" $Id: vacation.1,v 1.7 1999/06/17 14:44:41 sheldonh Exp $ +.\" $FreeBSD$ .\" .Dd June 16, 1993 .Dt VACATION 1 diff --git a/usr.bin/vacation/vacation.c b/usr.bin/vacation/vacation.c index b94afe77ac80..98a2987abd3c 100644 --- a/usr.bin/vacation/vacation.c +++ b/usr.bin/vacation/vacation.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)from: vacation.c 8.2 (Berkeley) 1/26/94"; #endif static const char rcsid[] = - "$Id: vacation.c,v 1.16 1999/06/17 14:49:19 sheldonh Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/vgrind/vfontedpr.c b/usr.bin/vgrind/vfontedpr.c index 8b5102aef366..09c63380307f 100644 --- a/usr.bin/vgrind/vfontedpr.c +++ b/usr.bin/vgrind/vfontedpr.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)vfontedpr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: vfontedpr.c,v 1.10 1997/09/18 14:07:33 phk Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/vgrind/vgrind.1 b/usr.bin/vgrind/vgrind.1 index 513658f4df32..7e03ac7b0918 100644 --- a/usr.bin/vgrind/vgrind.1 +++ b/usr.bin/vgrind/vgrind.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vgrind.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt VGRIND 1 diff --git a/usr.bin/vgrind/vgrindefs.5 b/usr.bin/vgrind/vgrindefs.5 index 5449f77d2911..105442b80b45 100644 --- a/usr.bin/vgrind/vgrindefs.5 +++ b/usr.bin/vgrind/vgrindefs.5 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vgrindefs.5 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt VGRINDEFS 5 diff --git a/usr.bin/vi/Makefile b/usr.bin/vi/Makefile index 94b352ac8a2d..d2c463e06d2d 100644 --- a/usr.bin/vi/Makefile +++ b/usr.bin/vi/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.23 1998/09/05 12:25:54 asami Exp $ +# $FreeBSD$ # # This has most of the glue needed to compile tknvi and the perl hooks, # but not all. diff --git a/usr.bin/vis/foldit.c b/usr.bin/vis/foldit.c index 2bbf15d92f53..6cf63f35ac05 100644 --- a/usr.bin/vis/foldit.c +++ b/usr.bin/vis/foldit.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)foldit.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/vis/vis.1 b/usr.bin/vis/vis.1 index b2840580d3f7..47c080dffa24 100644 --- a/usr.bin/vis/vis.1 +++ b/usr.bin/vis/vis.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vis.1 8.4 (Berkeley) 4/19/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 19, 1994 .Dt VIS 1 diff --git a/usr.bin/vis/vis.c b/usr.bin/vis/vis.c index edead0124b09..0ff6a21f0a0f 100644 --- a/usr.bin/vis/vis.c +++ b/usr.bin/vis/vis.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)vis.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/vmstat/vmstat.8 b/usr.bin/vmstat/vmstat.8 index 7fb1ddb86010..860628e88693 100644 --- a/usr.bin/vmstat/vmstat.8 +++ b/usr.bin/vmstat/vmstat.8 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vmstat.8 8.1 (Berkeley) 6/6/93 -.\" $Id: vmstat.8,v 1.14 1999/04/26 14:08:04 kris Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1996 .Dt VMSTAT 8 diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index c67a1eb637c8..a06b44e0b9f1 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: vmstat.c,v 1.35 1999/05/12 11:49:47 bde Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/w/pr_time.c b/usr.bin/w/pr_time.c index 5b38b58dd126..2a7eb1d1bf94 100644 --- a/usr.bin/w/pr_time.c +++ b/usr.bin/w/pr_time.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)pr_time.c 8.2 (Berkeley) 4/4/94"; #endif static const char rcsid[] = - "$Id: pr_time.c,v 1.11 1997/12/28 17:50:10 alex Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/w/uptime.1 b/usr.bin/w/uptime.1 index 87370c59782c..20ebaa0ffbd5 100644 --- a/usr.bin/w/uptime.1 +++ b/usr.bin/w/uptime.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)uptime.1 8.2 (Berkeley) 4/18/94 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd April 18, 1994 .Dt UPTIME 1 diff --git a/usr.bin/w/w.1 b/usr.bin/w/w.1 index 87d08ddd7306..12f3da808c13 100644 --- a/usr.bin/w/w.1 +++ b/usr.bin/w/w.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)w.1 8.1 (Berkeley) 6/6/93 -.\" $Id: w.1,v 1.10 1998/03/22 17:39:08 steve Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt W 1 diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index ff3eb57583fb..6441ee8f8966 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)w.c 8.4 (Berkeley) 4/16/94"; #endif static const char rcsid[] = - "$Id: w.c,v 1.35 1999/07/04 17:26:12 billf Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/wall/ttymsg.c b/usr.bin/wall/ttymsg.c index 65890cac45bc..2b58a1b97eb8 100644 --- a/usr.bin/wall/ttymsg.c +++ b/usr.bin/wall/ttymsg.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ttymsg.c 8.2 (Berkeley) 11/16/93"; #endif static const char rcsid[] = - "$Id: ttymsg.c,v 1.2 1998/03/23 07:47:31 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/wall/wall.1 b/usr.bin/wall/wall.1 index b948a7e639ae..73f928036640 100644 --- a/usr.bin/wall/wall.1 +++ b/usr.bin/wall/wall.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)wall.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt WALL 1 diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c index 288bea32c2c4..448f7a943550 100644 --- a/usr.bin/wall/wall.c +++ b/usr.bin/wall/wall.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)wall.c 8.2 (Berkeley) 11/16/93"; #endif static const char rcsid[] = - "$Id: wall.c,v 1.9 1997/09/15 01:03:16 ache Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/usr.bin/wc/wc.1 b/usr.bin/wc/wc.1 index fec2b5f57629..86fc751fe7ac 100644 --- a/usr.bin/wc/wc.1 +++ b/usr.bin/wc/wc.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)wc.1 8.2 (Berkeley) 4/19/94 -.\" $Id: wc.1,v 1.4 1997/02/22 19:57:44 peter Exp $ +.\" $FreeBSD$ .\" .Dd April 19, 1994 .Dt WC 1 diff --git a/usr.bin/wc/wc.c b/usr.bin/wc/wc.c index c04a6b05c5b2..3793a905af2a 100644 --- a/usr.bin/wc/wc.c +++ b/usr.bin/wc/wc.c @@ -42,7 +42,7 @@ static const char copyright[] = static const char sccsid[] = "@(#)wc.c 8.1 (Berkeley) 6/6/93"; #else static const char rcsid[] = - "$Id: wc.c,v 1.9 1999/08/06 14:37:13 sheldonh Exp $"; + "$FreeBSD$"; #endif #endif /* not lint */ diff --git a/usr.bin/what/what.1 b/usr.bin/what/what.1 index 7e369a9a0c1b..b5fe8bb05c80 100644 --- a/usr.bin/what/what.1 +++ b/usr.bin/what/what.1 @@ -31,7 +31,7 @@ .\" .\" @(#)what.1 8.1 (Berkeley) 6/6/93 .\" -.\" $Id: what.1,v 1.8 1998/04/14 06:31:23 phk Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt WHAT 1 diff --git a/usr.bin/what/what.c b/usr.bin/what/what.c index ebc4d1107e9b..5a9bf35018ec 100644 --- a/usr.bin/what/what.c +++ b/usr.bin/what/what.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: what.c,v 1.3 1997/08/25 06:49:45 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/whereis/whereis.1 b/usr.bin/whereis/whereis.1 index b569301bdf42..8e6404b4c92d 100644 --- a/usr.bin/whereis/whereis.1 +++ b/usr.bin/whereis/whereis.1 @@ -31,7 +31,7 @@ .\" .\" @(#)whereis.1 8.2 (Berkeley) 12/30/93 .\" -.\" $Id: whereis.1,v 1.6 1998/08/31 16:41:08 wosch Exp $ +.\" $FreeBSD$ .\" .Dd June 15, 1996 .Dt WHEREIS 1 diff --git a/usr.bin/whereis/whereis.pl b/usr.bin/whereis/whereis.pl index f53d2a6fb2be..1af1d4769f97 100644 --- a/usr.bin/whereis/whereis.pl +++ b/usr.bin/whereis/whereis.pl @@ -28,7 +28,7 @@ # # Rewritten from scratch for FreeBSD after the 4.3BSD manual page. # -# $Id: whereis.pl,v 1.6 1998/10/04 10:33:37 obrien Exp $ +# $FreeBSD$ # sub usage diff --git a/usr.bin/which/Makefile b/usr.bin/which/Makefile index d049eee35790..94646408bc84 100644 --- a/usr.bin/which/Makefile +++ b/usr.bin/which/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $FreeBSD$ MAINTAINER= wosch diff --git a/usr.bin/which/which.1 b/usr.bin/which/which.1 index ec1d8c45a461..e9ae9d32ae70 100644 --- a/usr.bin/which/which.1 +++ b/usr.bin/which/which.1 @@ -27,7 +27,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE .\" OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: which.1,v 1.11 1998/05/15 11:22:42 jkoshy Exp $ +.\" $FreeBSD$ .Dd January 26, 1995 .Dt WHICH 1 .Os FreeBSD diff --git a/usr.bin/which/which.pl b/usr.bin/which/which.pl index 55214a607558..781e1c151602 100755 --- a/usr.bin/which/which.pl +++ b/usr.bin/which/which.pl @@ -24,7 +24,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: which.pl,v 1.12 1998/01/02 13:46:25 helbig Exp $ +# $FreeBSD$ $all = $silent = $found = 0; @path = split(/:/, $ENV{'PATH'}); diff --git a/usr.bin/who/who.1 b/usr.bin/who/who.1 index 1964a1a78bb5..6352eab33d8c 100644 --- a/usr.bin/who/who.1 +++ b/usr.bin/who/who.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)who.1 8.2 (Berkeley) 12/30/93 -.\" $Id: who.1,v 1.5 1997/08/26 11:14:56 charnier Exp $ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt WHO 1 diff --git a/usr.bin/who/who.c b/usr.bin/who/who.c index 26500ca68877..76ecdc2ae94d 100644 --- a/usr.bin/who/who.c +++ b/usr.bin/who/who.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)who.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: who.c,v 1.6 1998/04/26 19:10:51 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/whois/whois.1 b/usr.bin/whois/whois.1 index 11138392cbf7..bdb2e3b637a0 100644 --- a/usr.bin/whois/whois.1 +++ b/usr.bin/whois/whois.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)whois.1 8.1 (Berkeley) 6/6/93 -.\" $Id: whois.1,v 1.5 1999/02/01 19:22:27 wollman Exp $ +.\" $FreeBSD$ .\" .Dd February 1, 1999 .Dt WHOIS 1 diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index 321136c6ef1c..d1a0855930ed 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)whois.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: whois.c,v 1.7 1999/02/01 19:22:27 wollman Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/window/window.1 b/usr.bin/window/window.1 index 6391a8e30e03..5070cfb8bb3a 100644 --- a/usr.bin/window/window.1 +++ b/usr.bin/window/window.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)window.1 8.2 (Berkeley) 12/30/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt WINDOW 1 diff --git a/usr.bin/write/write.1 b/usr.bin/write/write.1 index a5fe52d34034..2b9490209418 100644 --- a/usr.bin/write/write.1 +++ b/usr.bin/write/write.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)write.1 8.1 (Berkeley) 6/6/93 -.\" $Id: write.1,v 1.5 1997/03/22 17:19:32 mpp Exp $ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt WRITE 1 diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c index f1a37fb6003a..406eeb3f7565 100644 --- a/usr.bin/write/write.c +++ b/usr.bin/write/write.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)write.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: write.c,v 1.10 1997/09/15 00:40:34 ache Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/xargs/xargs.1 b/usr.bin/xargs/xargs.1 index b16fb8929fd7..8dec056ca98d 100644 --- a/usr.bin/xargs/xargs.1 +++ b/usr.bin/xargs/xargs.1 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)xargs.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt XARGS 1 diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c index 41bf75a1486e..2ad94cc90926 100644 --- a/usr.bin/xargs/xargs.c +++ b/usr.bin/xargs/xargs.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)xargs.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: xargs.c,v 1.7 1998/10/13 14:52:32 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/xinstall/install.1 b/usr.bin/xinstall/install.1 index 46f1b3b00147..46179cbf73fd 100644 --- a/usr.bin/xinstall/install.1 +++ b/usr.bin/xinstall/install.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)install.1 8.1 (Berkeley) 6/6/93 -.\" $Id: install.1,v 1.12 1998/06/02 12:00:08 peter Exp $ +.\" $FreeBSD$ .\" .Dd September 22, 1996 .Dt INSTALL 1 diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 0948040f561e..769d095624c5 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93"; #endif static const char rcsid[] = - "$Id: xinstall.c,v 1.33 1998/10/13 14:52:33 des Exp $"; + "$FreeBSD$"; #endif /* not lint */ /*- diff --git a/usr.bin/xlint/lint1/Makefile b/usr.bin/xlint/lint1/Makefile index 6ba805cb26a9..fef8dae73801 100644 --- a/usr.bin/xlint/lint1/Makefile +++ b/usr.bin/xlint/lint1/Makefile @@ -1,5 +1,5 @@ # $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $ -# $Id$ +# $FreeBSD$ PROG= lint1 SRCS= cgram.y scan.l mem1.c mem.c err.c main1.c decl.c tree.c func.c \ diff --git a/usr.bin/xlint/xlint/lint.1 b/usr.bin/xlint/xlint/lint.1 index 7b15b2c0ae15..d076b3676cc9 100644 --- a/usr.bin/xlint/xlint/lint.1 +++ b/usr.bin/xlint/xlint/lint.1 @@ -29,7 +29,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id$ +.\" $FreeBSD$ .\" .Dd August 28, 1994 .Dt LINT 1 diff --git a/usr.bin/xstr/xstr.1 b/usr.bin/xstr/xstr.1 index 497965ad6cb2..777da20493b9 100644 --- a/usr.bin/xstr/xstr.1 +++ b/usr.bin/xstr/xstr.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)xstr.1 8.2 (Berkeley) 12/30/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd December 30, 1993 .Dt XSTR 1 diff --git a/usr.bin/xstr/xstr.c b/usr.bin/xstr/xstr.c index 5820f7066913..8160bb857630 100644 --- a/usr.bin/xstr/xstr.c +++ b/usr.bin/xstr/xstr.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)xstr.c 8.1 (Berkeley) 6/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/yacc/Makefile b/usr.bin/yacc/Makefile index 4e4fec28da1c..3a871d989b4e 100644 --- a/usr.bin/yacc/Makefile +++ b/usr.bin/yacc/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.3 (Berkeley) 5/12/90 -# $Id$ +# $FreeBSD$ PROG= yacc SRCS= closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c \ diff --git a/usr.bin/yacc/closure.c b/usr.bin/yacc/closure.c index 82751060fbd7..4caf45857640 100644 --- a/usr.bin/yacc/closure.c +++ b/usr.bin/yacc/closure.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/defs.h b/usr.bin/yacc/defs.h index 612d4ee4e048..a8d8113d3165 100644 --- a/usr.bin/yacc/defs.h +++ b/usr.bin/yacc/defs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)defs.h 5.6 (Berkeley) 5/24/93 - * $Id: defs.h,v 1.6 1997/08/28 06:33:52 charnier Exp $ + * $FreeBSD$ */ #include /* for __P macro */ diff --git a/usr.bin/yacc/error.c b/usr.bin/yacc/error.c index 0e789ec69c22..3229f345104c 100644 --- a/usr.bin/yacc/error.c +++ b/usr.bin/yacc/error.c @@ -39,7 +39,7 @@ static char const sccsid[] = "@(#)error.c 5.3 (Berkeley) 6/1/90"; #endif static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ /* routines for printing error messages */ diff --git a/usr.bin/yacc/lalr.c b/usr.bin/yacc/lalr.c index 275f7d1605f7..bd61e489e46b 100644 --- a/usr.bin/yacc/lalr.c +++ b/usr.bin/yacc/lalr.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/lr0.c b/usr.bin/yacc/lr0.c index 96d87a9714cb..07816d2ac114 100644 --- a/usr.bin/yacc/lr0.c +++ b/usr.bin/yacc/lr0.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/main.c b/usr.bin/yacc/main.c index 1501a592ff81..0a5511fdf568 100644 --- a/usr.bin/yacc/main.c +++ b/usr.bin/yacc/main.c @@ -45,7 +45,7 @@ static char const copyright[] = static char const sccsid[] = "@(#)main.c 5.5 (Berkeley) 5/24/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.8 1997/08/28 06:33:53 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/yacc/mkpar.c b/usr.bin/yacc/mkpar.c index ad44c4c2b78a..e7ca1e36b91b 100644 --- a/usr.bin/yacc/mkpar.c +++ b/usr.bin/yacc/mkpar.c @@ -39,7 +39,7 @@ static char const sccsid[] = "@(#)mkpar.c 5.3 (Berkeley) 1/20/91"; #endif static const char rcsid[] = - "$Id: mkpar.c,v 1.8 1999/07/04 17:26:16 billf Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/yacc/output.c b/usr.bin/yacc/output.c index 3d32c065d599..255aeea809b2 100644 --- a/usr.bin/yacc/output.c +++ b/usr.bin/yacc/output.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: output.c,v 1.9 1997/04/29 03:05:38 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/reader.c b/usr.bin/yacc/reader.c index e0eed8d65313..4e2e588241a9 100644 --- a/usr.bin/yacc/reader.c +++ b/usr.bin/yacc/reader.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: reader.c,v 1.6 1997/02/22 19:58:01 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/skeleton.c b/usr.bin/yacc/skeleton.c index 28df10bab639..f3d6dd0d3630 100644 --- a/usr.bin/yacc/skeleton.c +++ b/usr.bin/yacc/skeleton.c @@ -56,7 +56,7 @@ char *banner[] = { "#ifndef lint", "static char const ", - "yyrcsid[] = \"$Id: skeleton.c,v 1.19 1999/07/30 06:40:00 obrien Exp $\";", + "yyrcsid[] = \"$FreeBSD$\";", "#endif", "#include ", "#define YYBYACC 1", diff --git a/usr.bin/yacc/symtab.c b/usr.bin/yacc/symtab.c index 2f2ee2e136d1..f155021bb68e 100644 --- a/usr.bin/yacc/symtab.c +++ b/usr.bin/yacc/symtab.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/verbose.c b/usr.bin/yacc/verbose.c index c2cfee5d8b85..69ce15e1d271 100644 --- a/usr.bin/yacc/verbose.c +++ b/usr.bin/yacc/verbose.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/warshall.c b/usr.bin/yacc/warshall.c index 680363c12640..37408c0b3fa9 100644 --- a/usr.bin/yacc/warshall.c +++ b/usr.bin/yacc/warshall.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef lint diff --git a/usr.bin/yacc/yacc.1 b/usr.bin/yacc/yacc.1 index f532779264ff..23a3b0d5b4a9 100644 --- a/usr.bin/yacc/yacc.1 +++ b/usr.bin/yacc/yacc.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)yacc.1 5.8 (Berkeley) 5/24/93 -.\" $Id: yacc.1,v 1.7 1997/05/14 02:33:08 steve Exp $ +.\" $FreeBSD$ .\" .Dd May 24, 1993 .Dt YACC 1 diff --git a/usr.bin/yacc/yyfix.1 b/usr.bin/yacc/yyfix.1 index 7aad08e056b3..3b50a624e2d8 100644 --- a/usr.bin/yacc/yyfix.1 +++ b/usr.bin/yacc/yyfix.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)yyfix.1 5.4 (Berkeley) 3/23/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd March 23, 1993 .Dt YYFIX 1 diff --git a/usr.bin/yes/yes.1 b/usr.bin/yes/yes.1 index 76ae9dbf0188..e19020f70aea 100644 --- a/usr.bin/yes/yes.1 +++ b/usr.bin/yes/yes.1 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)yes.1 8.1 (Berkeley) 6/6/93 -.\" $Id$ +.\" $FreeBSD$ .\" .Dd June 6, 1993 .Dt YES 1 diff --git a/usr.bin/ypcat/Makefile b/usr.bin/ypcat/Makefile index d04375c9dd7f..58ee6907f07f 100644 --- a/usr.bin/ypcat/Makefile +++ b/usr.bin/ypcat/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id$ +# $FreeBSD$ PROG= ypcat diff --git a/usr.bin/ypcat/ypcat.1 b/usr.bin/ypcat/ypcat.1 index 605a0c3cd083..139b2c6e5799 100644 --- a/usr.bin/ypcat/ypcat.1 +++ b/usr.bin/ypcat/ypcat.1 @@ -26,7 +26,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypcat.1,v 1.6 1997/08/29 11:48:48 charnier Exp $ +.\" $FreeBSD$ .\" .Dd December 3, 1993 .Dt YPCAT 1 diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c index 2604115a3881..e90e763a0349 100644 --- a/usr.bin/ypcat/ypcat.c +++ b/usr.bin/ypcat/ypcat.c @@ -29,7 +29,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ypmatch/Makefile b/usr.bin/ypmatch/Makefile index bdf13edac4c9..22e62996937e 100644 --- a/usr.bin/ypmatch/Makefile +++ b/usr.bin/ypmatch/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id$ +# $FreeBSD$ PROG= ypmatch diff --git a/usr.bin/ypmatch/ypmatch.1 b/usr.bin/ypmatch/ypmatch.1 index d3cc5bf53966..6491407e942a 100644 --- a/usr.bin/ypmatch/ypmatch.1 +++ b/usr.bin/ypmatch/ypmatch.1 @@ -26,7 +26,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypmatch.1,v 1.6 1997/08/29 11:52:52 charnier Exp $ +.\" $FreeBSD$ .\" .Dd December 3, 1993 .Dt YPMATCH 1 diff --git a/usr.bin/ypmatch/ypmatch.c b/usr.bin/ypmatch/ypmatch.c index 25e4530146fa..be266bb7e1e0 100644 --- a/usr.bin/ypmatch/ypmatch.c +++ b/usr.bin/ypmatch/ypmatch.c @@ -29,7 +29,7 @@ #ifndef lint static const char rcsid[] = - "$Id: ypmatch.c,v 1.5 1997/08/29 11:52:52 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include diff --git a/usr.bin/ypwhich/Makefile b/usr.bin/ypwhich/Makefile index 38d9edda0be2..f28f864ab097 100644 --- a/usr.bin/ypwhich/Makefile +++ b/usr.bin/ypwhich/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile,v 1.3 1997/02/22 19:58:13 peter Exp $ +# $FreeBSD$ PROG= ypwhich diff --git a/usr.bin/ypwhich/ypwhich.1 b/usr.bin/ypwhich/ypwhich.1 index d3adc258ce43..88ca36d759ba 100644 --- a/usr.bin/ypwhich/ypwhich.1 +++ b/usr.bin/ypwhich/ypwhich.1 @@ -28,7 +28,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypwhich.1,v 1.2 1998/03/23 07:48:45 charnier Exp $ +.\" $FreeBSD$ .\" .Dd February 23, 1994 .Dt YPWHICH 1 diff --git a/usr.bin/ypwhich/ypwhich.c b/usr.bin/ypwhich/ypwhich.c index 763875f5e6bd..2bc9ff377dd5 100644 --- a/usr.bin/ypwhich/ypwhich.c +++ b/usr.bin/ypwhich/ypwhich.c @@ -29,7 +29,7 @@ #ifndef lint static const char rcsid[] = - "$Id: ypwhich.c,v 1.9 1997/08/29 11:56:51 charnier Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include -- cgit v1.3 From b27f40c06412679a6ea97e62450e62d4d2b6c5ca Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Thu, 3 Feb 2000 16:34:57 +0000 Subject: Add support for the AdvanSys ASC38C0800 Ultra2 chipset. Preliminary support is also included for the ASC38C1600 Ultra160 chipset, but as firmware is not yet available for this chip, it is disabled. Approved by: jkh@FreeBSD.org --- sys/dev/advansys/adw_pci.c | 350 ++++++++--- sys/dev/advansys/adwcam.c | 565 ++++++++++++------ sys/dev/advansys/adwlib.c | 659 ++++++++++++++------ sys/dev/advansys/adwlib.h | 461 +++++++++++--- sys/dev/advansys/adwmcode.c | 1391 ++++++++++++++++++++++++++++++------------- sys/dev/advansys/adwmcode.h | 115 ++-- sys/dev/advansys/adwvar.h | 8 +- 7 files changed, 2539 insertions(+), 1010 deletions(-) (limited to 'sys/dev/advansys/adwmcode.h') diff --git a/sys/dev/advansys/adw_pci.c b/sys/dev/advansys/adw_pci.c index 10eda815814a..6550a37e6bb9 100644 --- a/sys/dev/advansys/adw_pci.c +++ b/sys/dev/advansys/adw_pci.c @@ -2,9 +2,11 @@ * Device probe and attach routines for the following * Advanced Systems Inc. SCSI controllers: * - * ABP940UW - Bus-Master PCI Ultra-Wide (240 CDB) + * ABP[3]940UW - Bus-Master PCI Ultra-Wide (253 CDB) + * ABP950UW - Dual Channel Bus-Master PCI Ultra-Wide (253 CDB/Channel) + * ABP3940U2W - Bus-Master PCI LVD/Ultra2-Wide (253 CDB) * - * Copyright (c) 1998 Justin Gibbs. + * Copyright (c) 1998, 1999, 2000 Justin Gibbs. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -12,7 +14,7 @@ * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions, and the following disclaimer, - * without modification, immediately at the beginning of the file. + * without modification. * 2. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * @@ -34,9 +36,14 @@ #include #include #include +#include +#include #include #include +#include + +#include #include #include @@ -48,91 +55,202 @@ #include #include -#define PCI_BASEADR0 PCI_MAP_REG_START /* I/O Address */ -#define PCI_BASEADR1 PCI_MAP_REG_START + 4 /* Mem I/O Address */ +#define ADW_PCI_IOBASE PCI_MAP_REG_START /* I/O Address */ +#define ADW_PCI_MEMBASE PCI_MAP_REG_START + 4 /* Mem I/O Address */ + +#define PCI_ID_ADVANSYS_3550 0x230010CD00000000ull +#define PCI_ID_ADVANSYS_38C0800_REV1 0x250010CD00000000ull +#define PCI_ID_ADVANSYS_38C1600_REV1 0x270010CD00000000ull +#define PCI_ID_ALL_MASK 0xFFFFFFFFFFFFFFFFull +#define PCI_ID_DEV_VENDOR_MASK 0xFFFFFFFF00000000ull + +struct adw_pci_identity; +typedef int (adw_device_setup_t)(device_t, struct adw_pci_identity *, + struct adw_softc *adw); + +struct adw_pci_identity { + u_int64_t full_id; + u_int64_t id_mask; + char *name; + adw_device_setup_t *setup; + const struct adw_mcode *mcode_data; + const struct adw_eeprom *default_eeprom; +}; + +static adw_device_setup_t adw_asc3550_setup; +static adw_device_setup_t adw_asc38C0800_setup; +#ifdef NOTYET +static adw_device_setup_t adw_asc38C1600_setup; +#endif + +struct adw_pci_identity adw_pci_ident_table[] = +{ + /* asc3550 based controllers */ + { + PCI_ID_ADVANSYS_3550, + PCI_ID_DEV_VENDOR_MASK, + "AdvanSys 3550 Ultra SCSI Adapter", + adw_asc3550_setup, + &adw_asc3550_mcode_data, + &adw_asc3550_default_eeprom + }, + /* asc38C0800 based controllers */ + { + PCI_ID_ADVANSYS_38C0800_REV1, + PCI_ID_DEV_VENDOR_MASK, + "AdvanSys 38C0800 Ultra2 SCSI Adapter", + adw_asc38C0800_setup, + &adw_asc38C0800_mcode_data, + &adw_asc38C0800_default_eeprom + }, +#if NOTYET + /* XXX Disabled until I have hardware to test with */ + /* asc38C1600 based controllers */ + { + PCI_ID_ADVANSYS_38C1600_REV1, + PCI_ID_DEV_VENDOR_MASK, + "AdvanSys 38C1600 Ultra160 SCSI Adapter", + adw_asc38C1600_setup, + NULL, /* None provided by vendor thus far */ + NULL /* None provided by vendor thus far */ + } +#endif +}; -#define PCI_DEVICE_ID_ADVANSYS_3550 0x230010CD +static const int adw_num_pci_devs = + sizeof(adw_pci_ident_table) / sizeof(*adw_pci_ident_table); #define ADW_PCI_MAX_DMA_ADDR (0xFFFFFFFFUL) #define ADW_PCI_MAX_DMA_COUNT (0xFFFFFFFFUL) -static const char* adwpciprobe(pcici_t tag, pcidi_t type); -static void adwpciattach(pcici_t config_id, int unit); +static int adw_pci_probe(device_t dev); +static int adw_pci_attach(device_t dev); -static struct pci_device adw_pci_driver = { - "adw", - adwpciprobe, - adwpciattach, - &adw_unit, - NULL +static device_method_t adw_pci_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, adw_pci_probe), + DEVMETHOD(device_attach, adw_pci_attach), + { 0, 0 } }; -COMPAT_PCI_DRIVER (adw_pci, adw_pci_driver); +static driver_t adw_pci_driver = { + "adw", + adw_pci_methods, + sizeof(struct adw_softc) +}; + +static devclass_t adw_devclass; + +DRIVER_MODULE(adw, pci, adw_pci_driver, adw_devclass, 0, 0); + +static __inline u_int64_t +adw_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor) +{ + u_int64_t id; + + id = subvendor + | (subdevice << 16) + | ((u_int64_t)vendor << 32) + | ((u_int64_t)device << 48); + + return (id); +} -static const char* -adwpciprobe(pcici_t tag, pcidi_t type) +static struct adw_pci_identity * +adw_find_pci_device(device_t dev) { - switch (type) { - case PCI_DEVICE_ID_ADVANSYS_3550: - return ("AdvanSys ASC3550 SCSI controller"); - default: - break; + u_int64_t full_id; + struct adw_pci_identity *entry; + u_int i; + + full_id = adw_compose_id(pci_get_device(dev), + pci_get_vendor(dev), + pci_get_subdevice(dev), + pci_get_subvendor(dev)); + + for (i = 0; i < adw_num_pci_devs; i++) { + entry = &adw_pci_ident_table[i]; + if (entry->full_id == (full_id & entry->id_mask)) + return (entry); } return (NULL); } -static void -adwpciattach(pcici_t config_id, int unit) +static int +adw_pci_probe(device_t dev) +{ + struct adw_pci_identity *entry; + + entry = adw_find_pci_device(dev); + if (entry != NULL) { + device_set_desc(dev, entry->name); + return (0); + } + return (ENXIO); +} + +static int +adw_pci_attach(device_t dev) { - u_int32_t id; - u_int32_t command; - vm_offset_t vaddr; + struct adw_softc *adw; + struct adw_pci_identity *entry; + u_int32_t command; + struct resource *regs; + int regs_type; + int regs_id; + int error; + int zero; + + command = pci_read_config(dev, PCIR_COMMAND, /*bytes*/1); + entry = adw_find_pci_device(dev); + if (entry == NULL) + return (ENXIO); + regs = NULL; + regs_type = 0; + regs_id = 0; #ifdef ADW_ALLOW_MEMIO - vm_offset_t paddr; + if ((command & PCIM_CMD_MEMEN) != 0) + regs_type = SYS_RES_MEMORY; + regs_id = ADW_PCI_MEMBASE; + regs = bus_alloc_resource(dev, regs_type, + ®s_id, 0, ~0, 1, RF_ACTIVE); + } #endif - u_int16_t io_port; - bus_space_tag_t tag; - bus_space_handle_t bsh; - struct adw_softc *adw; - int error; - - /* - * Determine the chip version. - */ - id = pci_cfgread(config_id, PCI_ID_REG, /*bytes*/4); - command = pci_cfgread(config_id, PCIR_COMMAND, /*bytes*/1); + if (regs == NULL && (command & PCI_COMMAND_IO_ENABLE) != 0) { + regs_type = SYS_RES_IOPORT; + regs_id = ADW_PCI_IOBASE; + regs = bus_alloc_resource(dev, regs_type, + ®s_id, 0, ~0, 1, RF_ACTIVE); + } + + if (regs == NULL) { + device_printf(dev, "can't allocate register resources\n"); + return (ENOMEM); + } + + adw = adw_alloc(dev, regs, regs_type, regs_id); + if (adw == NULL) + return(ENOMEM); /* - * These cards do not allow memory mapped accesses, so we must - * ensure that I/O accesses are available or we won't be able - * to talk to them. + * Now that we have access to our registers, just verify that + * this really is an AdvanSys device. */ - vaddr = 0; -#ifdef ADW_ALLOW_MEMIO - if ((command & PCI_COMMAND_MEM_ENABLE) == 0 - || (pci_map_mem(config_id, PCI_BASEADR1, &vaddr, &paddr)) == 0) -#endif - if ((command & PCI_COMMAND_IO_ENABLE) == 0 - || (pci_map_port(config_id, PCI_BASEADR0, &io_port)) == 0) - return; - - /* XXX Should be passed in by parent bus */ - /* XXX Why isn't the 0x10 offset incorporated into the reg defs? */ - if (vaddr != 0) { - tag = I386_BUS_SPACE_MEM; - bsh = vaddr; - } else { - tag = I386_BUS_SPACE_IO; - bsh = io_port; + if (adw_find_signature(adw) == 0) { + adw_free(adw); + return (ENXIO); } + adw_reset_chip(adw); - if (adw_find_signature(tag, bsh) == 0) - return; + error = entry->setup(dev, entry, adw); - adw = adw_alloc(unit, tag, bsh); - if (adw == NULL) - return; + if (error != 0) + return (error); + + /* Ensure busmastering is enabled */ + command |= PCIM_CMD_BUSMASTEREN; + pci_write_config(dev, PCIR_COMMAND, command, /*bytes*/1); /* Allocate a dmatag for our transfer DMA maps */ /* XXX Should be a child of the PCI bus dma tag */ @@ -153,14 +271,15 @@ adwpciattach(pcici_t config_id, int unit) printf("%s: Could not allocate DMA tag - error %d\n", adw_name(adw), error); adw_free(adw); - return; + return (error); } adw->init_level++; - if (adw_init(adw) != 0) { + error = adw_init(adw); + if (error != 0) { adw_free(adw); - return; + return (error); } /* @@ -174,10 +293,99 @@ adwpciattach(pcici_t config_id, int unit) adw_lram_read_16(adw, ADW_MC_CONTROL_FLAG) | ADW_MC_CONTROL_IGN_PERR); - if ((pci_map_int(config_id, adw_intr, (void *)adw, &cam_imask)) == 0) { + zero = 0; + adw->irq_res_type = SYS_RES_IRQ; + adw->irq = bus_alloc_resource(dev, adw->irq_res_type, &zero, + 0, ~0, 1, RF_ACTIVE | RF_SHAREABLE); + if (adw->irq == NULL) { adw_free(adw); - return; + return (ENOMEM); } - - adw_attach(adw); + + error = adw_attach(adw); + if (error != 0) + adw_free(adw); + return (error); +} + +static int +adw_generic_setup(device_t dev, struct adw_pci_identity *entry, + struct adw_softc *adw) +{ + adw->channel = pci_get_function(dev) == 1 ? 'B' : 'A'; + adw->chip = ADW_CHIP_NONE; + adw->features = ADW_FENONE; + adw->flags = ADW_FNONE; + adw->mcode_data = entry->mcode_data; + adw->default_eeprom = entry->default_eeprom; + return (0); +} + +static int +adw_asc3550_setup(device_t dev, struct adw_pci_identity *entry, + struct adw_softc *adw) +{ + int error; + + error = adw_generic_setup(dev, entry, adw); + if (error != 0) + return (error); + adw->chip = ADW_CHIP_ASC3550; + adw->features = ADW_ASC3550_FE; + adw->memsize = ADW_3550_MEMSIZE; + /* + * For ASC-3550, setting the START_CTL_EMFU [3:2] bits + * sets a FIFO threshold of 128 bytes. This register is + * only accessible to the host. + */ + adw_outb(adw, ADW_DMA_CFG0, + ADW_DMA_CFG0_START_CTL_EM_FU|ADW_DMA_CFG0_READ_CMD_MRM); + adw_outb(adw, ADW_MEM_CFG, + adw_inb(adw, ADW_MEM_CFG) | ADW_MEM_CFG_RAM_SZ_8KB); + return (0); +} + +static int +adw_asc38C0800_setup(device_t dev, struct adw_pci_identity *entry, + struct adw_softc *adw) +{ + int error; + + error = adw_generic_setup(dev, entry, adw); + if (error != 0) + return (error); + /* + * For ASC-38C0800, set FIFO_THRESH_80B [6:4] bits and + * START_CTL_TH [3:2] bits for the default FIFO threshold. + * + * Note: ASC-38C0800 FIFO threshold has been changed to 256 bytes. + * + * For DMA Errata #4 set the BC_THRESH_ENB bit. + */ + adw_outb(adw, ADW_DMA_CFG0, + ADW_DMA_CFG0_BC_THRESH_ENB|ADW_DMA_CFG0_FIFO_THRESH_80B + |ADW_DMA_CFG0_START_CTL_TH|ADW_DMA_CFG0_READ_CMD_MRM); + adw_outb(adw, ADW_MEM_CFG, + adw_inb(adw, ADW_MEM_CFG) | ADW_MEM_CFG_RAM_SZ_16KB); + adw->chip = ADW_CHIP_ASC38C0800; + adw->features = ADW_ASC38C0800_FE; + adw->memsize = ADW_38C0800_MEMSIZE; + return (error); +} + +#ifdef NOTYET +static int +adw_asc38C1600_setup(device_t dev, struct adw_pci_identity *entry, + struct adw_softc *adw) +{ + int error; + + error = adw_generic_setup(dev, entry, adw); + if (error != 0) + return (error); + adw->chip = ADW_CHIP_ASC38C1600; + adw->features = ADW_ASC38C1600_FE; + adw->memsize = ADW_38C1600_MEMSIZE; + return (error); } +#endif diff --git a/sys/dev/advansys/adwcam.c b/sys/dev/advansys/adwcam.c index b30f16c8e933..b64a60a94db6 100644 --- a/sys/dev/advansys/adwcam.c +++ b/sys/dev/advansys/adwcam.c @@ -4,9 +4,9 @@ * * Product specific probe and attach routines can be found in: * - * pci/adw_pci.c ABP940UW + * adw_pci.c ABP[3]940UW, ABP950UW, ABP3940U2W * - * Copyright (c) 1998 Justin Gibbs. + * Copyright (c) 1998, 1999, 2000 Justin Gibbs. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions, and the following disclaimer, - * without modification, immediately at the beginning of the file. + * without modification. * 2. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * @@ -50,11 +50,15 @@ #include #include #include +#include #include #include #include #include +#include + +#include #include #include @@ -74,10 +78,6 @@ u_long adw_unit; -static __inline u_int32_t acbvtop(struct adw_softc *adw, - struct acb *acb); -static __inline struct acb * acbptov(struct adw_softc *adw, - u_int32_t busaddr); static __inline struct acb* adwgetacb(struct adw_softc *adw); static __inline void adwfreeacb(struct adw_softc *adw, struct acb *acb); @@ -101,20 +101,6 @@ static void adw_handle_device_reset(struct adw_softc *adw, static void adw_handle_bus_reset(struct adw_softc *adw, int initiated); -static __inline u_int32_t -acbvtop(struct adw_softc *adw, struct acb *acb) -{ - return (adw->acb_busbase - + (u_int32_t)((caddr_t)acb - (caddr_t)adw->acbs)); -} - -static __inline struct acb * -acbptov(struct adw_softc *adw, u_int32_t busaddr) -{ - return (adw->acbs - + ((struct acb *)busaddr - (struct acb *)adw->acb_busbase)); -} - static __inline struct acb* adwgetacb(struct adw_softc *adw) { @@ -208,7 +194,6 @@ adwallocacbs(struct adw_softc *adw) int i; next_acb = &adw->acbs[adw->num_acbs]; - sg_map = adwallocsgmap(adw); if (sg_map == NULL) @@ -220,22 +205,17 @@ adwallocacbs(struct adw_softc *adw) newcount = (PAGE_SIZE / (ADW_SG_BLOCKCNT * sizeof(*blocks))); for (i = 0; adw->num_acbs < adw->max_acbs && i < newcount; i++) { int error; - int j; error = bus_dmamap_create(adw->buffer_dmat, /*flags*/0, &next_acb->dmamap); if (error != 0) break; - next_acb->queue.scsi_req_baddr = acbvtop(adw, next_acb); - next_acb->queue.sense_addr = - acbvtop(adw, next_acb) + offsetof(struct acb, sense_data); + next_acb->queue.scsi_req_baddr = acbvtob(adw, next_acb); + next_acb->queue.scsi_req_bo = acbvtobo(adw, next_acb); + next_acb->queue.sense_baddr = + acbvtob(adw, next_acb) + offsetof(struct acb, sense_data); next_acb->sg_blocks = blocks; next_acb->sg_busaddr = busaddr; - /* Setup static data in the sg blocks */ - for (j = 0; j < ADW_SG_BLOCKCNT; j++) { - next_acb->sg_blocks[j].first_entry_no = - j * ADW_NO_OF_SG_PER_BLOCK; - } next_acb->state = ACB_FREE; SLIST_INSERT_HEAD(&adw->free_acb_list, next_acb, links); blocks += ADW_SG_BLOCKCNT; @@ -289,19 +269,20 @@ adwexecuteacb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) sg_index = 0; /* Copy the segments into our SG list */ for (sg_block = acb->sg_blocks;; sg_block++) { - u_int sg_left; + u_int i; - sg_left = ADW_NO_OF_SG_PER_BLOCK; sg = sg_block->sg_list; - while (dm_segs < end_seg && sg_left != 0) { + for (i = 0; i < ADW_NO_OF_SG_PER_BLOCK; i++) { + if (dm_segs >= end_seg) + break; + sg->sg_addr = dm_segs->ds_addr; sg->sg_count = dm_segs->ds_len; sg++; dm_segs++; - sg_left--; } - sg_index += ADW_NO_OF_SG_PER_BLOCK - sg_left; - sg_block->last_entry_no = sg_index - 1; + sg_block->sg_cnt = i; + sg_index += i; if (dm_segs == end_seg) { sg_block->sg_busaddr_next = 0; break; @@ -311,11 +292,8 @@ adwexecuteacb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) sg_block->sg_busaddr_next = sg_busaddr; } } - - acb->queue.sg_entry_cnt = nseg; acb->queue.sg_real_addr = acb->sg_busaddr; } else { - acb->queue.sg_entry_cnt = 0; acb->queue.sg_real_addr = 0; } @@ -327,13 +305,10 @@ adwexecuteacb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) bus_dmamap_sync(adw->buffer_dmat, acb->dmamap, op); } else { - acb->queue.sg_entry_cnt = 0; acb->queue.data_addr = 0; acb->queue.data_cnt = 0; acb->queue.sg_real_addr = 0; } - acb->queue.free_scsiq_link = 0; - acb->queue.ux_wk_data_cnt = 0; s = splcam(); @@ -357,7 +332,7 @@ adwexecuteacb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) timeout(adwtimeout, (caddr_t)acb, (ccb->ccb_h.timeout * hz) / 1000); - adw_send_acb(adw, acb, acbvtop(adw, acb)); + adw_send_acb(adw, acb, acbvtob(adw, acb)); splx(s); } @@ -381,6 +356,7 @@ adw_action(struct cam_sim *sim, union ccb *ccb) csio = &ccb->csio; ccbh = &ccb->ccb_h; + /* Max supported CDB length is 12 bytes */ if (csio->cdb_len > 12) { ccb->ccb_h.status = CAM_REQ_INVALID; @@ -400,31 +376,42 @@ adw_action(struct cam_sim *sim, union ccb *ccb) return; } - /* Link dccb and ccb so we can find one from the other */ + /* Link acb and ccb so we can find one from the other */ acb->ccb = ccb; ccb->ccb_h.ccb_acb_ptr = acb; ccb->ccb_h.ccb_adw_ptr = adw; acb->queue.cntl = 0; + acb->queue.target_cmd = 0; acb->queue.target_id = ccb->ccb_h.target_id; acb->queue.target_lun = ccb->ccb_h.target_lun; - acb->queue.srb_ptr = 0; - acb->queue.a_flag = 0; + acb->queue.mflag = 0; acb->queue.sense_len = MIN(csio->sense_len, sizeof(acb->sense_data)); acb->queue.cdb_len = csio->cdb_len; + if ((ccb->ccb_h.flags & CAM_TAG_ACTION_VALID) != 0) { + switch (csio->tag_action) { + case MSG_SIMPLE_Q_TAG: + acb->queue.scsi_cntl = 0; + break; + case MSG_HEAD_OF_Q_TAG: + acb->queue.scsi_cntl = ADW_QSC_HEAD_OF_Q_TAG; + break; + case MSG_ORDERED_Q_TAG: + acb->queue.scsi_cntl = ADW_QSC_ORDERED_Q_TAG; + break; + } + } else + acb->queue.scsi_cntl = ADW_QSC_NO_TAGMSG; - if ((ccb->ccb_h.flags & CAM_TAG_ACTION_VALID) != 0) - acb->queue.tag_code = csio->tag_action; - else - acb->queue.tag_code = 0; + if ((ccb->ccb_h.flags & CAM_DIS_DISCONNECT) != 0) + acb->queue.scsi_cntl |= ADW_QSC_NO_DISC; acb->queue.done_status = 0; acb->queue.scsi_status = 0; acb->queue.host_status = 0; - acb->queue.ux_sg_ix = 0; - + acb->queue.sg_wk_ix = 0; if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) { if ((ccb->ccb_h.flags & CAM_CDB_PHYS) == 0) { bcopy(csio->cdb_io.cdb_ptr, @@ -541,6 +528,9 @@ adw_action(struct cam_sim *sim, union ccb *ccb) s = splcam(); if ((cts->flags & CCB_TRANS_CURRENT_SETTINGS) != 0) { + u_int sdtrdone; + + sdtrdone = adw_lram_read_16(adw, ADW_MC_SDTR_DONE); if ((cts->valid & CCB_TRANS_DISC_VALID) != 0) { u_int discenb; @@ -592,58 +582,57 @@ adw_action(struct cam_sim *sim, union ccb *ccb) adw_lram_write_16(adw, ADW_MC_WDTR_DONE, wdtrdone); + /* Wide negotiation forces async */ + sdtrdone &= ~target_mask; + adw_lram_write_16(adw, + ADW_MC_SDTR_DONE, + sdtrdone); } } if (((cts->valid & CCB_TRANS_SYNC_RATE_VALID) != 0) || ((cts->valid & CCB_TRANS_SYNC_OFFSET_VALID) != 0)) { - u_int sdtrenb_orig; - u_int sdtrenb; - u_int ultraenb_orig; - u_int ultraenb; - u_int sdtrdone; - - sdtrenb_orig = - adw_lram_read_16(adw, ADW_MC_SDTR_ABLE); - sdtrenb = sdtrenb_orig; - - ultraenb_orig = - adw_lram_read_16(adw, ADW_MC_ULTRA_ABLE); - ultraenb = ultraenb_orig; - - sdtrdone = adw_lram_read_16(adw, - ADW_MC_SDTR_DONE); + u_int sdtr_orig; + u_int sdtr; + u_int sdtrable_orig; + u_int sdtrable; + + sdtr = adw_get_chip_sdtr(adw, + ccb->ccb_h.target_id); + sdtr_orig = sdtr; + sdtrable = adw_lram_read_16(adw, + ADW_MC_SDTR_ABLE); + sdtrable_orig = sdtrable; if ((cts->valid & CCB_TRANS_SYNC_RATE_VALID) != 0) { - if (cts->sync_period == 0) { - sdtrenb &= ~target_mask; - } else if (cts->sync_period > 12) { - ultraenb &= ~target_mask; - sdtrenb |= target_mask; - } else { - ultraenb |= target_mask; - sdtrenb |= target_mask; - } + sdtr = + adw_find_sdtr(adw, + cts->sync_period); } if ((cts->valid & CCB_TRANS_SYNC_OFFSET_VALID) != 0) { if (cts->sync_offset == 0) - sdtrenb &= ~target_mask; + sdtr = ADW_MC_SDTR_ASYNC; } - if (sdtrenb != sdtrenb_orig - || ultraenb != ultraenb_orig) { - adw_lram_write_16(adw, ADW_MC_SDTR_ABLE, - sdtrenb); - adw_lram_write_16(adw, - ADW_MC_ULTRA_ABLE, - ultraenb); + if (sdtr == ADW_MC_SDTR_ASYNC) + sdtrable &= ~target_mask; + else + sdtrable |= target_mask; + if (sdtr != sdtr_orig + || sdtrable != sdtrable_orig) { + adw_set_chip_sdtr(adw, + ccb->ccb_h.target_id, + sdtr); sdtrdone &= ~target_mask; + adw_lram_write_16(adw, ADW_MC_SDTR_ABLE, + sdtrable); adw_lram_write_16(adw, ADW_MC_SDTR_DONE, sdtrdone); + } } } @@ -661,6 +650,8 @@ adw_action(struct cam_sim *sim, union ccb *ccb) cts = &ccb->cts; target_mask = 0x01 << ccb->ccb_h.target_id; if ((cts->flags & CCB_TRANS_USER_SETTINGS) != 0) { + u_int mc_sdtr; + cts->flags = 0; if ((adw->user_discenb & target_mask) != 0) cts->flags |= CCB_TRANS_DISC_ENB; @@ -673,13 +664,12 @@ adw_action(struct cam_sim *sim, union ccb *ccb) else cts->bus_width = MSG_EXT_WDTR_BUS_8_BIT; - if ((adw->user_sdtr & target_mask) != 0) { - if ((adw->user_ultra & target_mask) != 0) - cts->sync_period = 12; /* 20MHz */ - else - cts->sync_period = 25; /* 10MHz */ + mc_sdtr = adw_get_user_sdtr(adw, ccb->ccb_h.target_id); + cts->sync_period = adw_find_period(adw, mc_sdtr); + if (cts->sync_period != 0) cts->sync_offset = 15; /* XXX ??? */ - } + else + cts->sync_offset = 0; cts->valid = CCB_TRANS_SYNC_RATE_VALID | CCB_TRANS_SYNC_OFFSET_VALID @@ -709,7 +699,7 @@ adw_action(struct cam_sim *sim, union ccb *ccb) cts->bus_width = MSG_EXT_WDTR_BUS_8_BIT; cts->sync_period = - ADW_HSHK_CFG_PERIOD_FACTOR(targ_tinfo); + adw_hshk_cfg_period_factor(targ_tinfo); cts->sync_offset = targ_tinfo & ADW_HSHK_CFG_OFFSET; if (cts->sync_period == 0) @@ -760,16 +750,27 @@ adw_action(struct cam_sim *sim, union ccb *ccb) { adw_idle_cmd_status_t status; - adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET, /*param*/0); + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_START, + /*param*/0); status = adw_idle_cmd_wait(adw); - if (status == ADW_IDLE_CMD_SUCCESS) { - ccb->ccb_h.status = CAM_REQ_CMP; - if (bootverbose) { - xpt_print_path(adw->path); - printf("Bus Reset Delivered\n"); - } - } else + if (status != ADW_IDLE_CMD_SUCCESS) { + ccb->ccb_h.status = CAM_REQ_CMP_ERR; + xpt_done(ccb); + break; + } + DELAY(100); + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_END, /*param*/0); + status = adw_idle_cmd_wait(adw); + if (status != ADW_IDLE_CMD_SUCCESS) { ccb->ccb_h.status = CAM_REQ_CMP_ERR; + xpt_done(ccb); + break; + } + ccb->ccb_h.status = CAM_REQ_CMP; + if (bootverbose) { + xpt_print_path(adw->path); + printf("Bus Reset Delivered\n"); + } xpt_done(ccb); break; } @@ -819,7 +820,7 @@ adw_async(void *callback_arg, u_int32_t code, struct cam_path *path, void *arg) } struct adw_softc * -adw_alloc(int unit, bus_space_tag_t tag, bus_space_handle_t bsh) +adw_alloc(device_t dev, struct resource *regs, int regs_type, int regs_id) { struct adw_softc *adw; int i; @@ -829,19 +830,23 @@ adw_alloc(int unit, bus_space_tag_t tag, bus_space_handle_t bsh) */ adw = malloc(sizeof(struct adw_softc), M_DEVBUF, M_NOWAIT); if (adw == NULL) { - printf("adw%d: cannot malloc!\n", unit); + printf("adw%d: cannot malloc!\n", device_get_unit(dev)); return NULL; } bzero(adw, sizeof(struct adw_softc)); LIST_INIT(&adw->pending_ccbs); SLIST_INIT(&adw->sg_maps); - adw->unit = unit; - adw->tag = tag; - adw->bsh = bsh; + adw->device = dev; + adw->unit = device_get_unit(dev); + adw->regs_res_type = regs_type; + adw->regs_res_id = regs_id; + adw->regs = regs; + adw->tag = rman_get_bustag(regs); + adw->bsh = rman_get_bushandle(regs); i = adw->unit / 10; adw->name = malloc(sizeof("adw") + i + 1, M_DEVBUF, M_NOWAIT); if (adw->name == NULL) { - printf("adw%d: cannot malloc name!\n", unit); + printf("adw%d: cannot malloc name!\n", adw->unit); free(adw, M_DEVBUF); return NULL; } @@ -853,7 +858,7 @@ void adw_free(struct adw_softc *adw) { switch (adw->init_level) { - case 6: + case 9: { struct sg_map_node *sg_map; @@ -867,14 +872,22 @@ adw_free(struct adw_softc *adw) } bus_dma_tag_destroy(adw->sg_dmat); } - case 5: + case 8: bus_dmamap_unload(adw->acb_dmat, adw->acb_dmamap); - case 4: + case 7: bus_dmamem_free(adw->acb_dmat, adw->acbs, adw->acb_dmamap); bus_dmamap_destroy(adw->acb_dmat, adw->acb_dmamap); - case 3: + case 6: bus_dma_tag_destroy(adw->acb_dmat); + case 5: + bus_dmamap_unload(adw->carrier_dmat, adw->carrier_dmamap); + case 4: + bus_dmamem_free(adw->carrier_dmat, adw->carriers, + adw->carrier_dmamap); + bus_dmamap_destroy(adw->carrier_dmat, adw->carrier_dmamap); + case 3: + bus_dma_tag_destroy(adw->carrier_dmat); case 2: bus_dma_tag_destroy(adw->buffer_dmat); case 1: @@ -890,16 +903,18 @@ int adw_init(struct adw_softc *adw) { struct adw_eeprom eep_config; + u_int tid; + u_int i; u_int16_t checksum; u_int16_t scsicfg1; - adw_reset_chip(adw); checksum = adw_eeprom_read(adw, &eep_config); bcopy(eep_config.serial_number, adw->serial_number, sizeof(adw->serial_number)); if (checksum != eep_config.checksum) { u_int16_t serial_number[3]; + adw->flags |= ADW_EEPROM_FAILED; printf("%s: EEPROM checksum failed. Restoring Defaults\n", adw_name(adw)); @@ -909,7 +924,7 @@ adw_init(struct adw_softc *adw) * from EEPROM is correct even if the EEPROM checksum * failed. */ - bcopy(&adw_default_eeprom, &eep_config, sizeof(eep_config)); + bcopy(adw->default_eeprom, &eep_config, sizeof(eep_config)); bcopy(adw->serial_number, eep_config.serial_number, sizeof(serial_number)); adw_eeprom_write(adw, &eep_config); @@ -918,8 +933,46 @@ adw_init(struct adw_softc *adw) /* Pull eeprom information into our softc. */ adw->bios_ctrl = eep_config.bios_ctrl; adw->user_wdtr = eep_config.wdtr_able; - adw->user_sdtr = eep_config.sdtr_able; - adw->user_ultra = eep_config.ultra_able; + for (tid = 0; tid < ADW_MAX_TID; tid++) { + u_int mc_sdtr; + u_int16_t tid_mask; + + tid_mask = 0x1 << tid; + if ((adw->features & ADW_ULTRA) != 0) { + /* + * Ultra chips store sdtr and ultraenb + * bits in their seeprom, so we must + * construct valid mc_sdtr entries for + * indirectly. + */ + if (eep_config.sync1.sync_enable & tid_mask) { + if (eep_config.sync2.ultra_enable & tid_mask) + mc_sdtr = ADW_MC_SDTR_20; + else + mc_sdtr = ADW_MC_SDTR_10; + } else + mc_sdtr = ADW_MC_SDTR_ASYNC; + } else { + switch (ADW_TARGET_GROUP(tid)) { + case 3: + mc_sdtr = eep_config.sync4.sdtr4; + break; + case 2: + mc_sdtr = eep_config.sync3.sdtr3; + break; + case 1: + mc_sdtr = eep_config.sync2.sdtr2; + break; + default: /* Shut up compiler */ + case 0: + mc_sdtr = eep_config.sync1.sdtr1; + break; + } + mc_sdtr >>= ADW_TARGET_GROUP_SHIFT(tid); + mc_sdtr &= 0xFF; + } + adw_set_user_sdtr(adw, tid, mc_sdtr); + } adw->user_tagenb = eep_config.tagqng_able; adw->user_discenb = eep_config.disc_enable; adw->max_acbs = eep_config.max_host_qng; @@ -936,15 +989,36 @@ adw_init(struct adw_softc *adw) adw->max_acbs = ADW_DEF_MAX_HOST_QNG; else adw->max_acbs = ADW_DEF_MIN_HOST_QNG; - } scsicfg1 = 0; - switch (eep_config.termination) { + if ((adw->features & ADW_ULTRA2) != 0) { + switch (eep_config.termination_lvd) { + default: + printf("%s: Invalid EEPROM LVD Termination Settings.\n", + adw_name(adw)); + printf("%s: Reverting to Automatic LVD Termination\n", + adw_name(adw)); + /* FALLTHROUGH */ + case ADW_EEPROM_TERM_AUTO: + break; + case ADW_EEPROM_TERM_BOTH_ON: + scsicfg1 |= ADW2_SCSI_CFG1_TERM_LVD_LO; + /* FALLTHROUGH */ + case ADW_EEPROM_TERM_HIGH_ON: + scsicfg1 |= ADW2_SCSI_CFG1_TERM_LVD_HI; + /* FALLTHROUGH */ + case ADW_EEPROM_TERM_OFF: + scsicfg1 |= ADW2_SCSI_CFG1_DIS_TERM_DRV; + break; + } + } + + switch (eep_config.termination_se) { default: - printf("%s: Invalid EEPROM Termination Settings.\n", + printf("%s: Invalid SE EEPROM Termination Settings.\n", adw_name(adw)); - printf("%s: Reverting to Automatic Termination\n", + printf("%s: Reverting to Automatic SE Termination\n", adw_name(adw)); /* FALLTHROUGH */ case ADW_EEPROM_TERM_AUTO: @@ -959,29 +1033,79 @@ adw_init(struct adw_softc *adw) scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_MANUAL; break; } - printf("%s: SCSI ID %d, ", adw_name(adw), adw->initiator_id); - if (adw_init_chip(adw, scsicfg1) != 0) - return (-1); - - printf("Queue Depth %d\n", adw->max_acbs); - /* DMA tag for mapping buffers into device visible space. */ if (bus_dma_tag_create(adw->parent_dmat, /*alignment*/1, /*boundary*/0, - /*lowaddr*/BUS_SPACE_MAXADDR, + /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, /*highaddr*/BUS_SPACE_MAXADDR, /*filter*/NULL, /*filterarg*/NULL, /*maxsize*/MAXBSIZE, /*nsegments*/ADW_SGSIZE, /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT, /*flags*/BUS_DMA_ALLOCNOW, &adw->buffer_dmat) != 0) { - return (-1); + return (ENOMEM); + } + + adw->init_level++; + + /* DMA tag for our ccb carrier structures */ + if (bus_dma_tag_create(adw->parent_dmat, /*alignment*/0x10, + /*boundary*/0, + /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, + /*highaddr*/BUS_SPACE_MAXADDR, + /*filter*/NULL, /*filterarg*/NULL, + (adw->max_acbs + ADW_NUM_CARRIER_QUEUES + 1) + * sizeof(struct adw_carrier), + /*nsegments*/1, + /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT, + /*flags*/0, &adw->carrier_dmat) != 0) { + return (ENOMEM); + } + + adw->init_level++; + + /* Allocation for our ccb carrier structures */ + if (bus_dmamem_alloc(adw->carrier_dmat, (void **)&adw->carriers, + BUS_DMA_NOWAIT, &adw->carrier_dmamap) != 0) { + return (ENOMEM); + } + + adw->init_level++; + + /* And permanently map them */ + bus_dmamap_load(adw->carrier_dmat, adw->carrier_dmamap, + adw->carriers, + (adw->max_acbs + ADW_NUM_CARRIER_QUEUES + 1) + * sizeof(struct adw_carrier), + adwmapmem, &adw->carrier_busbase, /*flags*/0); + + /* Clear them out. */ + bzero(adw->carriers, (adw->max_acbs + ADW_NUM_CARRIER_QUEUES + 1) + * sizeof(struct adw_carrier)); + + /* Setup our free carrier list */ + adw->free_carriers = adw->carriers; + for (i = 0; i < adw->max_acbs + ADW_NUM_CARRIER_QUEUES; i++) { + adw->carriers[i].carr_offset = + carriervtobo(adw, &adw->carriers[i]); + adw->carriers[i].carr_ba = + carriervtob(adw, &adw->carriers[i]); + adw->carriers[i].areq_ba = 0; + adw->carriers[i].next_ba = + carriervtobo(adw, &adw->carriers[i+1]); } + /* Terminal carrier. Never leaves the freelist */ + adw->carriers[i].carr_offset = + carriervtobo(adw, &adw->carriers[i]); + adw->carriers[i].carr_ba = + carriervtob(adw, &adw->carriers[i]); + adw->carriers[i].areq_ba = 0; + adw->carriers[i].next_ba = ~0; adw->init_level++; - /* DMA tag for our ccb structures */ + /* DMA tag for our acb structures */ if (bus_dma_tag_create(adw->parent_dmat, /*alignment*/1, /*boundary*/0, /*lowaddr*/BUS_SPACE_MAXADDR, /*highaddr*/BUS_SPACE_MAXADDR, @@ -990,16 +1114,15 @@ adw_init(struct adw_softc *adw) /*nsegments*/1, /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT, /*flags*/0, &adw->acb_dmat) != 0) { - return (-1); + return (ENOMEM); } adw->init_level++; /* Allocation for our ccbs */ if (bus_dmamem_alloc(adw->acb_dmat, (void **)&adw->acbs, - BUS_DMA_NOWAIT, &adw->acb_dmamap) != 0) { - return (-1); - } + BUS_DMA_NOWAIT, &adw->acb_dmamap) != 0) + return (ENOMEM); adw->init_level++; @@ -1020,14 +1143,19 @@ adw_init(struct adw_softc *adw) PAGE_SIZE, /*nsegments*/1, /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT, /*flags*/0, &adw->sg_dmat) != 0) { - return (-1); + return (ENOMEM); } adw->init_level++; /* Allocate our first batch of ccbs */ if (adwallocacbs(adw) == 0) - return (-1); + return (ENOMEM); + + if (adw_init_chip(adw, scsicfg1) != 0) + return (ENXIO); + + printf("Queue Depth %d\n", adw->max_acbs); return (0); } @@ -1040,6 +1168,18 @@ adw_attach(struct adw_softc *adw) { struct ccb_setasync csa; struct cam_devq *devq; + int s; + int error; + + error = 0; + s = splcam(); + /* Hook up our interrupt handler */ + if ((error = bus_setup_intr(adw->device, adw->irq, INTR_TYPE_CAM, + adw_intr, adw, &adw->ih)) != 0) { + device_printf(adw->device, "bus_setup_intr() failed: %d\n", + error); + goto fail; + } /* Start the Risc processor now that we are fully configured. */ adw_outw(adw, ADW_RISC_CSR, ADW_RISC_CSR_RUN); @@ -1049,22 +1189,25 @@ adw_attach(struct adw_softc *adw) */ devq = cam_simq_alloc(adw->max_acbs); if (devq == NULL) - return (0); + return (ENOMEM); /* * Construct our SIM entry. */ adw->sim = cam_sim_alloc(adw_action, adw_poll, "adw", adw, adw->unit, 1, adw->max_acbs, devq); - if (adw->sim == NULL) - return (0); + if (adw->sim == NULL) { + error = ENOMEM; + goto fail; + } /* * Register the bus. */ if (xpt_bus_register(adw->sim, 0) != CAM_SUCCESS) { cam_sim_free(adw->sim, /*free devq*/TRUE); - return (0); + error = ENOMEM; + goto fail; } if (xpt_create_path(&adw->path, /*periph*/NULL, cam_sim_path(adw->sim), @@ -1078,7 +1221,9 @@ adw_attach(struct adw_softc *adw) xpt_action((union ccb *)&csa); } - return (0); +fail: + splx(s); + return (error); } void @@ -1086,9 +1231,6 @@ adw_intr(void *arg) { struct adw_softc *adw; u_int int_stat; - u_int next_doneq; - u_int next_completeq; - u_int doneq_start; adw = (struct adw_softc *)arg; if ((adw_inw(adw, ADW_CTRL_REG) & ADW_CTRL_REG_HOST_INTR) == 0) @@ -1098,61 +1240,80 @@ adw_intr(void *arg) int_stat = adw_inb(adw, ADW_INTR_STATUS_REG); if ((int_stat & ADW_INTR_STATUS_INTRB) != 0) { - /* Idle Command Complete */ - adw->idle_command_cmp = 1; - switch (adw->idle_cmd) { - case ADW_IDLE_CMD_DEVICE_RESET: - adw_handle_device_reset(adw, - /*target*/adw->idle_cmd_param); + u_int intrb_code; + + /* Async Microcode Event */ + intrb_code = adw_lram_read_8(adw, ADW_MC_INTRB_CODE); + switch (intrb_code) { + case ADW_ASYNC_CARRIER_READY_FAILURE: + /* + * The RISC missed our update of + * the commandq. + */ + if (LIST_FIRST(&adw->pending_ccbs) != NULL) + adw_tickle_risc(adw, ADW_TICKLE_A); break; - case ADW_IDLE_CMD_SCSI_RESET: - adw_handle_bus_reset(adw, /*initiated*/TRUE); + case ADW_ASYNC_SCSI_BUS_RESET_DET: + /* + * The firmware detected a SCSI Bus reset. + */ + printf("Someone Reset the Bus\n"); + adw_handle_bus_reset(adw, /*initiated*/FALSE); break; - default: + case ADW_ASYNC_RDMA_FAILURE: + /* + * Handle RDMA failure by resetting the + * SCSI Bus and chip. + */ +#if XXX + AdvResetChipAndSB(adv_dvc_varp); +#endif + break; + + case ADW_ASYNC_HOST_SCSI_BUS_RESET: + /* + * Host generated SCSI bus reset occurred. + */ + adw_handle_bus_reset(adw, /*initiated*/TRUE); + break; + default: + printf("adw_intr: unknown async code 0x%x\n", + intrb_code); break; } - adw->idle_cmd = ADW_IDLE_CMD_COMPLETED; } - if ((int_stat & ADW_INTR_STATUS_INTRC) != 0) { - /* SCSI Bus Reset */ - adw_handle_bus_reset(adw, /*initiated*/FALSE); - } - /* - * ADW_MC_HOST_NEXT_DONE is actually the last completed RISC - * Queue List request. Its forward pointer (RQL_FWD) points to the - * current completed RISC Queue List request. + * Run down the RequestQ. */ - next_doneq = adw_lram_read_8(adw, ADW_MC_HOST_NEXT_DONE); - next_doneq = ADW_MC_RISC_Q_LIST_BASE + RQL_FWD - + (next_doneq * ADW_MC_RISC_Q_LIST_SIZE); - - next_completeq = adw_lram_read_8(adw, next_doneq); - doneq_start = ADW_MC_NULL_Q; - /* Loop until all completed Q's are processed. */ - while (next_completeq != ADW_MC_NULL_Q) { - u_int32_t acb_busaddr; - struct acb *acb; - union ccb *ccb; - - doneq_start = next_completeq; - - next_doneq = ADW_MC_RISC_Q_LIST_BASE + - (next_completeq * ADW_MC_RISC_Q_LIST_SIZE); - + while ((adw->responseq->next_ba & ADW_RQ_DONE) != 0) { + struct adw_carrier *free_carrier; + struct acb *acb; + union ccb *ccb; + +#if 0 + printf("0x%x, 0x%x, 0x%x, 0x%x\n", + adw->responseq->carr_offset, + adw->responseq->carr_ba, + adw->responseq->areq_ba, + adw->responseq->next_ba); +#endif /* - * Read the ADW_SCSI_REQ_Q physical address pointer from - * the RISC list entry. + * The firmware copies the adw_scsi_req_q.acb_baddr + * field into the areq_ba field of the carrier. */ - acb_busaddr = adw_lram_read_32(adw, next_doneq + RQL_PHYADDR); - acb = acbptov(adw, acb_busaddr); - - /* Change the RISC Queue List state to free. */ - adw_lram_write_8(adw, next_doneq + RQL_STATE, ADW_MC_QS_FREE); + acb = acbbotov(adw, adw->responseq->areq_ba); - /* Get the RISC Queue List forward pointer. */ - next_completeq = adw_lram_read_8(adw, next_doneq + RQL_FWD); + /* + * The least significant four bits of the next_ba + * field are used as flags. Mask them out and then + * advance through the list. + */ + free_carrier = adw->responseq; + adw->responseq = + carrierbotov(adw, free_carrier->next_ba & ADW_NEXT_BA_MASK); + free_carrier->next_ba = adw->free_carriers->carr_offset; + adw->free_carriers = free_carrier; /* Process CCB */ ccb = acb->ccb; @@ -1195,14 +1356,10 @@ adw_intr(void *arg) } adwfreeacb(adw, acb); xpt_done(ccb); - } else { adwprocesserror(adw, acb); } } - - if (doneq_start != ADW_MC_NULL_Q) - adw_lram_write_8(adw, ADW_MC_HOST_NEXT_DONE, doneq_start); } static void @@ -1239,11 +1396,26 @@ adwprocesserror(struct adw_softc *adw, struct acb *acb) break; case QHSTA_M_WTM_TIMEOUT: case QHSTA_M_SXFR_WD_TMO: + { + adw_idle_cmd_status_t status; + /* The SCSI bus hung in a phase */ ccb->ccb_h.status = CAM_SEQUENCE_FAIL; - adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET, + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_START, /*param*/0); + status = adw_idle_cmd_wait(adw); + if (status != ADW_IDLE_CMD_SUCCESS) + panic("%s: Bus Reset during WD timeout failed", + adw_name(adw)); + DELAY(100); + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_END, + /*param*/0); + status = adw_idle_cmd_wait(adw); + if (status != ADW_IDLE_CMD_SUCCESS) + panic("%s: Bus Reset during WD timeout failed", + adw_name(adw)); break; + } case QHSTA_M_SXFR_XFR_PH_ERR: ccb->ccb_h.status = CAM_SEQUENCE_FAIL; break; @@ -1314,8 +1486,17 @@ adwtimeout(void *arg) if (status == ADW_IDLE_CMD_SUCCESS) { printf("%s: BDR Delivered. No longer in timeout\n", adw_name(adw)); + adw_handle_device_reset(adw, ccb->ccb_h.target_id); } else { - adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET, /*param*/0); + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_START, + /*param*/0); + status = adw_idle_cmd_wait(adw); + if (status != ADW_IDLE_CMD_SUCCESS) + panic("%s: Bus Reset during timeout failed", + adw_name(adw)); + DELAY(100); + adw_idle_cmd_send(adw, ADW_IDLE_CMD_SCSI_RESET_END, + /*param*/0); status = adw_idle_cmd_wait(adw); if (status != ADW_IDLE_CMD_SUCCESS) panic("%s: Bus Reset during timeout failed", diff --git a/sys/dev/advansys/adwlib.c b/sys/dev/advansys/adwlib.c index 1195f503cfe2..bbce9f9c389b 100644 --- a/sys/dev/advansys/adwlib.c +++ b/sys/dev/advansys/adwlib.c @@ -2,7 +2,7 @@ * Low level routines for Second Generation * Advanced Systems Inc. SCSI controllers chips * - * Copyright (c) 1998 Justin Gibbs. + * Copyright (c) 1998, 1999, 2000 Justin Gibbs. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -10,7 +10,7 @@ * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions, and the following disclaimer, - * without modification, immediately at the beginning of the file. + * without modification. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. @@ -46,6 +46,7 @@ #include #include +#include #include #include @@ -57,57 +58,116 @@ #include -struct adw_eeprom adw_default_eeprom = { - ADW_EEPROM_BIOS_ENABLE, /* cfg_lsw */ - 0x0000, /* cfg_msw */ - 0xFFFF, /* disc_enable */ - 0xFFFF, /* wdtr_able */ - 0xFFFF, /* sdtr_able */ - 0xFFFF, /* start_motor */ - 0xFFFF, /* tagqng_able */ - 0xFFFF, /* bios_scan */ - 0, /* scam_tolerant */ - 7, /* adapter_scsi_id */ - 0, /* bios_boot_delay */ - 3, /* scsi_reset_delay */ - 0, /* bios_id_lun */ - 0, /* termination */ - 0, /* reserved1 */ - { /* Bios Ctrl */ - 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, +const struct adw_eeprom adw_asc3550_default_eeprom = +{ + ADW_EEPROM_BIOS_ENABLE, /* cfg_lsw */ + 0x0000, /* cfg_msw */ + 0xFFFF, /* disc_enable */ + 0xFFFF, /* wdtr_able */ + { 0xFFFF }, /* sdtr_able */ + 0xFFFF, /* start_motor */ + 0xFFFF, /* tagqng_able */ + 0xFFFF, /* bios_scan */ + 0, /* scam_tolerant */ + 7, /* adapter_scsi_id */ + 0, /* bios_boot_delay */ + 3, /* scsi_reset_delay */ + 0, /* bios_id_lun */ + 0, /* termination */ + 0, /* reserved1 */ + 0xFFE7, /* bios_ctrl */ + { 0xFFFF }, /* ultra_able */ + { 0 }, /* reserved2 */ + ADW_DEF_MAX_HOST_QNG, /* max_host_qng */ + ADW_DEF_MAX_DVC_QNG, /* max_dvc_qng */ + 0, /* dvc_cntl */ + { 0 }, /* bug_fix */ + { 0, 0, 0 }, /* serial_number */ + 0, /* check_sum */ + { /* oem_name[16] */ + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }, - 0xFFFF, /* ultra_able */ - 0, /* reserved2 */ - ADW_DEF_MAX_HOST_QNG, /* max_host_qng */ - ADW_DEF_MAX_DVC_QNG, /* max_dvc_qng */ - 0, /* dvc_cntl */ - 0, /* bug_fix */ - { 0, 0, 0 }, /* serial_number */ - 0, /* check_sum */ - { /* oem_name[16] */ + 0, /* dvc_err_code */ + 0, /* adv_err_code */ + 0, /* adv_err_addr */ + 0, /* saved_dvc_err_code */ + 0, /* saved_adv_err_code */ + 0 /* saved_adv_err_addr */ +}; + +const struct adw_eeprom adw_asc38C0800_default_eeprom = +{ + ADW_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */ + 0x0000, /* 01 cfg_msw */ + 0xFFFF, /* 02 disc_enable */ + 0xFFFF, /* 03 wdtr_able */ + { 0x4444 }, /* 04 sdtr_speed1 */ + 0xFFFF, /* 05 start_motor */ + 0xFFFF, /* 06 tagqng_able */ + 0xFFFF, /* 07 bios_scan */ + 0, /* 08 scam_tolerant */ + 7, /* 09 adapter_scsi_id */ + 0, /* bios_boot_delay */ + 3, /* 10 scsi_reset_delay */ + 0, /* bios_id_lun */ + 0, /* 11 termination_se */ + 0, /* termination_lvd */ + 0xFFE7, /* 12 bios_ctrl */ + { 0x4444 }, /* 13 sdtr_speed2 */ + { 0x4444 }, /* 14 sdtr_speed3 */ + ADW_DEF_MAX_HOST_QNG, /* 15 max_host_qng */ + ADW_DEF_MAX_DVC_QNG, /* max_dvc_qng */ + 0, /* 16 dvc_cntl */ + { 0x4444 } , /* 17 sdtr_speed4 */ + { 0, 0, 0 }, /* 18-20 serial_number */ + 0, /* 21 check_sum */ + { /* 22-29 oem_name[16] */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, - 0, /* dvc_err_code */ - 0, /* adv_err_code */ - 0, /* adv_err_addr */ - 0, /* saved_dvc_err_code */ - 0, /* saved_adv_err_code */ - 0, /* saved_adv_err_addr */ - 0 /* num_of_err */ + 0, /* 30 dvc_err_code */ + 0, /* 31 adv_err_code */ + 0, /* 32 adv_err_addr */ + 0, /* 33 saved_dvc_err_code */ + 0, /* 34 saved_adv_err_code */ + 0, /* 35 saved_adv_err_addr */ + { /* 36 - 55 reserved */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + }, + 0, /* 56 cisptr_lsw */ + 0, /* 57 cisprt_msw */ + /* 58-59 sub-id */ + (PCI_ID_ADVANSYS_38C0800_REV1 & PCI_ID_DEV_VENDOR_MASK) >> 32, +}; + +#define ADW_MC_SDTR_OFFSET_ULTRA2_DT 0 +#define ADW_MC_SDTR_OFFSET_ULTRA2 1 +#define ADW_MC_SDTR_OFFSET_ULTRA 2 +const struct adw_syncrate adw_syncrates[] = +{ + /* mc_sdtr period rate */ + { ADW_MC_SDTR_80, 9, "80.0" }, + { ADW_MC_SDTR_40, 10, "40.0" }, + { ADW_MC_SDTR_20, 12, "20.0" }, + { ADW_MC_SDTR_10, 25, "10.0" }, + { ADW_MC_SDTR_5, 50, "5.0" }, + { ADW_MC_SDTR_ASYNC, 0, "async" } }; +const int adw_num_syncrates = sizeof(adw_syncrates) / sizeof(adw_syncrates[0]); + static u_int16_t adw_eeprom_read_16(struct adw_softc *adw, int addr); static void adw_eeprom_write_16(struct adw_softc *adw, int addr, u_int data); static void adw_eeprom_wait(struct adw_softc *adw); int -adw_find_signature(bus_space_tag_t tag, bus_space_handle_t bsh) +adw_find_signature(struct adw_softc *adw) { - if (bus_space_read_1(tag, bsh, ADW_SIGNATURE_BYTE) == ADW_CHIP_ID_BYTE - && bus_space_read_2(tag, bsh, ADW_SIGNATURE_WORD) == ADW_CHIP_ID_WORD) + if (adw_inb(adw, ADW_SIGNATURE_BYTE) == ADW_CHIP_ID_BYTE + && adw_inw(adw, ADW_SIGNATURE_WORD) == ADW_CHIP_ID_WORD) return (1); return (0); } @@ -119,24 +179,14 @@ void adw_reset_chip(struct adw_softc *adw) { adw_outw(adw, ADW_CTRL_REG, ADW_CTRL_REG_CMD_RESET); - DELAY(100); + DELAY(1000 * 100); adw_outw(adw, ADW_CTRL_REG, ADW_CTRL_REG_CMD_WR_IO_REG); /* * Initialize Chip registers. */ - adw_outb(adw, ADW_MEM_CFG, - adw_inb(adw, ADW_MEM_CFG) | ADW_MEM_CFG_RAM_SZ_8KB); - adw_outw(adw, ADW_SCSI_CFG1, adw_inw(adw, ADW_SCSI_CFG1) & ~ADW_SCSI_CFG1_BIG_ENDIAN); - - /* - * Setting the START_CTL_EM_FU 3:2 bits sets a FIFO threshold - * of 128 bytes. This register is only accessible to the host. - */ - adw_outb(adw, ADW_DMA_CFG0, - ADW_DMA_CFG0_START_CTL_EM_FU|ADW_DMA_CFG0_READ_CMD_MRM); } /* @@ -256,13 +306,17 @@ adw_eeprom_write(struct adw_softc *adw, struct adw_eeprom *eep_buf) int adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) { - u_int8_t biosmem[ADW_MC_BIOSLEN]; - u_int16_t *mcodebuf; - u_int addr; - u_int end_addr; - u_int checksum; - u_int scsicfg1; - u_int i; + u_int8_t biosmem[ADW_MC_BIOSLEN]; + const u_int16_t *word_table; + const u_int8_t *byte_codes; + const u_int8_t *byte_codes_end; + u_int bios_sig; + u_int bytes_downloaded; + u_int addr; + u_int end_addr; + u_int checksum; + u_int scsicfg1; + u_int tid; /* * Save the RISC memory BIOS region before writing the microcode. @@ -273,19 +327,114 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) biosmem[addr] = adw_lram_read_8(adw, ADW_MC_BIOSMEM + addr); /* - * Load the Microcode. Casting here was less work than - * reformatting the supplied microcode into an array of - * 16bit values... + * Save current per TID negotiated values if the BIOS has been + * loaded (BIOS signature is present). These will be used if + * we cannot get information from the EEPROM. + */ + addr = ADW_MC_BIOS_SIGNATURE - ADW_MC_BIOSMEM; + bios_sig = biosmem[addr] + | (biosmem[addr + 1] << 8); + if (bios_sig == 0x55AA + && (adw->flags & ADW_EEPROM_FAILED) != 0) { + u_int major_ver; + u_int minor_ver; + u_int sdtr_able; + + addr = ADW_MC_BIOS_VERSION - ADW_MC_BIOSMEM; + minor_ver = biosmem[addr + 1] & 0xF; + major_ver = (biosmem[addr + 1] >> 4) & 0xF; + if ((adw->chip == ADW_CHIP_ASC3550) + && (major_ver <= 3 + || (major_ver == 3 && minor_ver == 1))) { + /* + * BIOS 3.1 and earlier location of + * 'wdtr_able' variable. + */ + adw->user_wdtr = + adw_lram_read_16(adw, ADW_MC_WDTR_ABLE_BIOS_31); + } else { + adw->user_wdtr = + adw_lram_read_16(adw, ADW_MC_WDTR_ABLE); + } + sdtr_able = adw_lram_read_16(adw, ADW_MC_SDTR_ABLE); + for (tid = 0; tid < ADW_MAX_TID; tid++) { + u_int tid_mask; + u_int mc_sdtr; + + tid_mask = 0x1 << tid; + if ((sdtr_able & tid_mask) == 0) + mc_sdtr = ADW_MC_SDTR_ASYNC; + else if ((adw->features & ADW_DT) != 0) + mc_sdtr = ADW_MC_SDTR_80; + else if ((adw->features & ADW_ULTRA2) != 0) + mc_sdtr = ADW_MC_SDTR_40; + else + mc_sdtr = ADW_MC_SDTR_20; + adw_set_user_sdtr(adw, tid, mc_sdtr); + } + adw->user_tagenb = adw_lram_read_16(adw, ADW_MC_TAGQNG_ABLE); + } + + /* + * Load the Microcode. + * + * Assume the following compressed format of the microcode buffer: + * + * 253 word (506 byte) table indexed by byte code followed + * by the following byte codes: + * + * 1-Byte Code: + * 00: Emit word 0 in table. + * 01: Emit word 1 in table. + * . + * FD: Emit word 253 in table. + * + * Multi-Byte Code: + * FD RESEVED + * + * FE WW WW: (3 byte code) + * Word to emit is the next word WW WW. + * FF BB WW WW: (4 byte code) + * Emit BB count times next word WW WW. + * */ - mcodebuf = (u_int16_t *)adw_mcode; + bytes_downloaded = 0; + word_table = (const u_int16_t *)adw->mcode_data->mcode_buf; + byte_codes = (const u_int8_t *)&word_table[253]; + byte_codes_end = adw->mcode_data->mcode_buf + + adw->mcode_data->mcode_size; adw_outw(adw, ADW_RAM_ADDR, 0); - for (addr = 0; addr < adw_mcode_size/2; addr++) - adw_outw(adw, ADW_RAM_DATA, mcodebuf[addr]); + while (byte_codes < byte_codes_end) { + if (*byte_codes == 0xFF) { + u_int16_t value; + + value = byte_codes[2] + | byte_codes[3] << 8; + adw_set_multi_2(adw, ADW_RAM_DATA, + value, byte_codes[1]); + bytes_downloaded += byte_codes[1]; + byte_codes += 4; + } else if (*byte_codes == 0xFE) { + u_int16_t value; + + value = byte_codes[1] + | byte_codes[2] << 8; + adw_outw(adw, ADW_RAM_DATA, value); + bytes_downloaded++; + byte_codes += 3; + } else { + adw_outw(adw, ADW_RAM_DATA, word_table[*byte_codes]); + bytes_downloaded++; + byte_codes++; + } + } + /* Convert from words to bytes */ + bytes_downloaded *= 2; /* * Clear the rest of LRAM. */ - for (; addr < ADW_CONDOR_MEMSIZE/2; addr++) + for (addr = bytes_downloaded; addr < adw->memsize; addr += 2) adw_outw(adw, ADW_RAM_DATA, 0); /* @@ -293,12 +442,12 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) */ checksum = 0; adw_outw(adw, ADW_RAM_ADDR, 0); - for (addr = 0; addr < adw_mcode_size/2; addr++) + for (addr = 0; addr < bytes_downloaded; addr += 2) checksum += adw_inw(adw, ADW_RAM_DATA); - if (checksum != adw_mcode_chksum) { + if (checksum != adw->mcode_data->mcode_chksum) { printf("%s: Firmware load failed!\n", adw_name(adw)); - return (-1); + return (EIO); } /* @@ -311,27 +460,36 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) * Calculate and write the microcode code checksum to * the microcode code checksum location. */ - addr = adw_lram_read_16(adw, ADW_MC_CODE_BEGIN_ADDR) / 2; - end_addr = adw_lram_read_16(adw, ADW_MC_CODE_END_ADDR) / 2; + addr = adw_lram_read_16(adw, ADW_MC_CODE_BEGIN_ADDR); + end_addr = adw_lram_read_16(adw, ADW_MC_CODE_END_ADDR); checksum = 0; - for (; addr < end_addr; addr++) - checksum += mcodebuf[addr]; + adw_outw(adw, ADW_RAM_ADDR, addr); + for (; addr < end_addr; addr += 2) + checksum += adw_inw(adw, ADW_RAM_DATA); adw_lram_write_16(adw, ADW_MC_CODE_CHK_SUM, checksum); /* - * Initialize microcode operating variables + * Tell the microcode what kind of chip it's running on. */ - adw_lram_write_16(adw, ADW_MC_ADAPTER_SCSI_ID, adw->initiator_id); + adw_lram_write_16(adw, ADW_MC_CHIP_TYPE, adw->chip); /* * Leave WDTR and SDTR negotiation disabled until the XPT has - * informed us of device capabilities, but do set the ultra mask - * in case we receive an SDTR request from the target before we - * negotiate. We turn on tagged queuing at the microcode level - * for all devices, and modulate this on a per command basis. + * informed us of device capabilities, but do set the desired + * user rates in case we receive an SDTR request from the target + * before we negotiate. We turn on tagged queuing at the microcode + * level for all devices, and modulate this on a per command basis. */ - adw_lram_write_16(adw, ADW_MC_ULTRA_ABLE, adw->user_ultra); + adw_lram_write_16(adw, ADW_MC_SDTR_SPEED1, adw->user_sdtr[0]); + adw_lram_write_16(adw, ADW_MC_SDTR_SPEED2, adw->user_sdtr[1]); + adw_lram_write_16(adw, ADW_MC_SDTR_SPEED3, adw->user_sdtr[2]); + adw_lram_write_16(adw, ADW_MC_SDTR_SPEED4, adw->user_sdtr[3]); adw_lram_write_16(adw, ADW_MC_DISC_ENABLE, adw->user_discenb); + for (tid = 0; tid < ADW_MAX_TID; tid++) { + /* Cam limits the maximum number of commands for us */ + adw_lram_write_8(adw, ADW_MC_NUMBER_OF_MAX_CMD + tid, + adw->max_acbs); + } adw_lram_write_16(adw, ADW_MC_TAGQNG_ABLE, ~0); /* @@ -343,7 +501,14 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) adw_lram_write_16(adw, ADW_MC_DEFAULT_SCSI_CFG0, ADW_SCSI_CFG0_PARITY_EN|ADW_SCSI_CFG0_SEL_TMO_LONG| ADW_SCSI_CFG0_OUR_ID_EN|adw->initiator_id); - + + /* + * Tell the MC about the memory size that + * was setup by the probe code. + */ + adw_lram_write_16(adw, ADW_MC_DEFAULT_MEM_CFG, + adw_inb(adw, ADW_MEM_CFG) & ADW_MEM_CFG_RAM_SZ_MASK); + /* * Determine SCSI_CFG1 Microcode Default Value. * @@ -352,17 +517,6 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) */ scsicfg1 = adw_inw(adw, ADW_SCSI_CFG1); - /* - * If all three connectors are in use, return an error. - */ - if ((scsicfg1 & ADW_SCSI_CFG1_ILLEGAL_CABLE_CONF_A_MASK) == 0 - || (scsicfg1 & ADW_SCSI_CFG1_ILLEGAL_CABLE_CONF_B_MASK) == 0) { - printf("%s: Illegal Cable Config!\n", adw_name(adw)); - printf("%s: Only Two Ports may be used at a time!\n", - adw_name(adw)); - return (-1); - } - /* * If the internal narrow cable is reversed all of the SCSI_CTRL * register signals will be set. Check for and return an error if @@ -371,91 +525,168 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) if ((adw_inw(adw, ADW_SCSI_CTRL) & 0x3F07) == 0x3F07) { printf("%s: Illegal Cable Config!\n", adw_name(adw)); printf("%s: Internal cable is reversed!\n", adw_name(adw)); - return (-1); + return (EIO); } /* * If this is a differential board and a single-ended device * is attached to one of the connectors, return an error. */ - if ((scsicfg1 & ADW_SCSI_CFG1_DIFF_MODE) != 0 - && (scsicfg1 & ADW_SCSI_CFG1_DIFF_SENSE) == 0) { - printf("%s: A Single Ended Device is attached to our " - "differential bus!\n", adw_name(adw)); - return (-1); + if ((adw->features & ADW_ULTRA) != 0) { + if ((scsicfg1 & ADW_SCSI_CFG1_DIFF_MODE) != 0 + && (scsicfg1 & ADW_SCSI_CFG1_DIFF_SENSE) == 0) { + printf("%s: A Single Ended Device is attached to our " + "differential bus!\n", adw_name(adw)); + return (EIO); + } + } else { + if ((scsicfg1 & ADW2_SCSI_CFG1_DEV_DETECT_HVD) != 0) { + printf("%s: A High Voltage Differential Device " + "is attached to this controller.\n", + adw_name(adw)); + printf("%s: HVD devices are not supported.\n", + adw_name(adw)); + return (EIO); + } } /* * Perform automatic termination control if desired. */ - if (term_scsicfg1 == 0) { - switch(scsicfg1 & ADW_SCSI_CFG1_CABLE_DETECT) { - case (ADW_SCSI_CFG1_INT16_MASK|ADW_SCSI_CFG1_INT8_MASK): - case (ADW_SCSI_CFG1_INT16_MASK| - ADW_SCSI_CFG1_INT8_MASK|ADW_SCSI_CFG1_EXT8_MASK): - case (ADW_SCSI_CFG1_INT16_MASK| - ADW_SCSI_CFG1_INT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - case (ADW_SCSI_CFG1_INT16_MASK| - ADW_SCSI_CFG1_EXT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - case (ADW_SCSI_CFG1_INT8_MASK| - ADW_SCSI_CFG1_EXT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - case (ADW_SCSI_CFG1_INT16_MASK|ADW_SCSI_CFG1_INT8_MASK| - ADW_SCSI_CFG1_EXT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - /* Two out of three cables missing. Both on. */ - term_scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_L - | ADW_SCSI_CFG1_TERM_CTL_H; - break; - case (ADW_SCSI_CFG1_INT16_MASK): - case (ADW_SCSI_CFG1_INT16_MASK|ADW_SCSI_CFG1_EXT8_MASK): - case (ADW_SCSI_CFG1_INT16_MASK|ADW_SCSI_CFG1_EXT16_MASK): - case (ADW_SCSI_CFG1_INT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - case (ADW_SCSI_CFG1_EXT8_MASK|ADW_SCSI_CFG1_EXT16_MASK): - /* No two 16bit cables present. High on. */ + if ((adw->features & ADW_ULTRA2) != 0) { + u_int cable_det; + + /* + * Ultra2 Chips require termination disabled to + * detect cable presence. + */ + adw_outw(adw, ADW_SCSI_CFG1, + scsicfg1 | ADW2_SCSI_CFG1_DIS_TERM_DRV); + cable_det = adw_inw(adw, ADW_SCSI_CFG1); + adw_outw(adw, ADW_SCSI_CFG1, scsicfg1); + + /* SE Termination first if auto-term has been specified */ + if ((term_scsicfg1 & ADW_SCSI_CFG1_TERM_CTL_MASK) == 0) { + + /* + * For all SE cable configurations, high byte + * termination is enabled. + */ term_scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_H; - break; - case (ADW_SCSI_CFG1_INT8_MASK): - case (ADW_SCSI_CFG1_INT8_MASK|ADW_SCSI_CFG1_EXT8_MASK): - /* Wide -> Wide or Narrow -> Wide. Both off */ - break; + if ((cable_det & ADW_SCSI_CFG1_INT8_MASK) != 0 + || (cable_det & ADW_SCSI_CFG1_INT16_MASK) != 0) { + /* + * If either cable is not present, the + * low byte must be terminated as well. + */ + term_scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_L; + } + } + + /* LVD auto-term */ + if ((term_scsicfg1 & ADW2_SCSI_CFG1_TERM_CTL_LVD) == 0 + && (term_scsicfg1 & ADW2_SCSI_CFG1_DIS_TERM_DRV) == 0) { + /* + * If both cables are installed, termination + * is disabled. Otherwise it is enabled. + */ + if ((cable_det & ADW2_SCSI_CFG1_EXTLVD_MASK) != 0 + || (cable_det & ADW2_SCSI_CFG1_INTLVD_MASK) != 0) { + + term_scsicfg1 |= ADW2_SCSI_CFG1_TERM_CTL_LVD; + } + } + term_scsicfg1 &= ~ADW2_SCSI_CFG1_DIS_TERM_DRV; + } else { + /* Ultra Controller Termination */ + if ((term_scsicfg1 & ADW_SCSI_CFG1_TERM_CTL_MASK) == 0) { + int cable_count; + int wide_cable_count; + + cable_count = 0; + wide_cable_count = 0; + if ((scsicfg1 & ADW_SCSI_CFG1_INT16_MASK) == 0) { + cable_count++; + wide_cable_count++; + } + if ((scsicfg1 & ADW_SCSI_CFG1_INT8_MASK) == 0) + cable_count++; + + /* There is only one external port */ + if ((scsicfg1 & ADW_SCSI_CFG1_EXT16_MASK) == 0) { + cable_count++; + wide_cable_count++; + } else if ((scsicfg1 & ADW_SCSI_CFG1_EXT8_MASK) == 0) + cable_count++; + + if (cable_count == 3) { + printf("%s: Illegal Cable Config!\n", + adw_name(adw)); + printf("%s: Only Two Ports may be used at " + "a time!\n", adw_name(adw)); + } else if (cable_count <= 1) { + /* + * At least two out of three cables missing. + * Terminate both bytes. + */ + term_scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_H + | ADW_SCSI_CFG1_TERM_CTL_L; + } else if (wide_cable_count <= 1) { + /* No two 16bit cables present. High on. */ + term_scsicfg1 |= ADW_SCSI_CFG1_TERM_CTL_H; + } } } /* Tell the user about our decission */ switch (term_scsicfg1 & ADW_SCSI_CFG1_TERM_CTL_MASK) { case ADW_SCSI_CFG1_TERM_CTL_MASK: - printf("High & Low Termination Enabled, "); + printf("High & Low SE Term Enabled, "); break; case ADW_SCSI_CFG1_TERM_CTL_H: - printf("High Termination Enabled, "); + printf("High SE Termination Enabled, "); break; case ADW_SCSI_CFG1_TERM_CTL_L: - printf("Low Termination Enabled, "); + printf("Low SE Term Enabled, "); break; default: break; } + if ((adw->features & ADW_ULTRA2) != 0 + && (term_scsicfg1 & ADW2_SCSI_CFG1_TERM_CTL_LVD) != 0) + printf("LVD Term Enabled, "); + /* * Invert the TERM_CTL_H and TERM_CTL_L bits and then * set 'scsicfg1'. The TERM_POL bit does not need to be * referenced, because the hardware internally inverts * the Termination High and Low bits if TERM_POL is set. */ - term_scsicfg1 = ~term_scsicfg1 & ADW_SCSI_CFG1_TERM_CTL_MASK; - scsicfg1 &= ~ADW_SCSI_CFG1_TERM_CTL_MASK; - scsicfg1 |= term_scsicfg1 | ADW_SCSI_CFG1_TERM_CTL_MANUAL; + if ((adw->features & ADW_ULTRA2) != 0) { + term_scsicfg1 = ~term_scsicfg1; + term_scsicfg1 &= ADW_SCSI_CFG1_TERM_CTL_MASK + | ADW2_SCSI_CFG1_TERM_CTL_LVD; + scsicfg1 &= ~(ADW_SCSI_CFG1_TERM_CTL_MASK + |ADW2_SCSI_CFG1_TERM_CTL_LVD + |ADW_SCSI_CFG1_BIG_ENDIAN + |ADW_SCSI_CFG1_TERM_POL + |ADW2_SCSI_CFG1_DEV_DETECT); + scsicfg1 |= term_scsicfg1; + } else { + term_scsicfg1 = ~term_scsicfg1 & ADW_SCSI_CFG1_TERM_CTL_MASK; + scsicfg1 &= ~ADW_SCSI_CFG1_TERM_CTL_MASK; + scsicfg1 |= term_scsicfg1 | ADW_SCSI_CFG1_TERM_CTL_MANUAL; + scsicfg1 |= ADW_SCSI_CFG1_FLTR_DISABLE; + } /* * Set SCSI_CFG1 Microcode Default Value * - * Set filter value and possibly modified termination control - * bits in the Microcode SCSI_CFG1 Register Value. - * * The microcode will set the SCSI_CFG1 register using this value * after it is started below. */ - adw_lram_write_16(adw, ADW_MC_DEFAULT_SCSI_CFG1, - scsicfg1 | ADW_SCSI_CFG1_FLTR_11_TO_20NS); + adw_lram_write_16(adw, ADW_MC_DEFAULT_SCSI_CFG1, scsicfg1); /* * Only accept selections on our initiator target id. @@ -465,42 +696,24 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) (0x01 << adw->initiator_id)); /* - * Link all the RISC Queue Lists together in a doubly-linked - * NULL terminated list. - * - * Skip the NULL (0) queue which is not used. - */ - for (i = 1, addr = ADW_MC_RISC_Q_LIST_BASE + ADW_MC_RISC_Q_LIST_SIZE; - i < ADW_MC_RISC_Q_TOTAL_CNT; - i++, addr += ADW_MC_RISC_Q_LIST_SIZE) { - - /* - * Set the current RISC Queue List's - * RQL_FWD and RQL_BWD pointers in a - * one word write and set the state - * (RQL_STATE) to free. - */ - adw_lram_write_16(adw, addr, ((i + 1) | ((i - 1) << 8))); - adw_lram_write_8(adw, addr + RQL_STATE, ADW_MC_QS_FREE); - } - - /* - * Set the Host and RISC Queue List pointers. - * - * Both sets of pointers are initialized with the same values: - * ADW_MC_RISC_Q_FIRST(0x01) and ADW_MC_RISC_Q_LAST (0xFF). + * Tell the microcode where it can find our + * Initiator Command Queue (ICQ). It is + * currently empty hence the "stopper" address. */ - adw_lram_write_8(adw, ADW_MC_HOST_NEXT_READY, ADW_MC_RISC_Q_FIRST); - adw_lram_write_8(adw, ADW_MC_HOST_NEXT_DONE, ADW_MC_RISC_Q_LAST); - - adw_lram_write_8(adw, ADW_MC_RISC_NEXT_READY, ADW_MC_RISC_Q_FIRST); - adw_lram_write_8(adw, ADW_MC_RISC_NEXT_DONE, ADW_MC_RISC_Q_LAST); + adw->commandq = adw->free_carriers; + adw->free_carriers = carrierbotov(adw, adw->commandq->next_ba); + adw->commandq->next_ba = ADW_CQ_STOPPER; + adw_lram_write_32(adw, ADW_MC_ICQ, adw->commandq->carr_ba); /* - * Set up the last RISC Queue List (255) with a NULL forward pointer. + * Tell the microcode where it can find our + * Initiator Response Queue (IRQ). It too + * is currently empty. */ - adw_lram_write_16(adw, addr, (ADW_MC_NULL_Q + ((i - 1) << 8))); - adw_lram_write_8(adw, addr + RQL_STATE, ADW_MC_QS_FREE); + adw->responseq = adw->free_carriers; + adw->free_carriers = carrierbotov(adw, adw->responseq->next_ba); + adw->responseq->next_ba = ADW_CQ_STOPPER; + adw_lram_write_32(adw, ADW_MC_IRQ, adw->responseq->carr_ba); adw_outb(adw, ADW_INTR_ENABLES, ADW_INTR_ENABLE_HOST_INTR|ADW_INTR_ENABLE_GLOBAL_INTR); @@ -510,6 +723,100 @@ adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1) return (0); } +void +adw_set_user_sdtr(struct adw_softc *adw, u_int tid, u_int mc_sdtr) +{ + adw->user_sdtr[ADW_TARGET_GROUP(tid)] &= ~ADW_TARGET_GROUP_MASK(tid); + adw->user_sdtr[ADW_TARGET_GROUP(tid)] |= + mc_sdtr << ADW_TARGET_GROUP_SHIFT(tid); +} + +u_int +adw_get_user_sdtr(struct adw_softc *adw, u_int tid) +{ + u_int mc_sdtr; + + mc_sdtr = adw->user_sdtr[ADW_TARGET_GROUP(tid)]; + mc_sdtr &= ADW_TARGET_GROUP_MASK(tid); + mc_sdtr >>= ADW_TARGET_GROUP_SHIFT(tid); + return (mc_sdtr); +} + +void +adw_set_chip_sdtr(struct adw_softc *adw, u_int tid, u_int sdtr) +{ + u_int mc_sdtr_offset; + u_int mc_sdtr; + + mc_sdtr_offset = ADW_MC_SDTR_SPEED1; + mc_sdtr_offset += ADW_TARGET_GROUP(tid) * 2; + mc_sdtr = adw_lram_read_16(adw, mc_sdtr_offset); + mc_sdtr &= ~ADW_TARGET_GROUP_MASK(tid); + mc_sdtr |= sdtr << ADW_TARGET_GROUP_SHIFT(tid); + adw_lram_write_16(adw, mc_sdtr_offset, mc_sdtr); +} + +u_int +adw_get_chip_sdtr(struct adw_softc *adw, u_int tid) +{ + u_int mc_sdtr_offset; + u_int mc_sdtr; + + mc_sdtr_offset = ADW_MC_SDTR_SPEED1; + mc_sdtr_offset += ADW_TARGET_GROUP(tid) * 2; + mc_sdtr = adw_lram_read_16(adw, mc_sdtr_offset); + mc_sdtr &= ADW_TARGET_GROUP_MASK(tid); + mc_sdtr >>= ADW_TARGET_GROUP_SHIFT(tid); + return (mc_sdtr); +} + +u_int +adw_find_sdtr(struct adw_softc *adw, u_int period) +{ + int i; + + i = 0; + if ((adw->features & ADW_DT) == 0) + i = ADW_MC_SDTR_OFFSET_ULTRA2; + if ((adw->features & ADW_ULTRA2) == 0) + i = ADW_MC_SDTR_OFFSET_ULTRA; + if (period == 0) + return ADW_MC_SDTR_ASYNC; + + for (; i < adw_num_syncrates; i++) { + if (period <= adw_syncrates[i].period) + return (adw_syncrates[i].mc_sdtr); + } + return ADW_MC_SDTR_ASYNC; +} + +u_int +adw_find_period(struct adw_softc *adw, u_int mc_sdtr) +{ + int i; + + for (i = 0; i < adw_num_syncrates; i++) { + if (mc_sdtr == adw_syncrates[i].mc_sdtr) + break; + } + return (adw_syncrates[i].period); +} + +u_int +adw_hshk_cfg_period_factor(u_int tinfo) +{ + tinfo &= ADW_HSHK_CFG_RATE_MASK; + tinfo >>= ADW_HSHK_CFG_RATE_SHIFT; + if (tinfo == 0x11) + /* 80MHz/DT */ + return (9); + else if (tinfo == 0x10) + /* 40MHz */ + return (10); + else + return (((tinfo * 25) + 50) / 4); +} + /* * Send an idle command to the chip and optionally wait for completion. */ @@ -534,8 +841,13 @@ adw_idle_cmd_send(struct adw_softc *adw, adw_idle_cmd_t cmd, u_int parameter) * followed, the microcode may process the idle command before the * parameters have been written to LRAM. */ - adw_lram_write_16(adw, ADW_MC_IDLE_PARA_STAT, parameter); + adw_lram_write_16(adw, ADW_MC_IDLE_CMD_PARAMETER, parameter); adw_lram_write_16(adw, ADW_MC_IDLE_CMD, cmd); + + /* + * Tickle the RISC to tell it to process the idle command. + */ + adw_tickle_risc(adw, ADW_TICKLE_B); splx(s); } @@ -550,15 +862,16 @@ adw_idle_cmd_wait(struct adw_softc *adw) /* Wait for up to 10 seconds for the command to complete */ timeout = 10000; while (--timeout) { - if (adw->idle_command_cmp != 0) + s = splcam(); + status = adw_lram_read_16(adw, ADW_MC_IDLE_CMD_STATUS); + splx(s); + if (status != 0) break; DELAY(1000); } if (timeout == 0) panic("%s: Idle Command Timed Out!\n", adw_name(adw)); - s = splcam(); - status = adw_lram_read_16(adw, ADW_MC_IDLE_PARA_STAT); - splx(s); + adw->idle_cmd = ADW_IDLE_CMD_COMPLETED; return (status); } diff --git a/sys/dev/advansys/adwlib.h b/sys/dev/advansys/adwlib.h index 3773cf14eaa2..d32bfb9740c7 100644 --- a/sys/dev/advansys/adwlib.h +++ b/sys/dev/advansys/adwlib.h @@ -2,7 +2,7 @@ * Definitions for low level routines and data structures * for the Advanced Systems Inc. SCSI controllers chips. * - * Copyright (c) 1998 Justin T. Gibbs. + * Copyright (c) 1998, 1999, 2000 Justin T. Gibbs. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -10,7 +10,7 @@ * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions, and the following disclaimer, - * without modification, immediately at the beginning of the file. + * without modification. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. @@ -61,6 +61,12 @@ #define ADW_MAX_TID 15 #define ADW_MAX_LUN 7 +#define ADW_ALL_TARGETS 0xFFFF + +#define ADW_TARGET_GROUP(tid) ((tid) & ~0x3) +#define ADW_TARGET_GROUP_SHIFT(tid) (((tid) & 0x3) * 4) +#define ADW_TARGET_GROUP_MASK(tid) (0xF << ADW_TARGET_GROUP_SHIFT(tid)) + /* * Board Register offsets. */ @@ -68,6 +74,7 @@ #define ADW_INTR_STATUS_INTRA 0x01 #define ADW_INTR_STATUS_INTRB 0x02 #define ADW_INTR_STATUS_INTRC 0x04 +#define ADW_INTR_STATUS_INTRALL 0x07 #define ADW_SIGNATURE_WORD 0x0000 @@ -164,6 +171,27 @@ #define ADW_SCSI_CFG1_ILLEGAL_CABLE_CONF_B_MASK \ (ADW_SCSI_CFG1_EXT8_MASK|ADW_SCSI_CFG1_INT8_MASK|ADW_SCSI_CFG1_INT16_MASK) +/* + * Addendum for ASC-38C0800 Chip + */ +#define ADW2_SCSI_CFG1_DIS_TERM_DRV 0x4000 /* + * The Terminators + * must be disabled + * in order to detect + * cable presence + */ + +#define ADW2_SCSI_CFG1_DEV_DETECT 0x1C00 +#define ADW2_SCSI_CFG1_DEV_DETECT_HVD 0x1000 +#define ADW2_SCSI_CFG1_DEV_DETECT_LVD 0x0800 +#define ADW2_SCSI_CFG1_DEV_DETECT_SE 0x0400 + +#define ADW2_SCSI_CFG1_TERM_CTL_LVD 0x00C0 /* Ultra2 Only */ +#define ADW2_SCSI_CFG1_TERM_LVD_HI 0x0080 +#define ADW2_SCSI_CFG1_TERM_LVD_LO 0x0040 +#define ADW2_SCSI_CFG1_EXTLVD_MASK 0x0008 /* ExtLVD cable pres */ +#define ADW2_SCSI_CFG1_INTLVD_MASK 0x0004 /* IntLVD cable pres */ + #define ADW_MEM_CFG 0x0010 #define ADW_MEM_CFG_BIOS_EN 0x40 #define ADW_MEM_CFG_FAST_EE_CLK 0x20 /* Diagnostic Bit */ @@ -175,6 +203,12 @@ #define ADW_MEM_CFG_RAM_SZ_32KB 0x10 #define ADW_MEM_CFG_RAM_SZ_64KB 0x14 +#define ADW_GPIO_CNTL 0x0011 +#define ADW_GPIO_DATA 0x0012 + +#define ADW_COMMA 0x0014 +#define ADW_COMMB 0x0018 + #define ADW_EEP_CMD 0x001A #define ADW_EEP_CMD_READ 0x0080 /* or in address */ #define ADW_EEP_CMD_WRITE 0x0040 /* or in address */ @@ -191,11 +225,11 @@ #define ADW_DMA_CFG0_FIFO_THRESH 0x70 #define ADW_DMA_CFG0_FIFO_THRESH_16B 0x00 #define ADW_DMA_CFG0_FIFO_THRESH_32B 0x20 -#define ADW_DMA_CFG0_IFO_THRESH_48B 0x30 -#define ADW_DMA_CFG0_IFO_THRESH_64B 0x40 -#define ADW_DMA_CFG0_IFO_THRESH_80B 0x50 -#define ADW_DMA_CFG0_IFO_THRESH_96B 0x60 -#define ADW_DMA_CFG0_IFO_THRESH_112B 0x70 +#define ADW_DMA_CFG0_FIFO_THRESH_48B 0x30 +#define ADW_DMA_CFG0_FIFO_THRESH_64B 0x40 +#define ADW_DMA_CFG0_FIFO_THRESH_80B 0x50 +#define ADW_DMA_CFG0_FIFO_THRESH_96B 0x60 +#define ADW_DMA_CFG0_FIFO_THRESH_112B 0x70 #define ADW_DMA_CFG0_START_CTL_MASK 0x0C #define ADW_DMA_CFG0_START_CTL_TH 0x00 /* Start on thresh */ #define ADW_DMA_CFG0_START_CTL_IDLE 0x04 /* Start when idle */ @@ -206,18 +240,57 @@ #define ADW_DMA_CFG0_READ_CMD_MRL 0x02 #define ADW_DMA_CFG0_READ_CMD_MRM 0x03 +#define ADW_TICKLE 0x0022 +#define ADW_TICKLE_NOP 0x00 +#define ADW_TICKLE_A 0x01 +#define ADW_TICKLE_B 0x02 +#define ADW_TICKLE_C 0x03 + /* Program Counter */ #define ADW_PC 0x2A #define ADW_SCSI_CTRL 0x0034 #define ADW_SCSI_CTRL_RSTOUT 0x2000 +/* + * ASC-38C0800 RAM BIST Register bit definitions + */ +#define ADW_RAM_BIST 0x0038 +#define ADW_RAM_BIST_RAM_TEST_MODE 0x80 +#define ADW_RAM_BIST_PRE_TEST_MODE 0x40 +#define ADW_RAM_BIST_NORMAL_MODE 0x00 +#define ADW_RAM_BIST_RAM_TEST_DONE 0x10 +#define ADW_RAM_BIST_RAM_TEST_STATUS 0x0F +#define ADW_RAM_BIST_RAM_TEST_HOST_ERR 0x08 +#define ADW_RAM_BIST_RAM_TEST_RAM_ERR 0x04 +#define ADW_RAM_BIST_RAM_TEST_RISC_ERR 0x02 +#define ADW_RAM_BIST_RAM_TEST_SCSI_ERR 0x01 +#define ADW_RAM_BIST_RAM_TEST_SUCCESS 0x00 +#define ADW_RAM_BIST_PRE_TEST_VALUE 0x05 +#define ADW_RAM_BIST_NORMAL_VALUE 0x00 +#define ADW_PLL_TEST 0x0039 + #define ADW_SCSI_RESET_HOLD_TIME_US 60 /* LRAM Constants */ -#define ADW_CONDOR_MEMSIZE 0x2000 /* 8 KB Internal Memory */ -#define ADW_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */ -#define ADW_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */ +#define ADW_3550_MEMSIZE 0x2000 /* 8 KB Internal Memory */ +#define ADW_3550_IOLEN 0x40 /* I/O Port Range in bytes */ + +#define ADW_38C0800_MEMSIZE 0x4000 /* 16 KB Internal Memory */ +#define ADW_38C0800_IOLEN 0x100 /* I/O Port Range in bytes */ + +#define ADW_38C1600_MEMSIZE 0x4000 /* 16 KB Internal Memory */ +#define ADW_38C1600_IOLEN 0x100 /* I/O Port Range in bytes */ +#define ADW_38C1600_MEMLEN 0x1000 /* Memory Range 4KB */ + +#define ADW_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */ +#define ADW_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */ + +#define PCI_ID_ADVANSYS_3550 0x230010CD00000000ull +#define PCI_ID_ADVANSYS_38C0800_REV1 0x250010CD00000000ull +#define PCI_ID_ADVANSYS_38C1600_REV1 0x270010CD00000000ull +#define PCI_ID_ALL_MASK 0xFFFFFFFFFFFFFFFFull +#define PCI_ID_DEV_VENDOR_MASK 0xFFFFFFFF00000000ull /* ====================== SCSI Request Structures =========================== */ @@ -240,8 +313,8 @@ struct adw_sg_elm { struct adw_sg_block { u_int8_t reserved1; u_int8_t reserved2; - u_int8_t first_entry_no; /* starting entry number */ - u_int8_t last_entry_no; /* last entry number */ + u_int8_t reserved3; + u_int8_t sg_cnt; /* Valid entries in this block */ u_int32_t sg_busaddr_next; /* link to the next sg block */ struct adw_sg_elm sg_list[ADW_NO_OF_SG_PER_BLOCK]; }; @@ -291,28 +364,42 @@ typedef enum { */ struct adw_scsi_req_q { u_int8_t cntl; /* Ucode flags and state. */ - u_int8_t sg_entry_cnt; /* SG element count. Zero for no SG. */ + u_int8_t target_cmd; u_int8_t target_id; /* Device target identifier. */ u_int8_t target_lun; /* Device target logical unit number. */ u_int32_t data_addr; /* Data buffer physical address. */ u_int32_t data_cnt; /* Data count. Ucode sets to residual. */ - u_int32_t sense_addr; /* Sense buffer physical address. */ - u_int32_t srb_ptr; /* Driver request pointer. */ - u_int8_t a_flag; /* Adv Library flag field. */ + u_int32_t sense_baddr; /* Sense buffer bus address. */ + u_int32_t carrier_baddr; /* Carrier bus address. */ + u_int8_t mflag; /* microcode flag field. */ u_int8_t sense_len; /* Auto-sense length. Residual on complete. */ u_int8_t cdb_len; /* SCSI CDB length. */ - u_int8_t tag_code; /* SCSI-2 Tag Queue Code: 00, 20-22. */ + u_int8_t scsi_cntl; /* SCSI command control flags (tags, nego) */ +#define ADW_QSC_NO_DISC 0x01 +#define ADW_QSC_NO_TAGMSG 0x02 +#define ADW_QSC_NO_SYNC 0x04 +#define ADW_QSC_NO_WIDE 0x08 +#define ADW_QSC_REDO_DTR 0x10 /* Renegotiate WDTR/SDTR */ +#define ADW_QSC_HEAD_OF_Q_TAG 0x40 +#define ADW_QSC_ORDERED_Q_TAG 0x80 u_int8_t done_status; /* Completion status. */ u_int8_t scsi_status; /* SCSI status byte. */ u_int8_t host_status; /* Ucode host status. */ - - u_int8_t ux_sg_ix; /* Ucode working SG variable. */ + u_int8_t sg_wk_ix; /* Microcode working SG index. */ u_int8_t cdb[12]; /* SCSI command block. */ u_int32_t sg_real_addr; /* SG list physical address. */ - u_int32_t free_scsiq_link;/* Unused */ - u_int32_t ux_wk_data_cnt; /* Saved data count at disconnection. */ - u_int32_t scsi_req_baddr; /* Bus address of this request. */ - u_int32_t sg_block_index; /* sg_block tag (Unused) */ + u_int32_t scsi_req_baddr; /* Bus address of this structure. */ + u_int32_t sg_wk_data_cnt; /* Saved data count at disconnection. */ + /* + * The 'tokens' placed in these two fields are + * used to identify the scsi request and the next + * carrier in the response queue, *not* physical + * addresses. This driver uses byte offsets for + * portability and speed of mapping back to either + * a virtual or physical address. + */ + u_int32_t scsi_req_bo; /* byte offset of this structure */ + u_int32_t carrier_bo; /* byte offst of our carrier. */ }; typedef enum { @@ -332,23 +419,6 @@ struct acb { SLIST_ENTRY(acb) links; }; -typedef struct { - u_int16_t bios_init_dis :1,/* don't act as initiator. */ - bios_ext_trans :1,/* > 1 GB support */ - bios_more_2disk :1,/* > 2 Disk Support */ - bios_no_removable:1,/* don't support removables */ - bios_cd_boot :1,/* support bootable CD */ - :1, - bios_multi_lun :1,/* support multiple LUNs */ - bios_message :1,/* display BIOS message */ - :1, - bios_reset_sb :1,/* Reset SCSI bus during init. */ - :1, - bios_quiet :1,/* No verbose initialization. */ - bios_scsi_par_en :1,/* SCSI parity enabled */ - :3; -} adw_bios_ctrl; - /* * EEPROM configuration format * @@ -371,6 +441,7 @@ struct adw_eeprom #define ADW_EEPROM_BIG_ENDIAN 0x8000 #define ADW_EEPROM_BIOS_ENABLE 0x4000 #define ADW_EEPROM_TERM_POL 0x2000 +#define ADW_EEPROM_CIS_LD 0x1000 /* bit 13 set - Term Polarity Control */ /* bit 14 set - BIOS Enable */ @@ -378,7 +449,15 @@ struct adw_eeprom u_int16_t cfg_msw; /* unused */ u_int16_t disc_enable; u_int16_t wdtr_able; - u_int16_t sdtr_able; + union { + /* + * sync enable bits for UW cards, + * actual sync rate for TID 0-3 + * on U2W and U160 cards. + */ + u_int16_t sync_enable; + u_int16_t sdtr1; + } sync1; u_int16_t start_motor; u_int16_t tagqng_able; u_int16_t bios_scan; @@ -391,31 +470,70 @@ struct adw_eeprom u_int8_t bios_id_lun; /* high nibble is lun */ /* low nibble is scsi id */ - u_int8_t termination; /* 0 - automatic */ + u_int8_t termination_se; /* 0 - automatic */ #define ADW_EEPROM_TERM_AUTO 0 #define ADW_EEPROM_TERM_OFF 1 #define ADW_EEPROM_TERM_HIGH_ON 2 #define ADW_EEPROM_TERM_BOTH_ON 3 - u_int8_t reserved1; /* reserved byte (not used) */ - adw_bios_ctrl bios_ctrl; - - u_int16_t ultra_able; /* 13 ULTRA speed able */ - u_int16_t reserved2; /* 14 reserved */ + u_int8_t termination_lvd; + u_int16_t bios_ctrl; +#define ADW_BIOS_INIT_DIS 0x0001 /* Don't act as initiator */ +#define ADW_BIOS_EXT_TRANS 0x0002 /* > 1 GB support */ +#define ADW_BIOS_MORE_2DISK 0x0004 /* > 1 GB support */ +#define ADW_BIOS_NO_REMOVABLE 0x0008 /* don't support removable media */ +#define ADW_BIOS_CD_BOOT 0x0010 /* support bootable CD */ +#define ADW_BIOS_SCAN_EN 0x0020 /* BIOS SCAN enabled */ +#define ADW_BIOS_MULTI_LUN 0x0040 /* probe luns */ +#define ADW_BIOS_MESSAGE 0x0080 /* display BIOS message */ +#define ADW_BIOS_RESET_BUS 0x0200 /* reset SCSI bus durint init */ +#define ADW_BIOS_QUIET 0x0800 /* No verbose initialization */ +#define ADW_BIOS_SCSI_PAR_EN 0x1000 /* SCSI parity enabled */ + + union { + /* 13 + * ultra enable bits for UW cards, + * actual sync rate for TID 4-7 + * on U2W and U160 cards. + */ + u_int16_t ultra_enable; + u_int16_t sdtr2; + } sync2; + union { + /* 14 + * reserved for UW cards, + * actual sync rate for TID 8-11 + * on U2W and U160 cards. + */ + u_int16_t reserved; + u_int16_t sdtr3; + } sync3; u_int8_t max_host_qng; /* 15 maximum host queuing */ u_int8_t max_dvc_qng; /* maximum per device queuing */ u_int16_t dvc_cntl; /* 16 control bit for driver */ - u_int16_t bug_fix; /* 17 control bit for bug fix */ - u_int16_t serial_number[3]; - u_int16_t checksum; - u_int8_t oem_name[16]; - u_int16_t dvc_err_code; - u_int16_t adv_err_code; - u_int16_t adv_err_addr; - u_int16_t saved_dvc_err_code; - u_int16_t saved_adv_err_code; - u_int16_t saved_adv_err_addr; - u_int16_t num_of_err; + union { + /* 17 + * reserved for UW cards, + * actual sync rate for TID 12-15 + * on U2W and U160 cards. + */ + u_int16_t reserved; + u_int16_t sdtr4; + } sync4; + u_int16_t serial_number[3]; /* 18-20 */ + u_int16_t checksum; /* 21 */ + u_int8_t oem_name[16]; /* 22 - 29 */ + u_int16_t dvc_err_code; /* 30 */ + u_int16_t adv_err_code; /* 31 */ + u_int16_t adv_err_addr; /* 32 */ + u_int16_t saved_dvc_err_code; /* 33 */ + u_int16_t saved_adv_err_code; /* 34 */ + u_int16_t saved_adv_err_addr; /* 35 */ + u_int16_t reserved[20]; /* 36 - 55 */ + u_int16_t cisptr_lsw; /* 56 CIS data */ + u_int16_t cisptr_msw; /* 57 CIS data */ + u_int32_t subid; /* 58-59 SubSystem Vendor/Dev ID */ + u_int16_t reserved2[4]; }; /* EEProm Addresses */ @@ -424,11 +542,54 @@ struct adw_eeprom #define ADW_EEP_DVC_CTL_BEGIN (offsetof(struct adw_eeprom, oem_name)/2) #define ADW_EEP_MAX_WORD_ADDR (sizeof(struct adw_eeprom)/2) +typedef enum { + ADW_CHIP_NONE, + ADW_CHIP_ASC3550, /* Ultra-Wide IC */ + ADW_CHIP_ASC38C0800, /* Ultra2-Wide/LVD IC */ + ADW_CHIP_ASC38C1600 /* Ultra3-Wide/LVD2 IC */ +} adw_chip; + +typedef enum { + ADW_FENONE = 0x0000, + ADW_ULTRA = 0x0001, /* Supports 20MHz Transfers */ + ADW_ULTRA2 = 0x0002, /* Supports 40MHz Transfers */ + ADW_DT = 0x0004, /* Supports Double Transistion REQ/ACK*/ + ADW_WIDE = 0x0008, /* Wide Channel */ + ADW_ASC3550_FE = ADW_ULTRA, + ADW_ASC38C0800_FE = ADW_ULTRA2, + ADW_ASC38C1600_FE = ADW_ULTRA2|ADW_DT +} adw_feature; + +typedef enum { + ADW_FNONE = 0x0000, + ADW_EEPROM_FAILED = 0x0001 +} adw_flag; + typedef enum { ADW_STATE_NORMAL = 0x00, ADW_RESOURCE_SHORTAGE = 0x01 } adw_state; +typedef enum { + ADW_MC_SDTR_ASYNC, + ADW_MC_SDTR_5, + ADW_MC_SDTR_10, + ADW_MC_SDTR_20, + ADW_MC_SDTR_40, + ADW_MC_SDTR_80 +} adw_mc_sdtr; + +struct adw_syncrate +{ + adw_mc_sdtr mc_sdtr; + u_int8_t period; + char *rate; +}; + +/* We have an input and output queue for our carrier structures */ +#define ADW_OUTPUT_QUEUE 0 /* Offset into carriers member */ +#define ADW_INPUT_QUEUE 1 /* Offset into carriers member */ +#define ADW_NUM_CARRIER_QUEUES 2 struct adw_softc { bus_space_tag_t tag; @@ -436,16 +597,37 @@ struct adw_softc adw_state state; bus_dma_tag_t buffer_dmat; struct acb *acbs; + struct adw_carrier *carriers; + struct adw_carrier *free_carriers; + struct adw_carrier *commandq; + struct adw_carrier *responseq; LIST_HEAD(, ccb_hdr) pending_ccbs; SLIST_HEAD(, acb) free_acb_list; bus_dma_tag_t parent_dmat; + bus_dma_tag_t carrier_dmat; /* dmat for our acb carriers*/ + bus_dmamap_t carrier_dmamap; bus_dma_tag_t acb_dmat; /* dmat for our ccb array */ bus_dmamap_t acb_dmamap; bus_dma_tag_t sg_dmat; /* dmat for our sg maps */ SLIST_HEAD(, sg_map_node) sg_maps; bus_addr_t acb_busbase; + bus_addr_t carrier_busbase; + adw_chip chip; + adw_feature features; + adw_flag flags; + u_int memsize; + char channel; struct cam_path *path; struct cam_sim *sim; + struct resource *regs; + struct resource *irq; + void *ih; + const struct adw_mcode *mcode_data; + const struct adw_eeprom *default_eeprom; + device_t device; + int regs_res_type; + int regs_res_id; + int irq_res_type; u_int max_acbs; u_int num_acbs; u_int initiator_id; @@ -453,20 +635,22 @@ struct adw_softc u_int unit; char* name; cam_status last_reset; /* Last reset type */ - adw_bios_ctrl bios_ctrl; + u_int16_t bios_ctrl; adw_idle_cmd_t idle_cmd; u_int idle_cmd_param; volatile int idle_command_cmp; u_int16_t user_wdtr; - u_int16_t user_sdtr; - u_int16_t user_ultra; + u_int16_t user_sdtr[4]; /* A nibble per-device */ u_int16_t user_tagenb; u_int16_t tagenb; u_int16_t user_discenb; u_int16_t serial_number[3]; }; -extern struct adw_eeprom adw_default_eeprom; +extern const struct adw_eeprom adw_asc3550_default_eeprom; +extern const struct adw_eeprom adw_asc38C0800_default_eeprom; +extern const struct adw_syncrate adw_syncrates[]; +extern const int adw_num_syncrates; #define adw_inb(adw, port) \ bus_space_read_1((adw)->tag, (adw)->bsh, port) @@ -482,6 +666,9 @@ extern struct adw_eeprom adw_default_eeprom; #define adw_outl(adw, port, value) \ bus_space_write_4((adw)->tag, (adw)->bsh, port, value) +#define adw_set_multi_2(adw, port, value, count) \ + bus_space_set_multi_2((adw)->tag, (adw)->bsh, port, value, count) + static __inline const char* adw_name(struct adw_softc *adw); static __inline u_int adw_lram_read_8(struct adw_softc *adw, u_int addr); static __inline u_int adw_lram_read_16(struct adw_softc *adw, u_int addr); @@ -493,6 +680,25 @@ static __inline void adw_lram_write_16(struct adw_softc *adw, u_int addr, static __inline void adw_lram_write_32(struct adw_softc *adw, u_int addr, u_int value); +static __inline u_int32_t acbvtobo(struct adw_softc *adw, + struct acb *acb); +static __inline u_int32_t acbvtob(struct adw_softc *adw, + struct acb *acb); +static __inline struct acb * acbbotov(struct adw_softc *adw, + u_int32_t busaddr); +static __inline struct acb * acbbtov(struct adw_softc *adw, + u_int32_t busaddr); +static __inline u_int32_t carriervtobo(struct adw_softc *adw, + struct adw_carrier *carrier); +static __inline u_int32_t carriervtob(struct adw_softc *adw, + struct adw_carrier *carrier); +static __inline struct adw_carrier * + carrierbotov(struct adw_softc *adw, + u_int32_t byte_offset); +static __inline struct adw_carrier * + carrierbtov(struct adw_softc *adw, + u_int32_t baddr); + static __inline const char* adw_name(struct adw_softc *adw) { @@ -546,12 +752,71 @@ adw_lram_write_32(struct adw_softc *adw, u_int addr, u_int value) adw_outw(adw, ADW_RAM_DATA, value >> 16); } +static __inline u_int32_t +acbvtobo(struct adw_softc *adw, struct acb *acb) +{ + return ((u_int32_t)((caddr_t)acb - (caddr_t)adw->acbs)); +} + +static __inline u_int32_t +acbvtob(struct adw_softc *adw, struct acb *acb) +{ + return (adw->acb_busbase + acbvtobo(adw, acb)); +} + +static __inline struct acb * +acbbotov(struct adw_softc *adw, u_int32_t byteoffset) +{ + return ((struct acb *)((caddr_t)adw->acbs + byteoffset)); +} + +static __inline struct acb * +acbbtov(struct adw_softc *adw, u_int32_t busaddr) +{ + return (acbbotov(adw, busaddr - adw->acb_busbase)); +} + +/* + * Return the byte offset for a carrier relative to our array of carriers. + */ +static __inline u_int32_t +carriervtobo(struct adw_softc *adw, struct adw_carrier *carrier) +{ + return ((u_int32_t)((caddr_t)carrier - (caddr_t)adw->carriers)); +} + +static __inline u_int32_t +carriervtob(struct adw_softc *adw, struct adw_carrier *carrier) +{ + return (adw->carrier_busbase + carriervtobo(adw, carrier)); +} + +static __inline struct adw_carrier * +carrierbotov(struct adw_softc *adw, u_int32_t byte_offset) +{ + return ((struct adw_carrier *)((caddr_t)adw->carriers + byte_offset)); +} + +static __inline struct adw_carrier * +carrierbtov(struct adw_softc *adw, u_int32_t baddr) +{ + return (carrierbotov(adw, baddr - adw->carrier_busbase)); +} + /* Intialization */ -int adw_find_signature(bus_space_tag_t tag, bus_space_handle_t bsh); +int adw_find_signature(struct adw_softc *adw); void adw_reset_chip(struct adw_softc *adw); u_int16_t adw_eeprom_read(struct adw_softc *adw, struct adw_eeprom *buf); void adw_eeprom_write(struct adw_softc *adw, struct adw_eeprom *buf); int adw_init_chip(struct adw_softc *adw, u_int term_scsicfg1); +void adw_set_user_sdtr(struct adw_softc *adw, + u_int tid, u_int mc_sdtr); +u_int adw_get_user_sdtr(struct adw_softc *adw, u_int tid); +void adw_set_chip_sdtr(struct adw_softc *adw, u_int tid, u_int sdtr); +u_int adw_get_chip_sdtr(struct adw_softc *adw, u_int tid); +u_int adw_find_sdtr(struct adw_softc *adw, u_int period); +u_int adw_find_period(struct adw_softc *adw, u_int mc_sdtr); +u_int adw_hshk_cfg_period_factor(u_int tinfo); /* Idle Commands */ void adw_idle_cmd_send(struct adw_softc *adw, u_int cmd, @@ -562,44 +827,46 @@ adw_idle_cmd_status_t adw_idle_cmd_wait(struct adw_softc *adw); static __inline void adw_send_acb(struct adw_softc *adw, struct acb *acb, u_int32_t acb_baddr); -static __inline void -adw_send_acb(struct adw_softc *adw, struct acb *acb, u_int32_t acb_baddr) +static __inline void adw_tickle_risc(struct adw_softc *adw, u_int value) { - u_int next_queue; - - /* Determine the next free queue. */ - next_queue = adw_lram_read_8(adw, ADW_MC_HOST_NEXT_READY); - next_queue = ADW_MC_RISC_Q_LIST_BASE - + (next_queue * ADW_MC_RISC_Q_LIST_SIZE); - - /* - * Write the physical address of the host Q to the free Q. - */ - adw_lram_write_32(adw, next_queue + RQL_PHYADDR, acb_baddr); - - adw_lram_write_8(adw, next_queue + RQL_TID, acb->queue.target_id); - /* - * Set the ADW_MC_HOST_NEXT_READY (0x128) microcode variable to - * the 'next_queue' request forward pointer. - * - * Do this *before* changing the 'next_queue' queue to QS_READY. - * After the state is changed to QS_READY 'RQL_FWD' will be changed - * by the microcode. - * + * Tickle the RISC to tell it to read its Command Queue Head pointer. */ - adw_lram_write_8(adw, ADW_MC_HOST_NEXT_READY, - adw_lram_read_8(adw, next_queue + RQL_FWD)); + adw_outb(adw, ADW_TICKLE, value); + if (adw->chip == ADW_CHIP_ASC3550) { + /* + * Clear the tickle value. In the ASC-3550 the RISC flag + * command 'clr_tickle_a' does not work unless the host + * value is cleared. + */ + adw_outb(adw, ADW_TICKLE, ADW_TICKLE_NOP); + } +} - /* - * Change the state of 'next_queue' request from QS_FREE to - * QS_READY which will cause the microcode to pick it up and - * execute it. - * - * Can't reference 'next_queue' after changing the request - * state to QS_READY. The microcode now owns the request. - */ - adw_lram_write_8(adw, next_queue + RQL_STATE, ADW_MC_QS_READY); +static __inline void +adw_send_acb(struct adw_softc *adw, struct acb *acb, u_int32_t acb_baddr) +{ + struct adw_carrier *new_cq; + + new_cq = adw->free_carriers; + adw->free_carriers = carrierbotov(adw, new_cq->next_ba); + new_cq->next_ba = ADW_CQ_STOPPER; + + acb->queue.carrier_baddr = adw->commandq->carr_ba; + acb->queue.carrier_bo = adw->commandq->carr_offset; + adw->commandq->areq_ba = acbvtob(adw, acb); + adw->commandq->next_ba = new_cq->carr_ba; +#if 0 + printf("EnQ 0x%x 0x%x 0x%x 0x%x\n", + adw->commandq->carr_offset, + adw->commandq->carr_ba, + adw->commandq->areq_ba, + adw->commandq->next_ba); +#endif + adw->commandq = new_cq; + + + adw_tickle_risc(adw, ADW_TICKLE_A); } #endif /* _ADWLIB_H_ */ diff --git a/sys/dev/advansys/adwmcode.c b/sys/dev/advansys/adwmcode.c index 84f77e541d14..c5f0504a1908 100644 --- a/sys/dev/advansys/adwmcode.c +++ b/sys/dev/advansys/adwmcode.c @@ -7,7 +7,7 @@ * Obtained from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters * - * Copyright (c) 1995-1998 Advanced System Products, Inc. + * Copyright (c) 1995-1999 Advanced System Products, Inc. * All Rights Reserved. * * Redistribution and use in source and binary forms, with or without @@ -19,425 +19,976 @@ #include -u_int8_t adw_mcode[] = +#include + +const u_int8_t adw_asc3550_mcode[] = +{ + 0x00, 0x00, 0x00, 0xf2, 0x00, 0xf0, 0x00, 0x16, 0x00, 0xfc, 0x48, + 0xe4, 0x01, 0x00, 0x18, 0xe4, 0x00, 0xf6, 0x01, 0xf6, 0x18, 0x80, + 0x48, 0x19, 0x02, 0x00, 0xff, 0xff, 0x03, 0xf6, 0x00, 0xfa, 0xff, + 0x00, 0x82, 0xe7, 0x01, 0xfa, 0x9e, 0xe7, 0x09, 0xe7, 0x3a, 0x0e, + 0x00, 0xea, 0x01, 0xe6, 0x55, 0xf0, 0x03, 0x00, 0x08, 0x00, 0x18, + 0xf4, 0x3e, 0x01, 0x3e, 0x57, 0x04, 0x00, 0x85, 0xf0, 0x00, 0xe6, + 0x00, 0xec, 0x1e, 0xf0, 0x32, 0xf0, 0x34, 0x19, 0x86, 0xf0, 0xd0, + 0x01, 0xd5, 0xf0, 0xde, 0x0c, 0x98, 0x57, 0xbc, 0x00, 0x0c, 0x1c, + 0x0e, 0x13, 0x38, 0x54, 0xb1, 0xf0, 0xb4, 0x00, 0x01, 0xfc, 0x03, + 0xfc, 0xd8, 0x0c, 0x00, 0x57, 0x01, 0xf0, 0x02, 0x13, 0x03, 0xe6, + 0x10, 0x00, 0x18, 0x40, 0x3e, 0x1c, 0x6c, 0x01, 0x6e, 0x01, 0xbd, + 0x00, 0xe0, 0x00, 0x02, 0x48, 0x02, 0x80, 0x08, 0x12, 0x30, 0xe4, + 0x3c, 0x00, 0x4e, 0x01, 0x64, 0x12, 0x80, 0x00, 0x9c, 0x15, 0xbb, + 0x00, 0x00, 0x4e, 0x01, 0x01, 0x01, 0xea, 0x04, 0x12, 0x9e, 0x0f, + 0xb6, 0x00, 0xb9, 0x54, 0xe2, 0x0f, 0x00, 0x80, 0x06, 0xf7, 0x10, + 0x44, 0x24, 0x01, 0x28, 0x01, 0x32, 0x00, 0x3c, 0x01, 0x3c, 0x56, + 0x3e, 0x00, 0x4b, 0xe4, 0x4c, 0x1c, 0x68, 0x01, 0x6a, 0x01, 0x70, + 0x01, 0x72, 0x01, 0x74, 0x01, 0x76, 0x01, 0x78, 0x01, 0xe2, 0x0c, + 0x00, 0x01, 0x02, 0xee, 0x02, 0xfc, 0x03, 0x58, 0x03, 0xf7, 0x04, + 0x80, 0x05, 0xfc, 0x08, 0x44, 0x09, 0xf0, 0x0f, 0x00, 0x1b, 0x80, + 0x20, 0x01, 0x38, 0x1c, 0x40, 0x00, 0x40, 0x15, 0x4b, 0xf4, 0x4e, + 0x1c, 0x5b, 0xf0, 0x5d, 0xf0, 0xaa, 0x00, 0xbb, 0x55, 0xbe, 0x00, + 0xc0, 0x00, 0xe0, 0x08, 0xe0, 0x14, 0xec, 0x0f, 0x00, 0x4c, 0x00, + 0xdc, 0x02, 0x4a, 0x05, 0x00, 0x05, 0xf0, 0x05, 0xf8, 0x06, 0x13, + 0x08, 0x13, 0x0c, 0x00, 0x0e, 0x47, 0x0e, 0xf7, 0x19, 0x00, 0x20, + 0x00, 0x2a, 0x01, 0x30, 0x0e, 0x32, 0x1c, 0x36, 0x00, 0x45, 0x5a, + 0x59, 0xf0, 0x62, 0x0a, 0x69, 0x08, 0x72, 0x0b, 0x83, 0x59, 0xb8, + 0xf0, 0xbd, 0x56, 0xcc, 0x12, 0xec, 0x17, 0xee, 0x0f, 0xf0, 0x00, + 0xf8, 0x17, 0x01, 0x48, 0x02, 0xfa, 0x03, 0xfa, 0x04, 0x10, 0x04, + 0xea, 0x04, 0xf6, 0x04, 0xfc, 0x05, 0x80, 0x05, 0xe6, 0x06, 0x00, + 0x06, 0x12, 0x0a, 0x10, 0x0b, 0xf0, 0x0c, 0x10, 0x0c, 0xf0, 0x12, + 0x10, 0x26, 0x0e, 0x30, 0x1c, 0x33, 0x00, 0x34, 0x00, 0x38, 0x44, + 0x40, 0x5c, 0x4a, 0xe4, 0x62, 0x1a, 0x68, 0x08, 0x68, 0x54, 0x83, + 0x55, 0x83, 0x5a, 0x8c, 0x14, 0x8e, 0x0a, 0x90, 0x14, 0x91, 0x44, + 0xa4, 0x00, 0xb0, 0x57, 0xb5, 0x00, 0xba, 0x00, 0xce, 0x45, 0xd0, + 0x00, 0xd8, 0x16, 0xe1, 0x00, 0xe7, 0x00, 0x00, 0x54, 0x01, 0x58, + 0x02, 0x10, 0x02, 0xe6, 0x03, 0xa1, 0x04, 0x13, 0x06, 0x83, 0x06, + 0xf0, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x12, 0x0a, 0xf0, 0x0c, 0x04, + 0x0c, 0x12, 0x0c, 0x90, 0x10, 0x10, 0x10, 0x13, 0x12, 0x1c, 0x17, + 0x00, 0x19, 0xe4, 0x1a, 0x10, 0x1c, 0x00, 0x1c, 0x12, 0x1d, 0xf7, + 0x1e, 0x13, 0x20, 0x1c, 0x20, 0xe7, 0x22, 0x01, 0x26, 0x01, 0x2a, + 0x12, 0x30, 0xe7, 0x34, 0x1c, 0x36, 0x1c, 0x38, 0x12, 0x41, 0x58, + 0x43, 0x48, 0x44, 0x55, 0x46, 0x1c, 0x4c, 0x0e, 0x4e, 0xe4, 0x52, + 0x14, 0x5c, 0xf0, 0x72, 0x02, 0x74, 0x03, 0x77, 0x57, 0x89, 0x48, + 0x8e, 0x90, 0x99, 0x00, 0x9b, 0x00, 0x9c, 0x32, 0x9e, 0x00, 0xa8, + 0x00, 0xb9, 0x00, 0xba, 0x06, 0xbc, 0x12, 0xbf, 0x57, 0xc0, 0x01, + 0xfe, 0x9c, 0xf0, 0x26, 0x02, 0xfe, 0x00, 0x0d, 0xff, 0x10, 0x00, + 0x00, 0xfe, 0xc2, 0x01, 0xfe, 0x56, 0x19, 0x00, 0xfc, 0xfe, 0x80, + 0x01, 0xff, 0x03, 0x00, 0x00, 0xfe, 0x6a, 0x13, 0xfe, 0x05, 0x05, + 0xff, 0x40, 0x00, 0x00, 0x0d, 0xff, 0x09, 0x00, 0x00, 0xff, 0x08, + 0x01, 0x01, 0xff, 0x10, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0xff, + 0x10, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0xfe, 0x78, 0x56, 0xfe, + 0x34, 0x12, 0xff, 0x21, 0x00, 0x00, 0xfe, 0x04, 0xf7, 0xfc, 0x2b, + 0x51, 0x0c, 0x01, 0xfe, 0xea, 0x0e, 0xfe, 0x04, 0xf7, 0xfc, 0x51, + 0x0c, 0x1d, 0x2b, 0xfe, 0x3d, 0xf0, 0xfe, 0xf8, 0x01, 0xfe, 0x20, + 0xf0, 0xd0, 0x04, 0x56, 0x4b, 0x02, 0xfe, 0x1c, 0x0d, 0x01, 0xfe, + 0x7c, 0x0d, 0xfe, 0xe9, 0x12, 0x02, 0xfe, 0x04, 0x03, 0xfe, 0x28, + 0x1c, 0x04, 0xfe, 0xa6, 0x00, 0xfe, 0xdd, 0x12, 0x4e, 0x12, 0xfe, + 0xa6, 0x00, 0xc5, 0xfe, 0x48, 0xf0, 0xfe, 0x7c, 0x02, 0xfe, 0x49, + 0xf0, 0xfe, 0x96, 0x02, 0xfe, 0x4a, 0xf0, 0xfe, 0xb4, 0x02, 0xfe, + 0x46, 0xf0, 0xfe, 0x46, 0x02, 0xfe, 0x47, 0xf0, 0xfe, 0x4c, 0x02, + 0xfe, 0x43, 0xf0, 0xfe, 0x3a, 0x02, 0xfe, 0x44, 0xf0, 0xfe, 0x3e, + 0x02, 0xfe, 0x45, 0xf0, 0xfe, 0x42, 0x02, 0x09, 0x0c, 0x9e, 0x09, + 0x06, 0x12, 0xbb, 0x02, 0x26, 0xfe, 0x00, 0x1c, 0xfe, 0xf1, 0x10, + 0xfe, 0x02, 0x1c, 0xfe, 0xed, 0x10, 0xfe, 0x1e, 0x1c, 0xfe, 0xe9, + 0x10, 0x01, 0xfe, 0x4c, 0x17, 0xfe, 0xe7, 0x10, 0xfe, 0x06, 0xfc, + 0xf7, 0x0e, 0x78, 0x01, 0xab, 0x02, 0x26, 0x17, 0x55, 0x4a, 0xbd, + 0x01, 0xfe, 0x60, 0x0f, 0x0e, 0x78, 0x01, 0x8b, 0xfe, 0xbd, 0x10, + 0x0e, 0x78, 0x01, 0x8b, 0xfe, 0xad, 0x10, 0xfe, 0x16, 0x1c, 0xfe, + 0x58, 0x1c, 0x09, 0x06, 0x12, 0xbb, 0x2b, 0x22, 0x26, 0xfe, 0x3d, + 0xf0, 0xfe, 0xf8, 0x01, 0x27, 0xfe, 0x8a, 0x02, 0xfe, 0x5a, 0x1c, + 0xd5, 0xfe, 0x14, 0x1c, 0x17, 0xfe, 0x30, 0x00, 0x4a, 0xbd, 0x01, + 0xfe, 0x50, 0x0f, 0x09, 0x06, 0x12, 0xbb, 0x02, 0xfe, 0xc2, 0x01, + 0x21, 0x2a, 0x05, 0x10, 0x35, 0xfe, 0x69, 0x10, 0x09, 0x06, 0x12, + 0xbb, 0xfe, 0x04, 0xec, 0x2a, 0x08, 0x2a, 0x09, 0x3c, 0x1d, 0x01, + 0x46, 0x7f, 0xfe, 0x05, 0xf6, 0xf7, 0x01, 0xfe, 0x76, 0x16, 0x0a, + 0x41, 0x89, 0x38, 0x11, 0x47, 0x1d, 0xca, 0x08, 0x1c, 0x09, 0x43, + 0x01, 0x71, 0x02, 0x26, 0x0e, 0x3d, 0x01, 0x15, 0x05, 0x10, 0x2c, + 0x08, 0x1c, 0x09, 0x43, 0x01, 0x7b, 0xfe, 0x28, 0x10, 0x0e, 0xc0, + 0x01, 0x15, 0xe6, 0x0e, 0x79, 0x01, 0x15, 0xfe, 0x49, 0x54, 0x74, + 0xfe, 0x12, 0x03, 0x08, 0x1c, 0x09, 0x43, 0x01, 0x71, 0x02, 0x26, + 0x2b, 0x7f, 0xfe, 0x02, 0xe8, 0x2f, 0xfb, 0xfe, 0x9e, 0x43, 0xf0, + 0xfe, 0x07, 0x4b, 0xfe, 0x20, 0xf0, 0xd0, 0xfe, 0x40, 0x1c, 0x22, + 0xef, 0xfe, 0x26, 0xf0, 0xfe, 0x70, 0x03, 0xfe, 0xa0, 0xf0, 0xfe, + 0x5e, 0x03, 0xfe, 0x11, 0xf0, 0xd0, 0xfe, 0x0e, 0x10, 0xfe, 0x9f, + 0xf0, 0xfe, 0x7e, 0x03, 0xe9, 0x13, 0xfe, 0x11, 0x00, 0x02, 0x62, + 0x2b, 0xfe, 0x48, 0x1c, 0xe9, 0x22, 0xef, 0x34, 0xef, 0xfe, 0x82, + 0xf0, 0xfe, 0x84, 0x03, 0x2d, 0x21, 0xbe, 0x6a, 0x16, 0xbe, 0x0e, + 0x79, 0x01, 0x15, 0x6a, 0x7d, 0x08, 0x1c, 0x09, 0x43, 0x01, 0x46, + 0x11, 0x3d, 0x08, 0x3d, 0x09, 0x99, 0x01, 0x71, 0xf5, 0x11, 0xfe, + 0xe4, 0x00, 0x2e, 0xfe, 0xca, 0x03, 0x22, 0x32, 0x1f, 0xfe, 0xda, + 0x03, 0x01, 0x4c, 0xcb, 0xfe, 0xea, 0x03, 0x6b, 0x92, 0xcf, 0xfe, + 0xaa, 0x06, 0x02, 0x28, 0x04, 0x78, 0x29, 0x18, 0xfe, 0x1c, 0x05, + 0x17, 0x85, 0x01, 0x44, 0x01, 0x97, 0x01, 0x9a, 0x34, 0xfe, 0x5c, + 0x02, 0x02, 0xee, 0xe9, 0x2b, 0x51, 0x19, 0xfe, 0x67, 0x1b, 0xfb, + 0xf0, 0xfe, 0x48, 0x1c, 0x8c, 0x01, 0xfa, 0xac, 0xfe, 0x96, 0xf0, + 0xfe, 0x24, 0x04, 0x2e, 0xfe, 0x28, 0x04, 0x34, 0x26, 0x0e, 0x3d, + 0x01, 0x15, 0x05, 0x10, 0x18, 0xfe, 0x08, 0x05, 0x3e, 0x90, 0x9f, + 0x2f, 0x82, 0x6e, 0x22, 0x32, 0x1f, 0x28, 0x04, 0x78, 0x29, 0xfe, + 0x10, 0x12, 0x17, 0x85, 0x01, 0x44, 0x34, 0xfe, 0x5c, 0x02, 0x02, + 0xee, 0x31, 0xfe, 0xa0, 0x00, 0xfe, 0x9b, 0x57, 0xfe, 0x5e, 0x12, + 0x0a, 0x07, 0x06, 0xfe, 0x56, 0x12, 0x23, 0x24, 0x91, 0x01, 0x0b, + 0x82, 0x6e, 0x1f, 0xfe, 0xd8, 0x04, 0x23, 0x24, 0x91, 0x01, 0x0b, + 0x1f, 0x28, 0x23, 0x24, 0xb3, 0xfe, 0x4c, 0x44, 0xfe, 0x32, 0x12, + 0x57, 0xfe, 0x44, 0x48, 0x08, 0xd6, 0xfe, 0x4c, 0x54, 0x74, 0xfe, + 0x08, 0x05, 0x7f, 0x9f, 0x2f, 0xfe, 0x06, 0x80, 0xfe, 0x48, 0x47, + 0xfe, 0x48, 0x13, 0x3f, 0x05, 0xfe, 0xcc, 0x00, 0xfe, 0x40, 0x13, + 0x0a, 0x07, 0x06, 0xe5, 0xfe, 0x06, 0x10, 0x23, 0x24, 0xb3, 0x0a, + 0x07, 0x37, 0xda, 0x17, 0xa4, 0x0a, 0x07, 0x06, 0x4b, 0x17, 0xfe, + 0x0d, 0x00, 0x01, 0x44, 0x34, 0xfe, 0xc0, 0x0c, 0x02, 0x28, 0x39, + 0x11, 0xfe, 0xe6, 0x00, 0xfe, 0x1c, 0x90, 0xb0, 0x03, 0x17, 0xa4, + 0x01, 0x44, 0x34, 0x26, 0x22, 0x26, 0x02, 0xfe, 0x10, 0x05, 0xfe, + 0x42, 0x5b, 0x51, 0x19, 0xfe, 0x46, 0x59, 0xfb, 0xf0, 0x17, 0x45, + 0xfe, 0x07, 0x80, 0xfe, 0x31, 0x44, 0x0a, 0x07, 0x0c, 0xfe, 0x78, + 0x13, 0xfe, 0x20, 0x80, 0x05, 0x19, 0xfe, 0x70, 0x12, 0x6d, 0x07, + 0x06, 0xfe, 0x60, 0x13, 0x04, 0xfe, 0xa2, 0x00, 0x29, 0x18, 0xfe, + 0xa8, 0x05, 0xfe, 0x31, 0xe4, 0x70, 0x6d, 0x07, 0x0c, 0xfe, 0x4a, + 0x13, 0x04, 0xfe, 0xa0, 0x00, 0x29, 0xfe, 0x42, 0x12, 0x5a, 0x2e, + 0xfe, 0x68, 0x05, 0x22, 0x32, 0xf1, 0x01, 0x0b, 0x25, 0xfe, 0xc0, + 0x05, 0x11, 0xfe, 0xe3, 0x00, 0x2d, 0x6d, 0xfe, 0x4a, 0xf0, 0xfe, + 0x92, 0x05, 0xfe, 0x49, 0xf0, 0xfe, 0x8c, 0x05, 0xa8, 0x20, 0xfe, + 0x21, 0x00, 0xa6, 0x20, 0xfe, 0x22, 0x00, 0x9e, 0x20, 0x89, 0xfe, + 0x09, 0x48, 0x01, 0x0b, 0x25, 0xfe, 0xc0, 0x05, 0xfe, 0xe2, 0x08, + 0x6d, 0x07, 0xd9, 0x4b, 0x01, 0x96, 0x20, 0x06, 0x16, 0xe0, 0x4a, + 0xfe, 0x27, 0x01, 0x0a, 0x07, 0x37, 0xe1, 0x4e, 0x01, 0xb9, 0x17, + 0xa4, 0x0a, 0x07, 0x06, 0x4b, 0x17, 0xfe, 0x0d, 0x00, 0x01, 0x44, + 0x01, 0x97, 0x01, 0x9a, 0x34, 0xfe, 0xc0, 0x0c, 0x02, 0x28, 0x04, + 0xfe, 0x9c, 0x00, 0x29, 0xfe, 0x3e, 0x12, 0x04, 0x53, 0x29, 0xfe, + 0x36, 0x13, 0x4e, 0x01, 0xb9, 0x25, 0xfe, 0x38, 0x06, 0x0e, 0x06, + 0x6d, 0x07, 0x1a, 0xfe, 0x02, 0x12, 0x77, 0x01, 0xfe, 0x26, 0x14, + 0x1f, 0xfe, 0x2e, 0x06, 0x11, 0xc2, 0x01, 0x4c, 0x11, 0xfe, 0xe5, + 0x00, 0x04, 0x53, 0xbc, 0x0f, 0x53, 0x04, 0xf6, 0x29, 0xfe, 0x62, + 0x12, 0x04, 0x4d, 0x29, 0xfe, 0x5a, 0x13, 0x01, 0xfe, 0x9e, 0x18, + 0x01, 0xfe, 0xf0, 0x18, 0xe7, 0xa3, 0x1a, 0x08, 0x63, 0xff, 0x02, + 0x00, 0x57, 0x66, 0x7e, 0x1b, 0x50, 0xc9, 0xa3, 0x6c, 0x4e, 0x01, + 0xb9, 0x25, 0xfe, 0xa2, 0x06, 0x6d, 0x07, 0x1e, 0xa5, 0x95, 0x0e, + 0x55, 0x01, 0xfe, 0x54, 0x14, 0x1f, 0xfe, 0x98, 0x06, 0x11, 0xc2, + 0x01, 0x4c, 0x11, 0xfe, 0xe5, 0x00, 0x04, 0x4d, 0xbc, 0x0f, 0x4d, + 0x09, 0x06, 0x01, 0xb9, 0xf5, 0x73, 0x8c, 0x01, 0xfa, 0xac, 0x11, + 0xfe, 0xe2, 0x00, 0x2e, 0xf9, 0x22, 0x32, 0xcf, 0xfe, 0xd6, 0x06, + 0x81, 0xfe, 0x74, 0x07, 0xcb, 0xfe, 0x7c, 0x07, 0x6b, 0x92, 0x02, + 0x28, 0x0a, 0x07, 0x0c, 0xfe, 0x2e, 0x12, 0x14, 0x19, 0x01, 0x0b, + 0x14, 0x00, 0x01, 0x0b, 0x14, 0x00, 0x01, 0x0b, 0x14, 0x00, 0x01, + 0x0b, 0xfe, 0x99, 0xa4, 0x01, 0x0b, 0x14, 0x00, 0x02, 0xfe, 0x4c, + 0x08, 0x68, 0x07, 0x1e, 0xe5, 0x0a, 0x07, 0x1e, 0xfe, 0x30, 0x13, + 0x14, 0xfe, 0x1b, 0x00, 0x01, 0x0b, 0x14, 0x00, 0x01, 0x0b, 0x14, + 0x00, 0x01, 0x0b, 0x14, 0x00, 0x01, 0x0b, 0x14, 0x06, 0x01, 0x0b, + 0x14, 0x00, 0x02, 0xfe, 0x2a, 0x0b, 0x77, 0xfe, 0x9a, 0x81, 0x67, + 0x89, 0xfe, 0x09, 0x6f, 0xfe, 0x93, 0x45, 0x18, 0xfe, 0x84, 0x07, + 0x2e, 0xfe, 0x5c, 0x07, 0x22, 0x32, 0xcf, 0xfe, 0x54, 0x07, 0x6b, + 0x92, 0x81, 0xfe, 0x74, 0x07, 0x02, 0x28, 0x01, 0x4c, 0x02, 0xf9, + 0x14, 0x1a, 0x02, 0xf9, 0xfe, 0x9c, 0xf7, 0xfe, 0xec, 0x07, 0xfe, + 0x2c, 0x90, 0xfe, 0xae, 0x90, 0x75, 0xfe, 0xd2, 0x07, 0x0f, 0x5d, + 0x12, 0x5e, 0x0a, 0x41, 0x70, 0x38, 0x01, 0xfe, 0x34, 0x18, 0x05, + 0x10, 0x83, 0xfe, 0x83, 0xe7, 0x88, 0xa6, 0xfe, 0x03, 0x40, 0x0a, + 0x41, 0x45, 0x38, 0x01, 0xc1, 0xaf, 0xfe, 0x1f, 0x40, 0x16, 0x61, + 0x01, 0xfe, 0xde, 0x12, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0xfe, + 0x34, 0x51, 0xfe, 0xb6, 0x51, 0xfe, 0x08, 0x90, 0xfe, 0x8a, 0x90, + 0x0f, 0x5b, 0x12, 0x5c, 0xd2, 0xf2, 0x0f, 0x3a, 0x12, 0x3b, 0xfe, + 0x60, 0x10, 0x0a, 0x07, 0x70, 0xe1, 0xfe, 0x2c, 0x90, 0xfe, 0xae, + 0x90, 0x0f, 0x5d, 0x12, 0x5e, 0x0a, 0x07, 0x45, 0xc9, 0x01, 0xc1, + 0xfe, 0x1f, 0x80, 0x16, 0x61, 0xfe, 0x34, 0x90, 0xfe, 0xb6, 0x90, + 0x0f, 0x5f, 0x12, 0x60, 0xfe, 0x08, 0x90, 0xfe, 0x8a, 0x90, 0x0f, + 0x5b, 0x12, 0x5c, 0xa2, 0x07, 0x45, 0x2c, 0xd2, 0xf2, 0x0f, 0x3a, + 0x12, 0x3b, 0xa8, 0xfe, 0x28, 0x90, 0xfe, 0xaa, 0x90, 0x0f, 0x3a, + 0x12, 0x3b, 0x0f, 0x42, 0x12, 0x58, 0x0a, 0x41, 0x1a, 0x38, 0x2b, + 0x08, 0x80, 0x2e, 0xfe, 0x62, 0x08, 0xfe, 0x9e, 0xf0, 0xfe, 0x76, + 0x08, 0x9b, 0x18, 0x32, 0x2b, 0x52, 0xfe, 0xed, 0x10, 0xa7, 0xfe, + 0x9a, 0x08, 0xa9, 0xfe, 0xb6, 0x08, 0x81, 0xfe, 0x8e, 0x08, 0xcb, + 0xfe, 0x94, 0x08, 0x6b, 0x92, 0x02, 0x28, 0x01, 0x4c, 0xfe, 0xc9, + 0x10, 0x14, 0x1a, 0xfe, 0xc9, 0x10, 0x68, 0x07, 0x06, 0xfe, 0x10, + 0x12, 0x68, 0x07, 0x0c, 0x40, 0x0a, 0x07, 0x0c, 0xfe, 0x7e, 0x12, + 0xfe, 0x2e, 0x1c, 0xaa, 0x68, 0x07, 0x06, 0x40, 0x68, 0x07, 0x0c, + 0xfe, 0x6a, 0x12, 0xfe, 0x2c, 0x1c, 0xa2, 0x07, 0x45, 0xd4, 0xa2, + 0x41, 0x45, 0xfe, 0x05, 0x40, 0xd2, 0xf2, 0xfe, 0x28, 0x50, 0xfe, + 0xaa, 0x50, 0xfe, 0xaa, 0xf0, 0xfe, 0x4e, 0x09, 0xfe, 0xac, 0xf0, + 0xfe, 0xee, 0x08, 0xfe, 0x92, 0x10, 0xe3, 0xfe, 0xf3, 0x10, 0xfe, + 0xad, 0xf0, 0xfe, 0xfa, 0x08, 0x02, 0xfe, 0x5c, 0x0a, 0xe4, 0xfe, + 0xe7, 0x10, 0xfe, 0x2b, 0xf0, 0xb8, 0xfe, 0x6b, 0x18, 0x1b, 0xfe, + 0x00, 0xfe, 0xda, 0xc5, 0xfe, 0xd2, 0xf0, 0xb8, 0xfe, 0x76, 0x18, + 0x1b, 0x19, 0x18, 0xb8, 0x04, 0xdf, 0x1b, 0x06, 0x18, 0xb8, 0xa7, + 0x7a, 0xa9, 0x7a, 0xe3, 0xe4, 0xfe, 0xb1, 0x10, 0x8c, 0x5a, 0x39, + 0x17, 0xa4, 0x01, 0x44, 0x13, 0xfe, 0x35, 0x00, 0x34, 0x62, 0x13, + 0x8d, 0x02, 0x62, 0xfe, 0x74, 0x18, 0x1b, 0xfe, 0x00, 0xf8, 0x18, + 0x7a, 0x51, 0x1e, 0x01, 0xfe, 0x7c, 0x0d, 0xd1, 0x08, 0x1c, 0x09, + 0x43, 0x01, 0x71, 0x21, 0x2f, 0x3e, 0x51, 0x19, 0x02, 0x7a, 0xfe, + 0x98, 0x80, 0xd7, 0x0c, 0x27, 0xfe, 0x3e, 0x0a, 0x0a, 0x07, 0x70, + 0xfe, 0x82, 0x12, 0x0a, 0x07, 0x1a, 0xfe, 0x66, 0x13, 0x21, 0x61, + 0x6a, 0xc8, 0xfe, 0x83, 0x80, 0xfe, 0xc8, 0x44, 0xfe, 0x2e, 0x13, + 0xfe, 0x04, 0x91, 0xfe, 0x86, 0x91, 0x64, 0x2f, 0xfe, 0x40, 0x59, + 0xfe, 0xc1, 0x59, 0x75, 0xfe, 0xea, 0x08, 0x04, 0x5d, 0x30, 0x5e, + 0x0f, 0xae, 0x12, 0x8d, 0x9c, 0x5d, 0x9d, 0x5e, 0x01, 0xc1, 0xaf, + 0x64, 0x2f, 0x16, 0x61, 0xa1, 0x42, 0x69, 0x58, 0x65, 0x5f, 0x31, + 0x60, 0xe8, 0xfe, 0xe5, 0x55, 0xfe, 0x04, 0xfa, 0x42, 0xfe, 0x05, + 0xfa, 0x58, 0x01, 0xfe, 0xde, 0x12, 0xfe, 0x36, 0x10, 0x2d, 0x0f, + 0xae, 0x0f, 0x8d, 0x65, 0x5f, 0x31, 0x60, 0xaa, 0x0a, 0x07, 0x1a, + 0x18, 0xfe, 0xea, 0x08, 0x65, 0x3a, 0x31, 0x3b, 0x0a, 0x07, 0xfe, + 0xf7, 0x00, 0x38, 0x04, 0x5b, 0x30, 0x5c, 0xfe, 0x10, 0x58, 0xfe, + 0x91, 0x58, 0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59, 0x02, 0x7a, 0x0a, + 0x07, 0x1a, 0x18, 0xfe, 0xea, 0x08, 0x0a, 0x07, 0xfe, 0xf7, 0x00, + 0x38, 0xfe, 0x3a, 0x55, 0xfe, 0x19, 0x81, 0x77, 0xfe, 0x10, 0x90, + 0xfe, 0x92, 0x90, 0xfe, 0xd7, 0x10, 0x3f, 0x05, 0xc3, 0x18, 0xfe, + 0xf6, 0x08, 0x11, 0xc3, 0xfe, 0x98, 0x80, 0xd7, 0x0c, 0xfe, 0x14, + 0x13, 0x04, 0x3a, 0x30, 0x3b, 0x75, 0xfe, 0xf6, 0x08, 0xfe, 0x0c, + 0x58, 0xfe, 0x8d, 0x58, 0x02, 0x7a, 0x2d, 0x4e, 0xfe, 0x19, 0x80, + 0xfe, 0xf1, 0x10, 0x0a, 0x07, 0x0c, 0xa5, 0xfe, 0x6c, 0x19, 0xfe, + 0x19, 0x41, 0xfe, 0x8e, 0x10, 0xfe, 0x6c, 0x19, 0x9c, 0x3a, 0xfe, + 0xed, 0x19, 0x9d, 0x3b, 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0xfe, + 0x6b, 0x18, 0x1b, 0xfe, 0x00, 0xff, 0x35, 0xfe, 0x74, 0x10, 0xc5, + 0xfe, 0xd2, 0xf0, 0xfe, 0xd6, 0x0a, 0xfe, 0x76, 0x18, 0x1b, 0x19, + 0xce, 0x04, 0xdf, 0x1b, 0x06, 0x84, 0x13, 0xfe, 0x16, 0x00, 0x02, + 0x62, 0xfe, 0xd1, 0xf0, 0xfe, 0xe8, 0x0a, 0x17, 0x80, 0x01, 0x44, + 0x13, 0xd6, 0xfe, 0x42, 0x10, 0xfe, 0xce, 0xf0, 0xfe, 0xee, 0x0a, + 0xfe, 0x3c, 0x10, 0xfe, 0xcd, 0xf0, 0xfe, 0xfa, 0x0a, 0x13, 0xfe, + 0x22, 0x00, 0x02, 0x62, 0xfe, 0xcb, 0xf0, 0xfe, 0x06, 0x0b, 0x13, + 0xfe, 0x24, 0x00, 0x02, 0x62, 0xfe, 0xd0, 0xf0, 0xfe, 0x10, 0x0b, + 0x13, 0x88, 0xd8, 0xfe, 0xcf, 0xf0, 0xfe, 0x1a, 0x0b, 0x13, 0x89, + 0xd3, 0xfe, 0xcc, 0xf0, 0xfe, 0x2a, 0x0b, 0xfe, 0x84, 0x80, 0xd7, + 0x1a, 0x4b, 0x13, 0xfe, 0x12, 0x00, 0x2b, 0x08, 0x80, 0x2e, 0xfe, + 0x30, 0x0b, 0xfe, 0x9e, 0xf0, 0xfe, 0x44, 0x0b, 0x9b, 0x18, 0x32, + 0x2b, 0x52, 0xfe, 0xed, 0x10, 0xa7, 0x28, 0xa9, 0x28, 0x2b, 0xf5, + 0x2e, 0xfe, 0x50, 0x0b, 0x22, 0x32, 0x81, 0xfe, 0x6c, 0x0b, 0x6b, + 0x92, 0xa7, 0xfe, 0xec, 0x07, 0xa9, 0xfe, 0xec, 0x07, 0x02, 0x28, + 0x01, 0x4c, 0xfe, 0xdb, 0x10, 0x11, 0xfe, 0xe8, 0x00, 0xe3, 0xe4, + 0x8c, 0x82, 0x6e, 0xfe, 0x89, 0xf0, 0x28, 0x23, 0x24, 0xfe, 0xe9, + 0x09, 0x01, 0x0b, 0x82, 0x6e, 0x1f, 0x28, 0x23, 0x24, 0x91, 0x34, + 0xfe, 0xa8, 0x0b, 0x22, 0x32, 0x02, 0xfe, 0x9c, 0x0b, 0x9b, 0x40, + 0x13, 0xfe, 0x42, 0x00, 0x02, 0x62, 0xa0, 0x06, 0xfe, 0x81, 0x49, + 0x96, 0x0a, 0x07, 0x0c, 0xfe, 0x5a, 0x13, 0x13, 0x00, 0x59, 0x0c, + 0xfe, 0x6a, 0x12, 0x59, 0xfe, 0x28, 0x00, 0x27, 0xfe, 0xee, 0x0c, + 0x0e, 0x79, 0x01, 0x15, 0x05, 0x00, 0x84, 0x36, 0xfe, 0x28, 0x00, + 0x02, 0xfe, 0xee, 0x0c, 0x01, 0x97, 0x01, 0x9a, 0x0e, 0xc0, 0x01, + 0xfe, 0x44, 0x0e, 0xb2, 0x08, 0x3d, 0x09, 0x99, 0x01, 0x46, 0x11, + 0x47, 0x08, 0x1c, 0x09, 0x43, 0x01, 0x7b, 0x02, 0x26, 0x13, 0xfe, + 0x44, 0x00, 0x59, 0x0c, 0xa5, 0x36, 0x0c, 0xfe, 0xc0, 0x10, 0x01, + 0x96, 0x36, 0x0c, 0xfe, 0xb6, 0x10, 0x01, 0x96, 0xfe, 0x19, 0x82, + 0xfe, 0x34, 0x46, 0xfe, 0x0a, 0x13, 0x36, 0x0c, 0x13, 0xfe, 0x43, + 0x00, 0xfe, 0xa2, 0x10, 0x0a, 0x41, 0x0c, 0x38, 0x01, 0x97, 0x01, + 0x9a, 0xb2, 0x08, 0x3d, 0x09, 0x99, 0x01, 0x46, 0x11, 0x47, 0x08, + 0x1c, 0x09, 0x43, 0x01, 0x7b, 0x51, 0x0c, 0xb2, 0x1d, 0xca, 0x02, + 0xfe, 0x48, 0x03, 0x0a, 0x07, 0x0c, 0xce, 0x36, 0x0c, 0x13, 0x00, + 0xfe, 0x54, 0x10, 0x68, 0x07, 0x1e, 0xfe, 0x50, 0x12, 0x0a, 0x07, + 0x1e, 0xfe, 0x48, 0x13, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, 0xf0, 0xfe, + 0xac, 0x0c, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, 0xf0, 0xfe, 0xb2, 0x0c, + 0x0a, 0x41, 0x1e, 0x38, 0xfe, 0x95, 0x10, 0x13, 0xfe, 0x15, 0x00, + 0xfe, 0x04, 0xe6, 0x0c, 0x77, 0xfe, 0x26, 0x10, 0x13, 0xfe, 0x13, + 0x00, 0xd3, 0x13, 0xfe, 0x47, 0x00, 0xa6, 0x13, 0xfe, 0x41, 0x00, + 0x9e, 0x13, 0xfe, 0x24, 0x00, 0x04, 0x78, 0x29, 0x27, 0xee, 0x77, + 0xfe, 0x04, 0xe6, 0x1e, 0xfe, 0x9d, 0x41, 0xfe, 0x1c, 0x42, 0xb2, + 0x01, 0xea, 0x02, 0x26, 0xd5, 0x17, 0x0c, 0x4a, 0xf4, 0xdd, 0x17, + 0xfe, 0x31, 0x00, 0x4a, 0xbd, 0x01, 0xfe, 0x50, 0x0f, 0x02, 0xfe, + 0xc2, 0x01, 0x1d, 0xfe, 0x06, 0xec, 0xf8, 0x86, 0x36, 0x37, 0xbf, + 0x35, 0x1d, 0xfe, 0x06, 0xea, 0xf8, 0xfe, 0x47, 0x4b, 0x95, 0xfe, + 0x75, 0x57, 0x04, 0x56, 0xfe, 0x98, 0x56, 0xfe, 0x28, 0x12, 0x0e, + 0x79, 0xfe, 0xf4, 0x14, 0x4e, 0xe6, 0x0e, 0xc0, 0xfe, 0xea, 0x14, + 0xfe, 0x49, 0x54, 0x8f, 0xfe, 0x62, 0x0d, 0x0e, 0x1c, 0xfe, 0xde, + 0x14, 0xfe, 0x44, 0x48, 0x02, 0xfe, 0x48, 0x03, 0x0e, 0x56, 0xfe, + 0xc8, 0x14, 0x86, 0x36, 0x37, 0xbf, 0x35, 0x1d, 0xfe, 0xce, 0x47, + 0xfe, 0xbd, 0x13, 0x02, 0x26, 0x21, 0x2a, 0x05, 0x10, 0xfe, 0x78, + 0x12, 0x2d, 0x16, 0x55, 0x16, 0xad, 0x21, 0x47, 0x4e, 0x4a, 0x47, + 0x9b, 0xfe, 0x0c, 0x13, 0xfe, 0xbc, 0xf0, 0xfe, 0xfe, 0x0d, 0x08, + 0x06, 0x16, 0x55, 0x01, 0xfe, 0x06, 0x16, 0x04, 0xfe, 0x38, 0x01, + 0x30, 0xfe, 0x3a, 0x01, 0x75, 0xfe, 0x02, 0x0e, 0x04, 0xfe, 0x38, + 0x01, 0x1b, 0xfe, 0xf0, 0xff, 0x0f, 0xfe, 0x60, 0x01, 0x04, 0xfe, + 0x3a, 0x01, 0x0f, 0xfe, 0x62, 0x01, 0x20, 0x06, 0x16, 0x47, 0xfe, + 0x04, 0xec, 0x2a, 0x08, 0x2a, 0x09, 0x3c, 0x1d, 0x01, 0x46, 0x7f, + 0xfe, 0x05, 0xf6, 0xfe, 0x34, 0x01, 0x01, 0xfe, 0x76, 0x16, 0x11, + 0x47, 0xca, 0x08, 0x06, 0x03, 0x2d, 0x03, 0x21, 0x55, 0xfe, 0xf7, + 0x12, 0x21, 0xad, 0x6a, 0x16, 0xad, 0x05, 0x80, 0xfe, 0x93, 0x13, + 0xfe, 0x24, 0x1c, 0x17, 0x19, 0x4a, 0xf4, 0xdd, 0xfe, 0xd9, 0x10, + 0x93, 0xfe, 0x03, 0xdc, 0xfe, 0x73, 0x57, 0xfe, 0x80, 0x5d, 0x03, + 0x93, 0xfe, 0x03, 0xdc, 0xfe, 0x5b, 0x57, 0xfe, 0x80, 0x5d, 0x03, + 0xfe, 0x03, 0x57, 0x93, 0x2d, 0xfe, 0x00, 0xcc, 0x03, 0xfe, 0x03, + 0x57, 0x93, 0x7d, 0x03, 0x01, 0xfe, 0xae, 0x16, 0x3f, 0x05, 0x47, + 0xfe, 0x0a, 0x13, 0x08, 0x1c, 0x09, 0x43, 0xd3, 0x01, 0x97, 0x01, + 0x9a, 0x08, 0x3d, 0x09, 0x99, 0x01, 0x46, 0x11, 0xfe, 0xe9, 0x00, + 0x0a, 0x07, 0x89, 0xfe, 0x52, 0x13, 0x01, 0xfe, 0x38, 0x16, 0xfe, + 0x1e, 0x1c, 0xfe, 0x14, 0x90, 0x0f, 0xfe, 0x64, 0x01, 0xfe, 0x16, + 0x90, 0x0f, 0xfe, 0x66, 0x01, 0x0a, 0x07, 0x45, 0xe5, 0xfe, 0x03, + 0x80, 0x52, 0x3e, 0x11, 0x76, 0x08, 0x2a, 0x09, 0x3c, 0x1d, 0x90, + 0x01, 0x71, 0xfe, 0x62, 0x08, 0x6a, 0x3e, 0x11, 0x76, 0x08, 0x2a, + 0x09, 0x3c, 0x1d, 0x90, 0x01, 0x71, 0x64, 0x2f, 0x11, 0x76, 0x08, + 0x2a, 0x09, 0x3c, 0x1d, 0x90, 0x01, 0x7b, 0x03, 0xfe, 0x08, 0x1c, + 0x04, 0xfe, 0xac, 0x00, 0xfe, 0x06, 0x58, 0x04, 0xfe, 0xae, 0x00, + 0xfe, 0x07, 0x58, 0x04, 0xfe, 0xb0, 0x00, 0xfe, 0x08, 0x58, 0x04, + 0xfe, 0xb2, 0x00, 0xfe, 0x09, 0x58, 0xfe, 0x0a, 0x1c, 0x20, 0x6c, + 0x16, 0xf8, 0x2d, 0x0f, 0x53, 0x0f, 0x4d, 0x20, 0x10, 0x16, 0x2a, + 0x16, 0x3c, 0x57, 0xa0, 0xd6, 0x08, 0x2a, 0x09, 0x3c, 0x1d, 0x01, + 0x7b, 0x7f, 0x11, 0x76, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0, 0xfe, + 0x2a, 0x0f, 0xd5, 0x8c, 0xfe, 0x14, 0x1c, 0xfe, 0x10, 0x1c, 0xfe, + 0x18, 0x1c, 0x03, 0x1d, 0xfe, 0x0c, 0x14, 0x86, 0xfe, 0x07, 0xe6, + 0x37, 0xfe, 0xce, 0x47, 0xfe, 0xf5, 0x13, 0x03, 0x01, 0x96, 0x0e, + 0x3d, 0x01, 0x15, 0x05, 0x10, 0x2c, 0x0e, 0x1c, 0x01, 0x15, 0x05, + 0x10, 0xda, 0xfe, 0x44, 0x58, 0x3e, 0xfe, 0x01, 0xec, 0xbd, 0xfe, + 0x9e, 0x40, 0xfe, 0x9d, 0xe7, 0x00, 0xfe, 0x9c, 0xe7, 0x1e, 0x9f, + 0x2f, 0x01, 0xea, 0xfe, 0xc9, 0x10, 0x03, 0x2b, 0x82, 0x6e, 0x23, + 0x24, 0xb3, 0x05, 0x1e, 0xfe, 0x48, 0x12, 0x05, 0x0c, 0xfe, 0x4c, + 0x12, 0x05, 0x19, 0xfe, 0x30, 0x12, 0x05, 0xcc, 0x18, 0xfe, 0xf4, + 0x10, 0x05, 0xfe, 0x23, 0x00, 0x18, 0xfe, 0x00, 0x11, 0x05, 0x06, + 0x18, 0xfe, 0x5e, 0x11, 0x05, 0x1a, 0xfe, 0x12, 0x12, 0x05, 0x00, + 0x18, 0x28, 0x17, 0xcc, 0x01, 0x44, 0xc6, 0x39, 0x01, 0x0b, 0x81, + 0x4c, 0x03, 0x39, 0x11, 0xfe, 0xcc, 0x00, 0x02, 0x26, 0x39, 0x3f, + 0x05, 0xc3, 0xfe, 0xe3, 0x13, 0x65, 0x3a, 0x31, 0x3b, 0x75, 0xfe, + 0xb2, 0x10, 0x0a, 0x07, 0x70, 0xfe, 0x72, 0x12, 0xa1, 0x42, 0x69, + 0x58, 0xe8, 0xfe, 0xe5, 0x55, 0x8f, 0xfe, 0x7c, 0x10, 0x21, 0x61, + 0xfe, 0x26, 0x13, 0x04, 0xae, 0x30, 0x8d, 0x75, 0xfe, 0xd2, 0x0c, + 0x0f, 0x5d, 0x12, 0x5e, 0x2d, 0x0f, 0xae, 0x0f, 0x8d, 0x01, 0xc1, + 0x20, 0x6c, 0x52, 0x16, 0x61, 0x01, 0xfe, 0xde, 0x12, 0xa1, 0x42, + 0x69, 0x58, 0xfe, 0x04, 0x55, 0xfe, 0xa5, 0x55, 0xfe, 0x04, 0xfa, + 0x42, 0xfe, 0x05, 0xfa, 0x58, 0xfe, 0x91, 0x10, 0x04, 0x5f, 0x30, + 0x60, 0xfe, 0x40, 0x56, 0xfe, 0xe1, 0x56, 0x0f, 0x5f, 0x12, 0x60, + 0xa8, 0xa1, 0x42, 0x69, 0x58, 0xe8, 0xfe, 0xe5, 0x55, 0x04, 0x5b, + 0x30, 0x5c, 0xfe, 0x00, 0x56, 0xfe, 0xa1, 0x56, 0x0f, 0x5b, 0x12, + 0x5c, 0x0a, 0x07, 0x70, 0xfe, 0x1e, 0x12, 0x21, 0x61, 0xfe, 0x1f, + 0x40, 0x04, 0x5d, 0x30, 0x5e, 0xfe, 0x2c, 0x50, 0xfe, 0xae, 0x50, + 0x04, 0x5f, 0x30, 0x60, 0xfe, 0x34, 0x50, 0xfe, 0xb6, 0x50, 0x04, + 0x5b, 0x30, 0x5c, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0x04, 0x3a, + 0x30, 0x3b, 0xfe, 0x28, 0x50, 0xfe, 0xaa, 0x50, 0x02, 0x98, 0x20, + 0x06, 0x16, 0xf3, 0x02, 0x7c, 0x39, 0x01, 0x0b, 0x1f, 0x4f, 0x23, + 0x24, 0xb3, 0x05, 0x06, 0x27, 0x4f, 0x3f, 0x05, 0xc3, 0x27, 0x7c, + 0x01, 0xfa, 0x1b, 0x50, 0x18, 0x4f, 0x0a, 0x07, 0x0c, 0xdc, 0x65, + 0x3a, 0x31, 0x3b, 0xfe, 0x0a, 0x55, 0x35, 0xfe, 0x8b, 0x55, 0x9c, + 0x3a, 0x9d, 0x3b, 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0x02, 0x7c, + 0xfe, 0x19, 0x81, 0xfe, 0x0a, 0x45, 0xfe, 0x19, 0x41, 0x02, 0x7c, + 0x39, 0x01, 0x0b, 0x1f, 0xfe, 0xf6, 0x0f, 0x23, 0x24, 0xfe, 0xe9, + 0x09, 0x59, 0x19, 0xfe, 0x94, 0x12, 0x59, 0x0c, 0x4b, 0x02, 0x4f, + 0x2e, 0xfe, 0x7e, 0x11, 0x22, 0x32, 0x1f, 0xfe, 0xf6, 0x0f, 0x23, + 0x24, 0x91, 0x05, 0x19, 0x27, 0x4f, 0x01, 0x0b, 0x1f, 0xfe, 0xf6, + 0x0f, 0x23, 0x24, 0xfe, 0xe8, 0x09, 0x57, 0x04, 0xfe, 0x9c, 0x00, + 0x29, 0x35, 0xfe, 0xbb, 0x45, 0x59, 0x00, 0x40, 0x36, 0x06, 0xa0, + 0x50, 0xfe, 0xc0, 0x14, 0xfe, 0xf8, 0x14, 0xac, 0x3f, 0x05, 0xc2, + 0xfe, 0x16, 0x13, 0x04, 0xf6, 0x29, 0xce, 0x04, 0x4d, 0x29, 0x35, + 0x5a, 0x02, 0x7c, 0xfe, 0xc0, 0x5d, 0xfe, 0xe4, 0x14, 0xfe, 0x03, + 0x17, 0x04, 0x53, 0xbc, 0x0f, 0x53, 0x5a, 0x39, 0x01, 0x0b, 0x25, + 0x98, 0x01, 0xfe, 0x26, 0x14, 0x02, 0x98, 0x2e, 0x40, 0x22, 0x32, + 0x1f, 0x4f, 0x23, 0x24, 0x91, 0x05, 0x06, 0x27, 0x4f, 0xfe, 0xf6, + 0x14, 0xfe, 0x42, 0x58, 0xfe, 0x70, 0x14, 0xfe, 0x92, 0x14, 0xac, + 0xfe, 0x4a, 0xf4, 0x0c, 0x18, 0x4f, 0xfe, 0x4a, 0xf4, 0x06, 0xd1, + 0x3f, 0x05, 0xc2, 0xc9, 0x02, 0x7c, 0x04, 0x4d, 0xbc, 0x0f, 0x4d, + 0x5a, 0x39, 0x01, 0x0b, 0x25, 0x98, 0x01, 0xfe, 0x54, 0x14, 0x02, + 0x98, 0x25, 0xfe, 0x70, 0x12, 0x73, 0xf1, 0x73, 0x03, 0x34, 0xfe, + 0x6c, 0x12, 0x6b, 0xfe, 0x6c, 0x12, 0x5a, 0x39, 0x01, 0x0b, 0xfe, + 0xe3, 0x10, 0x08, 0x63, 0xff, 0x02, 0x00, 0x57, 0x66, 0x7e, 0x1b, + 0xfe, 0xff, 0x7f, 0xfe, 0x30, 0x56, 0xfe, 0x00, 0x5c, 0x03, 0x08, + 0x63, 0xff, 0x02, 0x00, 0x57, 0x66, 0x7e, 0x1b, 0x50, 0xfe, 0x30, + 0x56, 0xfe, 0x00, 0x5c, 0x03, 0x08, 0x63, 0xff, 0x02, 0x00, 0x57, + 0x66, 0x7e, 0x03, 0x08, 0x63, 0xff, 0x02, 0x00, 0x57, 0x66, 0x7e, + 0xfe, 0x0b, 0x58, 0x03, 0x0e, 0x53, 0x01, 0x8b, 0x0e, 0x4d, 0x01, + 0x8b, 0x03, 0xc8, 0x1b, 0x10, 0xff, 0x03, 0x00, 0x54, 0xfe, 0x00, + 0xf4, 0x1a, 0x66, 0xfe, 0x00, 0x7d, 0xfe, 0x01, 0x7d, 0xfe, 0x02, + 0x7d, 0xfe, 0x03, 0x7c, 0x64, 0x2f, 0x0f, 0x5b, 0x12, 0x5c, 0x9c, + 0x5f, 0x9d, 0x60, 0x03, 0xfe, 0x62, 0x18, 0xfe, 0x82, 0x5a, 0xfe, + 0xe1, 0x1a, 0xb6, 0xfe, 0x02, 0x58, 0x03, 0x01, 0xfe, 0x9e, 0x18, + 0xfe, 0x42, 0x48, 0x77, 0x57, 0x95, 0x01, 0x0b, 0x1f, 0xfe, 0x1e, + 0x14, 0x23, 0x24, 0xfe, 0xe9, 0x09, 0xfe, 0xc1, 0x59, 0x01, 0x0b, + 0x1f, 0xfe, 0x1e, 0x14, 0x23, 0x24, 0xfe, 0xe8, 0x0a, 0x04, 0xf6, + 0x29, 0xfe, 0xc4, 0x12, 0x2d, 0xb1, 0x1e, 0xdc, 0x59, 0xcd, 0x74, + 0xfe, 0x6c, 0x13, 0x4b, 0x08, 0x06, 0x09, 0xcd, 0xa0, 0xfe, 0x00, + 0x10, 0xfe, 0x78, 0x10, 0xff, 0x02, 0x83, 0x55, 0xa6, 0xff, 0x02, + 0x83, 0x55, 0xb1, 0x19, 0xfe, 0x12, 0x13, 0x72, 0xfe, 0x30, 0x00, + 0x8f, 0xfe, 0xc6, 0x13, 0x09, 0x85, 0x08, 0x06, 0xfe, 0x56, 0x10, + 0xb1, 0x0c, 0xfe, 0x16, 0x13, 0x72, 0xfe, 0x64, 0x00, 0x8f, 0xfe, + 0xc6, 0x13, 0x0e, 0xfe, 0x64, 0x00, 0x09, 0x88, 0x08, 0x06, 0xfe, + 0x28, 0x10, 0xb1, 0x06, 0xfe, 0x60, 0x13, 0x72, 0xfe, 0xc8, 0x00, + 0x8f, 0xfe, 0xc6, 0x13, 0x0e, 0xfe, 0xc8, 0x00, 0x09, 0x55, 0x08, + 0x06, 0xa8, 0x72, 0xfe, 0x90, 0x01, 0xed, 0xfe, 0xd2, 0x13, 0x95, + 0xaa, 0xfe, 0x43, 0xf4, 0xad, 0xfe, 0x56, 0xf0, 0xfe, 0xe4, 0x13, + 0xfe, 0x04, 0xf4, 0x63, 0xfe, 0x43, 0xf4, 0x88, 0xfe, 0xf3, 0x10, + 0xb0, 0x01, 0xfe, 0xae, 0x12, 0x1b, 0x50, 0xd4, 0xfe, 0x00, 0x17, + 0xfe, 0x4d, 0xe4, 0x6c, 0xed, 0xfe, 0x18, 0x14, 0xa3, 0x6c, 0xfe, + 0x14, 0x10, 0xfe, 0x00, 0x17, 0xfe, 0x4d, 0xe4, 0x1a, 0xed, 0xfe, + 0x18, 0x14, 0xa3, 0x1a, 0x9e, 0x57, 0x95, 0x08, 0x06, 0xfe, 0xb4, + 0x56, 0xfe, 0xc3, 0x58, 0x03, 0x57, 0x08, 0x0c, 0x03, 0x14, 0x06, + 0x01, 0x0b, 0x25, 0xec, 0x14, 0x0c, 0x01, 0x0b, 0x25, 0xec, 0x14, + 0x19, 0x01, 0x0b, 0x25, 0xec, 0x73, 0xfe, 0x89, 0x49, 0x01, 0x0b, + 0x03, 0x14, 0x06, 0x01, 0x0b, 0x25, 0xb7, 0x14, 0x19, 0x01, 0x0b, + 0x25, 0xb7, 0x14, 0x06, 0x01, 0x0b, 0x25, 0xb7, 0xfe, 0x89, 0x49, + 0x01, 0x0b, 0x25, 0xb7, 0x73, 0xfe, 0x89, 0x4a, 0x01, 0x0b, 0x03, + 0x57, 0x03, 0x21, 0xe0, 0x05, 0x06, 0xfe, 0x44, 0x13, 0xaf, 0x16, + 0xe0, 0xfe, 0x49, 0xf4, 0x00, 0x4b, 0x73, 0xc6, 0x5a, 0xfe, 0x01, + 0xec, 0xfe, 0x27, 0x01, 0xf1, 0x01, 0x0b, 0x3f, 0x05, 0xfe, 0xe3, + 0x00, 0xfe, 0x20, 0x13, 0x1f, 0xfe, 0xd6, 0x14, 0x2d, 0x16, 0xf3, + 0x01, 0x4c, 0x21, 0xf3, 0x05, 0x06, 0x40, 0x0a, 0x41, 0x06, 0x38, + 0x03, 0x0f, 0x54, 0x12, 0x8a, 0xfe, 0x43, 0x58, 0x01, 0x15, 0x05, + 0x10, 0xfe, 0x1e, 0x12, 0x48, 0xe7, 0x8e, 0x01, 0x2c, 0xfe, 0x90, + 0x4d, 0xde, 0x10, 0xfe, 0xc5, 0x59, 0x01, 0x2c, 0xfe, 0x8d, 0x56, + 0xb6, 0x48, 0x03, 0x48, 0x31, 0x8a, 0x01, 0x15, 0x48, 0x8e, 0x01, + 0x2c, 0xe2, 0x10, 0xde, 0x10, 0x31, 0x54, 0x72, 0x1c, 0x84, 0x0e, + 0x56, 0x01, 0xab, 0x03, 0x0f, 0x54, 0x12, 0x8a, 0xfe, 0xc3, 0x58, + 0x01, 0x15, 0x05, 0x10, 0xfe, 0x1a, 0x12, 0x48, 0xe7, 0x8e, 0x01, + 0x2c, 0xe2, 0x10, 0xfe, 0x80, 0x4d, 0xfe, 0xc5, 0x59, 0x01, 0x2c, + 0x48, 0x03, 0x48, 0x31, 0x54, 0x01, 0x15, 0x48, 0x8e, 0x01, 0x2c, + 0xe2, 0x10, 0xde, 0x10, 0x31, 0x54, 0x72, 0x1c, 0x84, 0x0e, 0x56, + 0x01, 0xab, 0x03, 0x0f, 0x54, 0x12, 0x8a, 0xfe, 0x43, 0x58, 0x01, + 0x15, 0xfe, 0x42, 0x48, 0x8e, 0x01, 0x2c, 0xfe, 0xc0, 0x5a, 0xb0, + 0xfe, 0x00, 0xcd, 0xfe, 0x01, 0xcc, 0xfe, 0x4a, 0x46, 0xdc, 0x93, + 0x7d, 0x05, 0x10, 0xfe, 0x2e, 0x13, 0x69, 0x54, 0xfe, 0x4d, 0xf4, + 0x1c, 0xfe, 0x1c, 0x13, 0x0e, 0x56, 0x01, 0x8b, 0xaa, 0xfe, 0x40, + 0x4c, 0xfe, 0xc5, 0x58, 0x01, 0x2c, 0xfe, 0x00, 0x07, 0x7d, 0x05, + 0x10, 0x84, 0x69, 0x8a, 0xfe, 0x05, 0x57, 0xfe, 0x08, 0x10, 0xfe, + 0x45, 0x58, 0x01, 0x2c, 0xfe, 0x8d, 0x56, 0xb6, 0xfe, 0x80, 0x4c, + 0xfe, 0x05, 0x17, 0x03, 0x09, 0x10, 0x6f, 0x67, 0xfe, 0x60, 0x01, + 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x24, 0x1c, 0xdb, 0x37, + 0x94, 0xfe, 0x1a, 0x16, 0x01, 0xfe, 0x28, 0x17, 0xfe, 0x0c, 0x13, + 0x87, 0x37, 0x67, 0xfe, 0x2c, 0x01, 0xfe, 0x2f, 0x19, 0x03, 0xba, + 0x27, 0xfe, 0x0a, 0x16, 0xfe, 0xe2, 0x10, 0x09, 0x10, 0x6f, 0x04, + 0xfe, 0x64, 0x01, 0xfe, 0x00, 0xf4, 0x1a, 0xfe, 0x18, 0x58, 0x04, + 0xfe, 0x66, 0x01, 0xfe, 0x19, 0x58, 0x87, 0x1a, 0xfe, 0x3c, 0x90, + 0xfe, 0x30, 0xf4, 0x06, 0xfe, 0x3c, 0x50, 0x67, 0xfe, 0x38, 0x00, + 0xfe, 0x0f, 0x79, 0xfe, 0x1c, 0xf7, 0x1a, 0x94, 0xfe, 0x64, 0x16, + 0xfe, 0xbe, 0x14, 0x35, 0x03, 0xba, 0x27, 0xfe, 0x3c, 0x16, 0xfe, + 0xa4, 0x10, 0x09, 0x10, 0x6f, 0xb6, 0xfe, 0x18, 0xdf, 0xfe, 0x19, + 0xdf, 0xdb, 0x42, 0x94, 0xfe, 0x86, 0x16, 0xfe, 0x9c, 0x14, 0xfe, + 0x18, 0x13, 0x87, 0x42, 0x67, 0x1e, 0xfe, 0xaf, 0x19, 0xfe, 0x98, + 0xe7, 0x00, 0xa2, 0x07, 0xfe, 0x7f, 0x00, 0xfe, 0x05, 0x40, 0x03, + 0xba, 0x27, 0xfe, 0x7a, 0x16, 0xfe, 0x6c, 0x10, 0x09, 0x10, 0x6f, + 0xfe, 0x30, 0xbc, 0xfe, 0xb2, 0xbc, 0x87, 0xd9, 0x67, 0x1e, 0xfe, + 0x0f, 0x79, 0xfe, 0x1c, 0xf7, 0xd9, 0x94, 0xfe, 0xc6, 0x16, 0xfe, + 0x5c, 0x14, 0x35, 0x03, 0xba, 0x27, 0xfe, 0xb2, 0x16, 0xfe, 0x42, + 0x10, 0xfe, 0x02, 0xf6, 0x10, 0x6f, 0xfe, 0x18, 0xfe, 0x5d, 0xfe, + 0x19, 0xfe, 0x5e, 0xc8, 0xdb, 0x45, 0x94, 0xfe, 0xec, 0x16, 0xfe, + 0x36, 0x14, 0xfe, 0x1c, 0x13, 0x87, 0x45, 0x4e, 0xfe, 0x83, 0x58, + 0xfe, 0xaf, 0x19, 0xfe, 0x80, 0xe7, 0x10, 0xfe, 0x81, 0xe7, 0x10, + 0x11, 0xfe, 0xdd, 0x00, 0x64, 0x2f, 0x03, 0x64, 0x2f, 0xfe, 0x12, + 0x45, 0x27, 0xfe, 0xdc, 0x16, 0x17, 0x06, 0x4a, 0xf4, 0xdd, 0x02, + 0x26, 0xfe, 0x39, 0xf0, 0xfe, 0x30, 0x17, 0x2d, 0x03, 0xfe, 0x7e, + 0x18, 0x1b, 0x19, 0x83, 0x08, 0x0d, 0x03, 0x6f, 0x04, 0xdf, 0x1b, + 0x06, 0xfe, 0xef, 0x12, 0xfe, 0xe1, 0x10, 0x1d, 0x0e, 0x1c, 0x01, + 0x15, 0x05, 0x10, 0x40, 0x3e, 0xfe, 0x78, 0x14, 0xfe, 0x34, 0x12, + 0x50, 0x86, 0x36, 0x37, 0xbf, 0xfe, 0xe9, 0x13, 0x1d, 0x0e, 0x3d, + 0x01, 0x15, 0x05, 0x10, 0x40, 0x3e, 0xfe, 0x56, 0x14, 0xe1, 0x50, + 0x86, 0x36, 0x37, 0xbf, 0xfe, 0xe9, 0x13, 0x09, 0x0c, 0x03, 0xfe, + 0x9c, 0xe7, 0x0c, 0x13, 0xfe, 0x15, 0x00, 0x90, 0x9f, 0x2f, 0x01, + 0xea, 0x09, 0x06, 0x03, 0x0a, 0x41, 0x37, 0x38, 0x08, 0x3d, 0x09, + 0x99, 0x01, 0x46, 0x11, 0x47, 0x08, 0x1c, 0x09, 0x43, 0x01, 0x7b, + 0x09, 0x06, 0x03, 0xfe, 0x38, 0x90, 0xfe, 0xba, 0x90, 0x65, 0xf7, + 0x31, 0x76, 0xfe, 0x48, 0x55, 0x35, 0xfe, 0xc9, 0x55, 0x03, 0x21, + 0xbe, 0x52, 0x16, 0xbe, 0x03, 0x0e, 0xc0, 0x01, 0x15, 0xe6, 0x0e, + 0x79, 0x01, 0x15, 0xfe, 0x49, 0x44, 0x27, 0xfe, 0x26, 0x18, 0x0e, + 0x1c, 0x01, 0x15, 0x05, 0x10, 0x40, 0x0e, 0x56, 0x01, 0xab, 0x0e, + 0x79, 0x01, 0x15, 0x52, 0x7d, 0x03, 0xfe, 0x40, 0x5e, 0xfe, 0xe2, + 0x08, 0xfe, 0xc0, 0x4c, 0x21, 0x3c, 0x05, 0x10, 0xfe, 0x52, 0x12, + 0x3e, 0x05, 0x00, 0xfe, 0x18, 0x12, 0xfe, 0xe1, 0x18, 0xfe, 0x19, + 0xf4, 0xfe, 0x7f, 0x00, 0xd4, 0xfe, 0xe2, 0x08, 0x52, 0x3e, 0x3f, + 0x05, 0x76, 0xa5, 0xfe, 0x82, 0x48, 0xfe, 0x01, 0x80, 0xfe, 0xd7, + 0x10, 0xfe, 0xc4, 0x48, 0x08, 0x2a, 0x09, 0x3c, 0xfe, 0x40, 0x5f, + 0x1d, 0x01, 0x46, 0x11, 0xfe, 0xdd, 0x00, 0xfe, 0x14, 0x46, 0x08, + 0x2a, 0x09, 0x3c, 0x01, 0x46, 0x11, 0xfe, 0xdd, 0x00, 0xfe, 0x40, + 0x4a, 0x6a, 0xfe, 0x06, 0x17, 0xfe, 0x01, 0x07, 0xfe, 0x82, 0x48, + 0xfe, 0x04, 0x17, 0x03, 0xeb, 0x19, 0x74, 0xfe, 0xae, 0x18, 0x04, + 0xfe, 0x90, 0x00, 0xfe, 0x3a, 0x45, 0xfe, 0x2c, 0x10, 0xeb, 0xcc, + 0x74, 0xfe, 0xc0, 0x18, 0x04, 0xfe, 0x92, 0x00, 0xc7, 0x1e, 0xd8, + 0xeb, 0xfe, 0x0b, 0x00, 0x74, 0xfe, 0xd2, 0x18, 0x04, 0xfe, 0x94, + 0x00, 0xc7, 0x1a, 0xfe, 0x08, 0x10, 0x04, 0xfe, 0x96, 0x00, 0xc7, + 0x85, 0xfe, 0x4e, 0x45, 0xd1, 0xfe, 0x0a, 0x45, 0xff, 0x04, 0x68, + 0x54, 0xfe, 0xf1, 0x10, 0x1b, 0x6c, 0x03, 0x05, 0x80, 0xfe, 0x5a, + 0xf0, 0xfe, 0xfe, 0x18, 0x20, 0xfe, 0x09, 0x00, 0xfe, 0x34, 0x10, + 0x05, 0x1e, 0xfe, 0x5a, 0xf0, 0xfe, 0x0c, 0x19, 0x20, 0xcd, 0xfe, + 0x26, 0x10, 0x05, 0x19, 0x83, 0x20, 0x85, 0xd8, 0x05, 0x0c, 0x83, + 0x20, 0x88, 0xfe, 0x0e, 0x10, 0x05, 0x06, 0x83, 0x20, 0x55, 0xc6, + 0xaf, 0x03, 0x17, 0xfe, 0x09, 0x00, 0x01, 0x44, 0x2e, 0xfe, 0x3c, + 0x19, 0x04, 0x6e, 0xb0, 0x03, 0x22, 0xfe, 0x54, 0x19, 0xfe, 0x14, + 0xf0, 0x0b, 0x2e, 0xfe, 0x50, 0x19, 0x03, 0xff, 0x15, 0x00, 0x00, +}; + +const struct adw_mcode adw_asc3550_mcode_data = { - 0x9C, 0xF0, 0x80, 0x01, 0x00, 0xF0, 0x44, 0x0A, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x01, 0xD6, 0x11, - 0x00, 0x00, 0x70, 0x01, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x90, 0x10, 0x2D, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x78, 0x56, 0x34, 0x12, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xF7, 0x70, 0x01, - 0x0C, 0x1C, 0x06, 0xF7, 0x02, 0x00, 0x00, 0xF2, 0xD6, 0x0A, 0x04, - 0xF7, 0x70, 0x01, 0x06, 0xF7, 0x02, 0x00, 0x3E, 0x57, 0x3C, 0x56, - 0x0C, 0x1C, 0x00, 0xFC, 0xA6, 0x00, 0x01, 0x58, 0xAA, 0x13, 0x20, - 0xF0, 0xA6, 0x03, 0x06, 0xEC, 0xB9, 0x00, 0x0E, 0x47, 0x03, 0xE6, - 0x10, 0x00, 0xCE, 0x45, 0x02, 0x13, 0x3E, 0x57, 0x06, 0xEA, 0xB9, - 0x00, 0x47, 0x4B, 0x03, 0xF6, 0xE0, 0x00, 0x00, 0xF2, 0x68, 0x0A, - 0x01, 0x48, 0x4E, 0x12, 0x03, 0xF6, 0xC0, 0x00, 0x00, 0xF2, 0x68, - 0x0A, 0x41, 0x58, 0x03, 0xF6, 0xD0, 0x00, 0x00, 0xF2, 0x68, 0x0A, - 0x49, 0x44, 0x59, 0xF0, 0x0A, 0x02, 0x03, 0xF6, 0xE0, 0x00, 0x00, - 0xF2, 0x68, 0x0A, 0x44, 0x58, 0x00, 0xF2, 0xE2, 0x0D, 0x02, 0xCC, - 0x4A, 0xE4, 0x01, 0x00, 0x55, 0xF0, 0x08, 0x03, 0x45, 0xF4, 0x02, - 0x00, 0x83, 0x5A, 0x04, 0xCC, 0x01, 0x4A, 0x12, 0x12, 0x00, 0xF2, - 0xE2, 0x0D, 0x00, 0xCD, 0x48, 0xE4, 0x01, 0x00, 0xE9, 0x13, 0x00, - 0xF2, 0xC6, 0x0F, 0xFA, 0x10, 0x0E, 0x47, 0x03, 0xE6, 0x10, 0x00, - 0xCE, 0x45, 0x02, 0x13, 0x3E, 0x57, 0xCE, 0x47, 0x97, 0x13, 0x04, - 0xEC, 0xB4, 0x00, 0x00, 0xF2, 0xE2, 0x0D, 0x00, 0xCD, 0x48, 0xE4, - 0x00, 0x00, 0x12, 0x12, 0x3E, 0x57, 0x06, 0xCC, 0x45, 0xF4, 0x02, - 0x00, 0x83, 0x5A, 0x00, 0xCC, 0x00, 0xEA, 0xB4, 0x00, 0x92, 0x10, - 0x00, 0xF0, 0x8C, 0x01, 0x43, 0xF0, 0x5C, 0x02, 0x44, 0xF0, 0x60, - 0x02, 0x45, 0xF0, 0x64, 0x02, 0x46, 0xF0, 0x68, 0x02, 0x47, 0xF0, - 0x6E, 0x02, 0x48, 0xF0, 0x9E, 0x02, 0xB9, 0x54, 0x62, 0x10, 0x00, - 0x1C, 0x5A, 0x10, 0x02, 0x1C, 0x56, 0x10, 0x1E, 0x1C, 0x52, 0x10, - 0x00, 0xF2, 0x1E, 0x11, 0x50, 0x10, 0x06, 0xFC, 0xA8, 0x00, 0x03, - 0xF6, 0xBE, 0x00, 0x00, 0xF2, 0x4E, 0x0A, 0x8C, 0x10, 0x01, 0xF6, - 0x01, 0x00, 0x01, 0xFA, 0xA8, 0x00, 0x00, 0xF2, 0x2C, 0x0B, 0x06, - 0x10, 0xB9, 0x54, 0x01, 0xFA, 0xA8, 0x00, 0x03, 0xF6, 0xBE, 0x00, - 0x00, 0xF2, 0x58, 0x0A, 0x01, 0xFC, 0xA8, 0x00, 0x20, 0x10, 0x58, - 0x1C, 0x00, 0xF2, 0x1C, 0x0B, 0x5A, 0x1C, 0x01, 0xF6, 0x01, 0x00, - 0x38, 0x54, 0x00, 0xFA, 0xA6, 0x00, 0x01, 0xFA, 0xA8, 0x00, 0x20, - 0x1C, 0x00, 0xF0, 0x72, 0x01, 0x01, 0xF6, 0x01, 0x00, 0x38, 0x54, - 0x00, 0xFA, 0xA6, 0x00, 0x01, 0xFA, 0xA8, 0x00, 0x20, 0x1C, 0x00, - 0xF0, 0x80, 0x01, 0x03, 0xF6, 0xE0, 0x00, 0x00, 0xF2, 0x68, 0x0A, - 0x01, 0x48, 0x0A, 0x13, 0x00, 0xF2, 0x38, 0x10, 0x00, 0xF2, 0x54, - 0x0F, 0x24, 0x10, 0x03, 0xF6, 0xC0, 0x00, 0x00, 0xF2, 0x68, 0x0A, - 0x02, 0xF6, 0xD0, 0x00, 0x02, 0x57, 0x03, 0x59, 0x01, 0xCC, 0x49, - 0x44, 0x5B, 0xF0, 0x04, 0x03, 0x00, 0xF2, 0x9C, 0x0F, 0x00, 0xF0, - 0x80, 0x01, 0x00, 0xF2, 0x14, 0x10, 0x0C, 0x1C, 0x02, 0x4B, 0xBF, - 0x57, 0x9E, 0x43, 0x77, 0x57, 0x07, 0x4B, 0x20, 0xF0, 0xA6, 0x03, - 0x40, 0x1C, 0x1E, 0xF0, 0x30, 0x03, 0x26, 0xF0, 0x2C, 0x03, 0xA0, - 0xF0, 0x1A, 0x03, 0x11, 0xF0, 0xA6, 0x03, 0x12, 0x10, 0x9F, 0xF0, - 0x3E, 0x03, 0x46, 0x1C, 0x82, 0xE7, 0x05, 0x00, 0x9E, 0xE7, 0x11, - 0x00, 0x00, 0xF0, 0x06, 0x0A, 0x0C, 0x1C, 0x48, 0x1C, 0x46, 0x1C, - 0x38, 0x54, 0x00, 0xEC, 0xBA, 0x00, 0x08, 0x44, 0x00, 0xEA, 0xBA, - 0x00, 0x03, 0xF6, 0xC0, 0x00, 0x00, 0xF2, 0x68, 0x0A, 0x08, 0x44, - 0x00, 0x4C, 0x82, 0xE7, 0x02, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x00, - 0xF2, 0x12, 0x11, 0x85, 0xF0, 0x70, 0x03, 0x00, 0xF2, 0x60, 0x0B, - 0x06, 0xF0, 0x80, 0x03, 0x09, 0xF0, 0x24, 0x09, 0x1E, 0xF0, 0xFC, - 0x09, 0x00, 0xF0, 0x02, 0x0A, 0x00, 0xFC, 0xBE, 0x00, 0x98, 0x57, - 0x55, 0xF0, 0xAC, 0x04, 0x01, 0xE6, 0x0C, 0x00, 0x00, 0xF2, 0x4E, - 0x0D, 0x00, 0xF2, 0x12, 0x11, 0x00, 0xF2, 0xBC, 0x11, 0x00, 0xF2, - 0xC8, 0x11, 0x01, 0xF0, 0x7C, 0x02, 0x00, 0xF0, 0x8A, 0x02, 0x46, - 0x1C, 0x0C, 0x1C, 0x67, 0x1B, 0xBF, 0x57, 0x77, 0x57, 0x02, 0x4B, - 0x48, 0x1C, 0x32, 0x1C, 0x00, 0xF2, 0x92, 0x0D, 0x30, 0x1C, 0x96, - 0xF0, 0xBC, 0x03, 0xB1, 0xF0, 0xC0, 0x03, 0x1E, 0xF0, 0xFC, 0x09, - 0x85, 0xF0, 0x02, 0x0A, 0x00, 0xFC, 0xBE, 0x00, 0x98, 0x57, 0x14, - 0x12, 0x01, 0xE6, 0x0C, 0x00, 0x00, 0xF2, 0x4E, 0x0D, 0x00, 0xF2, - 0x12, 0x11, 0x01, 0xF0, 0x7C, 0x02, 0x00, 0xF0, 0x8A, 0x02, 0x03, - 0xF6, 0xE0, 0x00, 0x00, 0xF2, 0x68, 0x0A, 0x01, 0x48, 0x55, 0xF0, - 0x98, 0x04, 0x03, 0x82, 0x03, 0xFC, 0xA0, 0x00, 0x9B, 0x57, 0x40, - 0x12, 0x69, 0x18, 0x00, 0xF2, 0x12, 0x11, 0x85, 0xF0, 0x42, 0x04, - 0x69, 0x08, 0x00, 0xF2, 0x12, 0x11, 0x85, 0xF0, 0x02, 0x0A, 0x68, - 0x08, 0x4C, 0x44, 0x28, 0x12, 0x44, 0x48, 0x03, 0xF6, 0xE0, 0x00, - 0x00, 0xF2, 0x68, 0x0A, 0x45, 0x58, 0x00, 0xF2, 0xF6, 0x0D, 0x00, - 0xCC, 0x01, 0x48, 0x55, 0xF0, 0x98, 0x04, 0x4C, 0x44, 0xEF, 0x13, - 0x00, 0xF2, 0xC6, 0x0F, 0x00, 0xF2, 0x14, 0x10, 0x08, 0x10, 0x68, - 0x18, 0x45, 0x5A, 0x00, 0xF2, 0xF6, 0x0D, 0x04, 0x80, 0x18, 0xE4, - 0x10, 0x00, 0x28, 0x12, 0x01, 0xE6, 0x06, 0x00, 0x04, 0x80, 0x18, - 0xE4, 0x01, 0x00, 0x04, 0x12, 0x01, 0xE6, 0x0D, 0x00, 0x00, 0xF2, - 0x4E, 0x0D, 0x00, 0xF2, 0x12, 0x11, 0x04, 0xE6, 0x02, 0x00, 0x9E, - 0xE7, 0x15, 0x00, 0x01, 0xF0, 0x1C, 0x0A, 0x00, 0xF0, 0x02, 0x0A, - 0x69, 0x08, 0x05, 0x80, 0x48, 0xE4, 0x00, 0x00, 0x0C, 0x12, 0x00, - 0xE6, 0x11, 0x00, 0x00, 0xEA, 0xB8, 0x00, 0x00, 0xF2, 0xB6, 0x10, - 0x82, 0xE7, 0x02, 0x00, 0x1C, 0x90, 0x40, 0x5C, 0x00, 0x16, 0x01, - 0xE6, 0x06, 0x00, 0x00, 0xF2, 0x4E, 0x0D, 0x01, 0xF0, 0x80, 0x01, - 0x1E, 0xF0, 0x80, 0x01, 0x00, 0xF0, 0xA0, 0x04, 0x42, 0x5B, 0x06, - 0xF7, 0x03, 0x00, 0x46, 0x59, 0xBF, 0x57, 0x77, 0x57, 0x01, 0xE6, - 0x80, 0x00, 0x07, 0x80, 0x31, 0x44, 0x04, 0x80, 0x18, 0xE4, 0x20, - 0x00, 0x56, 0x13, 0x20, 0x80, 0x48, 0xE4, 0x03, 0x00, 0x4E, 0x12, - 0x00, 0xFC, 0xA2, 0x00, 0x98, 0x57, 0x55, 0xF0, 0x1C, 0x05, 0x31, - 0xE4, 0x40, 0x00, 0x00, 0xFC, 0xA0, 0x00, 0x98, 0x57, 0x36, 0x12, - 0x4C, 0x1C, 0x00, 0xF2, 0x12, 0x11, 0x89, 0x48, 0x00, 0xF2, 0x12, - 0x11, 0x86, 0xF0, 0x2E, 0x05, 0x82, 0xE7, 0x06, 0x00, 0x1B, 0x80, - 0x48, 0xE4, 0x22, 0x00, 0x5B, 0xF0, 0x0C, 0x05, 0x48, 0xE4, 0x20, - 0x00, 0x59, 0xF0, 0x10, 0x05, 0x00, 0xE6, 0x20, 0x00, 0x09, 0x48, - 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0x2E, 0x05, 0x83, 0x80, 0x04, - 0x10, 0x00, 0xF2, 0xA2, 0x0D, 0x00, 0xE6, 0x01, 0x00, 0x00, 0xEA, - 0x26, 0x01, 0x01, 0xEA, 0x27, 0x01, 0x04, 0x80, 0x18, 0xE4, 0x10, - 0x00, 0x36, 0x12, 0xB9, 0x54, 0x00, 0xF2, 0xF6, 0x0E, 0x01, 0xE6, - 0x06, 0x00, 0x04, 0x80, 0x18, 0xE4, 0x01, 0x00, 0x04, 0x12, 0x01, - 0xE6, 0x0D, 0x00, 0x00, 0xF2, 0x4E, 0x0D, 0x00, 0xF2, 0x12, 0x11, - 0x00, 0xF2, 0xBC, 0x11, 0x00, 0xF2, 0xC8, 0x11, 0x04, 0xE6, 0x02, - 0x00, 0x9E, 0xE7, 0x15, 0x00, 0x01, 0xF0, 0x1C, 0x0A, 0x00, 0xF0, - 0x02, 0x0A, 0x00, 0xFC, 0x20, 0x01, 0x98, 0x57, 0x34, 0x12, 0x00, - 0xFC, 0x24, 0x01, 0x98, 0x57, 0x2C, 0x13, 0xB9, 0x54, 0x00, 0xF2, - 0xF6, 0x0E, 0x86, 0xF0, 0xA8, 0x05, 0x03, 0xF6, 0x01, 0x00, 0x00, - 0xF2, 0x8C, 0x0E, 0x85, 0xF0, 0x9E, 0x05, 0x82, 0xE7, 0x03, 0x00, - 0x00, 0xF2, 0x60, 0x0B, 0x82, 0xE7, 0x02, 0x00, 0x00, 0xFC, 0x24, - 0x01, 0xB0, 0x57, 0x00, 0xFA, 0x24, 0x01, 0x00, 0xFC, 0x9E, 0x00, - 0x98, 0x57, 0x5A, 0x12, 0x00, 0xFC, 0xB6, 0x00, 0x98, 0x57, 0x52, - 0x13, 0x03, 0xE6, 0x0C, 0x00, 0x00, 0xFC, 0x9C, 0x00, 0x98, 0x57, - 0x04, 0x13, 0x03, 0xE6, 0x19, 0x00, 0x05, 0xE6, 0x08, 0x00, 0x00, - 0xF6, 0x00, 0x01, 0x00, 0x57, 0x00, 0x57, 0x03, 0x58, 0x00, 0xDC, - 0x18, 0xF4, 0x00, 0x80, 0x04, 0x13, 0x05, 0xE6, 0x0F, 0x00, 0xB9, - 0x54, 0x00, 0xF2, 0xF6, 0x0E, 0x86, 0xF0, 0x0A, 0x06, 0x00, 0xF2, - 0xBA, 0x0E, 0x85, 0xF0, 0x00, 0x06, 0x82, 0xE7, 0x03, 0x00, 0x00, - 0xF2, 0x60, 0x0B, 0x82, 0xE7, 0x02, 0x00, 0x00, 0xFC, 0xB6, 0x00, - 0xB0, 0x57, 0x00, 0xFA, 0xB6, 0x00, 0x01, 0xF6, 0x01, 0x00, 0x00, - 0xF2, 0xF6, 0x0E, 0x9C, 0x32, 0x4E, 0x1C, 0x32, 0x1C, 0x00, 0xF2, - 0x92, 0x0D, 0x30, 0x1C, 0x82, 0xE7, 0x04, 0x00, 0xB1, 0xF0, 0x22, - 0x06, 0x0A, 0xF0, 0x3E, 0x06, 0x05, 0xF0, 0xD6, 0x06, 0x06, 0xF0, - 0xDC, 0x06, 0x09, 0xF0, 0x24, 0x09, 0x1E, 0xF0, 0xFC, 0x09, 0x00, - 0xF0, 0x02, 0x0A, 0x04, 0x80, 0x18, 0xE4, 0x20, 0x00, 0x30, 0x12, - 0x09, 0xE7, 0x03, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x21, 0x80, 0x18, - 0xE4, 0xE0, 0x00, 0x09, 0x48, 0x00, 0xF2, 0x12, 0x11, 0x09, 0xE7, - 0x00, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x09, 0xE7, 0x00, 0x00, 0x00, - 0xF2, 0x12, 0x11, 0x99, 0xA4, 0x00, 0xF2, 0x12, 0x11, 0x09, 0xE7, - 0x00, 0x00, 0x9A, 0x10, 0x04, 0x80, 0x18, 0xE4, 0x02, 0x00, 0x34, - 0x12, 0x09, 0xE7, 0x1B, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x21, 0x80, - 0x18, 0xE4, 0xE0, 0x00, 0x09, 0x48, 0x00, 0xF2, 0x12, 0x11, 0x09, - 0xE7, 0x00, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x09, 0xE7, 0x00, 0x00, - 0x00, 0xF2, 0x12, 0x11, 0x09, 0xE7, 0x01, 0x00, 0x00, 0xF2, 0x12, - 0x11, 0x09, 0xE7, 0x00, 0x00, 0x00, 0xF0, 0x0C, 0x09, 0xBB, 0x55, - 0x9A, 0x81, 0x03, 0xF7, 0x20, 0x00, 0x09, 0x6F, 0x93, 0x45, 0x55, - 0xF0, 0xE2, 0x06, 0xB1, 0xF0, 0xC2, 0x06, 0x0A, 0xF0, 0xBA, 0x06, - 0x09, 0xF0, 0x24, 0x09, 0x1E, 0xF0, 0xFC, 0x09, 0x00, 0xF0, 0x02, - 0x0A, 0x00, 0xF2, 0x60, 0x0B, 0x47, 0x10, 0x09, 0xE7, 0x08, 0x00, - 0x41, 0x10, 0x05, 0x80, 0x48, 0xE4, 0x00, 0x00, 0x1E, 0x12, 0x00, - 0xE6, 0x11, 0x00, 0x00, 0xEA, 0xB8, 0x00, 0x00, 0xF2, 0xB6, 0x10, - 0x2C, 0x90, 0xAE, 0x90, 0x08, 0x50, 0x8A, 0x50, 0x38, 0x54, 0x1F, - 0x40, 0x00, 0xF2, 0xB4, 0x0D, 0x08, 0x10, 0x08, 0x90, 0x8A, 0x90, - 0x30, 0x50, 0xB2, 0x50, 0x9C, 0x32, 0x0C, 0x92, 0x8E, 0x92, 0x38, - 0x54, 0x04, 0x80, 0x30, 0xE4, 0x08, 0x00, 0x04, 0x40, 0x0C, 0x1C, - 0x00, 0xF6, 0x03, 0x00, 0xB1, 0xF0, 0x26, 0x07, 0x9E, 0xF0, 0x3A, - 0x07, 0x01, 0x48, 0x55, 0xF0, 0xFC, 0x09, 0x0C, 0x1C, 0x10, 0x44, - 0xED, 0x10, 0x0B, 0xF0, 0x5E, 0x07, 0x0C, 0xF0, 0x62, 0x07, 0x05, - 0xF0, 0x52, 0x07, 0x06, 0xF0, 0x58, 0x07, 0x09, 0xF0, 0x24, 0x09, - 0x00, 0xF0, 0x02, 0x0A, 0x00, 0xF2, 0x60, 0x0B, 0xCF, 0x10, 0x09, - 0xE7, 0x08, 0x00, 0xC9, 0x10, 0x2E, 0x1C, 0x02, 0x10, 0x2C, 0x1C, - 0xAA, 0xF0, 0x64, 0x07, 0xAC, 0xF0, 0x72, 0x07, 0x40, 0x10, 0x34, - 0x1C, 0xF3, 0x10, 0xAD, 0xF0, 0x7C, 0x07, 0xC8, 0x10, 0x36, 0x1C, - 0xE9, 0x10, 0x2B, 0xF0, 0x82, 0x08, 0x6B, 0x18, 0x18, 0xF4, 0x00, - 0xFE, 0x20, 0x12, 0x01, 0x58, 0xD2, 0xF0, 0x82, 0x08, 0x76, 0x18, - 0x18, 0xF4, 0x03, 0x00, 0xEC, 0x12, 0x00, 0xFC, 0x22, 0x01, 0x18, - 0xF4, 0x01, 0x00, 0xE2, 0x12, 0x0B, 0xF0, 0x64, 0x07, 0x0C, 0xF0, - 0x64, 0x07, 0x36, 0x1C, 0x34, 0x1C, 0xB7, 0x10, 0x38, 0x54, 0xB9, - 0x54, 0x84, 0x80, 0x19, 0xE4, 0x20, 0x00, 0xB2, 0x13, 0x85, 0x80, - 0x81, 0x48, 0x66, 0x12, 0x04, 0x80, 0x18, 0xE4, 0x08, 0x00, 0x58, - 0x13, 0x1F, 0x80, 0x08, 0x44, 0xC8, 0x44, 0x9F, 0x12, 0x1F, 0x40, - 0x34, 0x91, 0xB6, 0x91, 0x44, 0x55, 0xE5, 0x55, 0x02, 0xEC, 0xB8, - 0x00, 0x02, 0x49, 0xBB, 0x55, 0x82, 0x81, 0xC0, 0x55, 0x48, 0xF4, - 0x0F, 0x00, 0x5A, 0xF0, 0x1A, 0x08, 0x4A, 0xE4, 0x17, 0x00, 0xD5, - 0xF0, 0xFA, 0x07, 0x02, 0xF6, 0x0F, 0x00, 0x02, 0xF4, 0x02, 0x00, - 0x02, 0xEA, 0xB8, 0x00, 0x04, 0x91, 0x86, 0x91, 0x02, 0x4B, 0x2C, - 0x90, 0x08, 0x50, 0x2E, 0x90, 0x0A, 0x50, 0x2C, 0x51, 0xAE, 0x51, - 0x00, 0xF2, 0xB6, 0x10, 0x38, 0x54, 0x00, 0xF2, 0xB4, 0x0D, 0x56, - 0x10, 0x34, 0x91, 0xB6, 0x91, 0x0C, 0x10, 0x04, 0x80, 0x18, 0xE4, - 0x08, 0x00, 0x41, 0x12, 0x0C, 0x91, 0x8E, 0x91, 0x04, 0x80, 0x18, - 0xE4, 0xF7, 0x00, 0x04, 0x40, 0x30, 0x90, 0xB2, 0x90, 0x36, 0x10, - 0x02, 0x80, 0x48, 0xE4, 0x10, 0x00, 0x31, 0x12, 0x82, 0xE7, 0x10, - 0x00, 0x84, 0x80, 0x19, 0xE4, 0x20, 0x00, 0x10, 0x13, 0x0C, 0x90, - 0x8E, 0x90, 0x5D, 0xF0, 0x78, 0x07, 0x0C, 0x58, 0x8D, 0x58, 0x00, - 0xF0, 0x64, 0x07, 0x38, 0x54, 0xB9, 0x54, 0x19, 0x80, 0xF1, 0x10, - 0x3A, 0x55, 0x19, 0x81, 0xBB, 0x55, 0x10, 0x90, 0x92, 0x90, 0x10, - 0x58, 0x91, 0x58, 0x14, 0x59, 0x95, 0x59, 0x00, 0xF0, 0x64, 0x07, - 0x04, 0x80, 0x18, 0xE4, 0x20, 0x00, 0x06, 0x12, 0x6C, 0x19, 0x19, - 0x41, 0x7C, 0x10, 0x6C, 0x19, 0x0C, 0x51, 0xED, 0x19, 0x8E, 0x51, - 0x6B, 0x18, 0x18, 0xF4, 0x00, 0xFF, 0x02, 0x13, 0x6A, 0x10, 0x01, - 0x58, 0xD2, 0xF0, 0xC0, 0x08, 0x76, 0x18, 0x18, 0xF4, 0x03, 0x00, - 0x0A, 0x12, 0x00, 0xFC, 0x22, 0x01, 0x18, 0xF4, 0x01, 0x00, 0x06, - 0x13, 0x9E, 0xE7, 0x16, 0x00, 0x4C, 0x10, 0xD1, 0xF0, 0xCA, 0x08, - 0x9E, 0xE7, 0x17, 0x00, 0x42, 0x10, 0xD0, 0xF0, 0xD4, 0x08, 0x9E, - 0xE7, 0x19, 0x00, 0x38, 0x10, 0xCF, 0xF0, 0xDE, 0x08, 0x9E, 0xE7, - 0x20, 0x00, 0x2E, 0x10, 0xCE, 0xF0, 0xE8, 0x08, 0x9E, 0xE7, 0x21, - 0x00, 0x24, 0x10, 0xCD, 0xF0, 0xF2, 0x08, 0x9E, 0xE7, 0x22, 0x00, - 0x1A, 0x10, 0xCC, 0xF0, 0x04, 0x09, 0x84, 0x80, 0x19, 0xE4, 0x04, - 0x00, 0x06, 0x12, 0x9E, 0xE7, 0x12, 0x00, 0x08, 0x10, 0xCB, 0xF0, - 0x0C, 0x09, 0x9E, 0xE7, 0x24, 0x00, 0xB1, 0xF0, 0x0C, 0x09, 0x05, - 0xF0, 0x1E, 0x09, 0x09, 0xF0, 0x24, 0x09, 0x1E, 0xF0, 0xFC, 0x09, - 0xE4, 0x10, 0x00, 0xF2, 0x60, 0x0B, 0xE9, 0x10, 0x9C, 0x32, 0x82, - 0xE7, 0x20, 0x00, 0x32, 0x1C, 0xE9, 0x09, 0x00, 0xF2, 0x12, 0x11, - 0x85, 0xF0, 0x02, 0x0A, 0x69, 0x08, 0x01, 0xF0, 0x44, 0x09, 0x1E, - 0xF0, 0xFC, 0x09, 0x00, 0xF0, 0x38, 0x09, 0x30, 0x44, 0x06, 0x12, - 0x9E, 0xE7, 0x42, 0x00, 0xB8, 0x10, 0x04, 0xF6, 0x01, 0x00, 0xB3, - 0x45, 0x74, 0x12, 0x04, 0x80, 0x18, 0xE4, 0x20, 0x00, 0x22, 0x13, - 0x4B, 0xE4, 0x02, 0x00, 0x36, 0x12, 0x4B, 0xE4, 0x28, 0x00, 0xAC, - 0x13, 0x00, 0xF2, 0xBC, 0x11, 0x00, 0xF2, 0xC8, 0x11, 0x03, 0xF6, - 0xD0, 0x00, 0xFA, 0x14, 0x82, 0xE7, 0x01, 0x00, 0x00, 0xF0, 0x80, - 0x01, 0x9E, 0xE7, 0x44, 0x00, 0x4B, 0xE4, 0x02, 0x00, 0x06, 0x12, - 0x03, 0xE6, 0x02, 0x00, 0x76, 0x10, 0x00, 0xF2, 0xA2, 0x0D, 0x03, - 0xE6, 0x02, 0x00, 0x6C, 0x10, 0x00, 0xF2, 0xA2, 0x0D, 0x19, 0x82, - 0x34, 0x46, 0x0A, 0x13, 0x03, 0xE6, 0x02, 0x00, 0x9E, 0xE7, 0x43, - 0x00, 0x68, 0x10, 0x04, 0x80, 0x30, 0xE4, 0x20, 0x00, 0x04, 0x40, - 0x00, 0xF2, 0xBC, 0x11, 0x00, 0xF2, 0xC8, 0x11, 0x82, 0xE7, 0x01, - 0x00, 0x06, 0xF7, 0x02, 0x00, 0x00, 0xF0, 0x08, 0x03, 0x04, 0x80, - 0x18, 0xE4, 0x20, 0x00, 0x06, 0x12, 0x03, 0xE6, 0x02, 0x00, 0x3E, - 0x10, 0x04, 0x80, 0x18, 0xE4, 0x02, 0x00, 0x3A, 0x12, 0x04, 0x80, - 0x18, 0xE4, 0xFD, 0x00, 0x04, 0x40, 0x1C, 0x1C, 0x9D, 0xF0, 0xEA, - 0x09, 0x1C, 0x1C, 0x9D, 0xF0, 0xF0, 0x09, 0xC1, 0x10, 0x9E, 0xE7, - 0x13, 0x00, 0x0A, 0x10, 0x9E, 0xE7, 0x41, 0x00, 0x04, 0x10, 0x9E, - 0xE7, 0x24, 0x00, 0x00, 0xFC, 0xBE, 0x00, 0x98, 0x57, 0xD5, 0xF0, - 0x8A, 0x02, 0x04, 0xE6, 0x04, 0x00, 0x06, 0x10, 0x04, 0xE6, 0x04, - 0x00, 0x9D, 0x41, 0x1C, 0x42, 0x9F, 0xE7, 0x00, 0x00, 0x06, 0xF7, - 0x02, 0x00, 0x03, 0xF6, 0xE0, 0x00, 0x3C, 0x14, 0x44, 0x58, 0x45, - 0x58, 0x00, 0xF2, 0xF6, 0x0D, 0x00, 0xF2, 0x7E, 0x10, 0x00, 0xF2, - 0xC6, 0x0F, 0x3C, 0x14, 0x1E, 0x1C, 0x00, 0xF0, 0x80, 0x01, 0x12, - 0x1C, 0x22, 0x1C, 0xD2, 0x14, 0x00, 0xF0, 0x72, 0x01, 0x83, 0x59, - 0x03, 0xDC, 0x73, 0x57, 0x80, 0x5D, 0x00, 0x16, 0x83, 0x59, 0x03, - 0xDC, 0x38, 0x54, 0x70, 0x57, 0x33, 0x54, 0x3B, 0x54, 0x80, 0x5D, - 0x00, 0x16, 0x03, 0x57, 0x83, 0x59, 0x38, 0x54, 0x00, 0xCC, 0x00, - 0x16, 0x03, 0x57, 0x83, 0x59, 0x00, 0x4C, 0x00, 0x16, 0x02, 0x80, - 0x48, 0xE4, 0x01, 0x00, 0x0E, 0x12, 0x48, 0xE4, 0x05, 0x00, 0x08, - 0x12, 0x00, 0xF2, 0xBC, 0x11, 0x00, 0xF2, 0xC8, 0x11, 0xC1, 0x5A, - 0x3A, 0x55, 0x02, 0xEC, 0xB5, 0x00, 0x45, 0x59, 0x00, 0xF2, 0xF6, - 0x0D, 0x83, 0x58, 0x30, 0xE7, 0x00, 0x00, 0x10, 0x4D, 0x30, 0xE7, - 0x40, 0x00, 0x10, 0x4F, 0x38, 0x90, 0xBA, 0x90, 0x10, 0x5C, 0x80, - 0x5C, 0x83, 0x5A, 0x10, 0x4E, 0x04, 0xEA, 0xB5, 0x00, 0x43, 0x5B, - 0x03, 0xF4, 0xE0, 0x00, 0x83, 0x59, 0x04, 0xCC, 0x01, 0x4A, 0x0A, - 0x12, 0x45, 0x5A, 0x00, 0xF2, 0xF6, 0x0D, 0x00, 0xF2, 0x38, 0x10, - 0x00, 0x16, 0x08, 0x1C, 0x00, 0xFC, 0xAC, 0x00, 0x06, 0x58, 0x67, - 0x18, 0x18, 0xF4, 0x8F, 0xE1, 0x01, 0xFC, 0xAE, 0x00, 0x19, 0xF4, - 0x70, 0x1E, 0xB0, 0x54, 0x07, 0x58, 0x00, 0xFC, 0xB0, 0x00, 0x08, - 0x58, 0x00, 0xFC, 0xB2, 0x00, 0x09, 0x58, 0x0A, 0x1C, 0x00, 0xE6, - 0x0F, 0x00, 0x00, 0xEA, 0xB9, 0x00, 0x38, 0x54, 0x00, 0xFA, 0x24, - 0x01, 0x00, 0xFA, 0xB6, 0x00, 0x18, 0x1C, 0x14, 0x1C, 0x10, 0x1C, - 0x32, 0x1C, 0x12, 0x1C, 0x00, 0x16, 0x3E, 0x57, 0x0C, 0x14, 0x0E, - 0x47, 0x07, 0xE6, 0x10, 0x00, 0xCE, 0x47, 0xF5, 0x13, 0x00, 0x16, - 0x00, 0xF2, 0xA2, 0x0D, 0x02, 0x4B, 0x03, 0xF6, 0xE0, 0x00, 0x00, - 0xF2, 0x68, 0x0A, 0x01, 0x48, 0x20, 0x12, 0x44, 0x58, 0x45, 0x58, - 0x9E, 0xE7, 0x15, 0x00, 0x9C, 0xE7, 0x04, 0x00, 0x00, 0xF2, 0xF6, - 0x0D, 0x00, 0xF2, 0x7E, 0x10, 0x00, 0xF2, 0xC6, 0x0F, 0x00, 0xF2, - 0x7A, 0x0A, 0x1E, 0x1C, 0xD5, 0x10, 0x00, 0x16, 0x69, 0x08, 0x48, - 0xE4, 0x04, 0x00, 0x64, 0x12, 0x48, 0xE4, 0x02, 0x00, 0x20, 0x12, - 0x48, 0xE4, 0x03, 0x00, 0x1A, 0x12, 0x48, 0xE4, 0x08, 0x00, 0x14, - 0x12, 0x48, 0xE4, 0x01, 0x00, 0xF0, 0x12, 0x48, 0xE4, 0x07, 0x00, - 0x12, 0x12, 0x01, 0xE6, 0x07, 0x00, 0x00, 0xF2, 0x4E, 0x0D, 0x00, - 0xF2, 0x12, 0x11, 0x05, 0xF0, 0x60, 0x0B, 0x00, 0x16, 0x00, 0xE6, - 0x01, 0x00, 0x00, 0xEA, 0x99, 0x00, 0x02, 0x80, 0x48, 0xE4, 0x03, - 0x00, 0xE7, 0x12, 0x48, 0xE4, 0x06, 0x00, 0xE1, 0x12, 0x01, 0xE6, - 0x06, 0x00, 0x00, 0xF2, 0x4E, 0x0D, 0x00, 0xF2, 0x12, 0x11, 0x04, - 0xE6, 0x02, 0x00, 0x9E, 0xE7, 0x15, 0x00, 0x01, 0xF0, 0x1C, 0x0A, - 0x00, 0xF0, 0x02, 0x0A, 0x00, 0x16, 0x02, 0x80, 0x48, 0xE4, 0x10, - 0x00, 0x1C, 0x12, 0x82, 0xE7, 0x08, 0x00, 0x3C, 0x56, 0x03, 0x82, - 0x00, 0xF2, 0xE2, 0x0D, 0x30, 0xE7, 0x08, 0x00, 0x04, 0xF7, 0x70, - 0x01, 0x06, 0xF7, 0x02, 0x00, 0x00, 0xF0, 0x80, 0x01, 0x6C, 0x19, - 0xED, 0x19, 0x5D, 0xF0, 0xD4, 0x0B, 0x44, 0x55, 0xE5, 0x55, 0x59, - 0xF0, 0x52, 0x0C, 0x04, 0x55, 0xA5, 0x55, 0x1F, 0x80, 0x01, 0xEC, - 0xB8, 0x00, 0x82, 0x48, 0x82, 0x80, 0x49, 0x44, 0x2E, 0x13, 0x01, - 0xEC, 0xB8, 0x00, 0x41, 0xE4, 0x02, 0x00, 0x01, 0xEA, 0xB8, 0x00, - 0x49, 0xE4, 0x11, 0x00, 0x59, 0xF0, 0x2E, 0x0C, 0x01, 0xE6, 0x17, - 0x00, 0x01, 0xEA, 0xB8, 0x00, 0x02, 0x4B, 0x88, 0x90, 0xAC, 0x50, - 0x8A, 0x90, 0xAE, 0x50, 0x01, 0xEC, 0xB8, 0x00, 0x82, 0x48, 0x82, - 0x80, 0x10, 0x44, 0x02, 0x4B, 0x1F, 0x40, 0xC0, 0x44, 0x00, 0xF2, - 0xB4, 0x0D, 0x04, 0x55, 0xA5, 0x55, 0x9F, 0x10, 0x0C, 0x51, 0x8E, - 0x51, 0x30, 0x90, 0xB2, 0x90, 0x00, 0x56, 0xA1, 0x56, 0x30, 0x50, - 0xB2, 0x50, 0x34, 0x90, 0xB6, 0x90, 0x40, 0x56, 0xE1, 0x56, 0x34, - 0x50, 0xB6, 0x50, 0x65, 0x10, 0xB1, 0xF0, 0x70, 0x0C, 0x85, 0xF0, - 0xCA, 0x0B, 0xE9, 0x09, 0x4B, 0xE4, 0x03, 0x00, 0x78, 0x12, 0x4B, - 0xE4, 0x02, 0x00, 0x01, 0x13, 0xB1, 0xF0, 0x86, 0x0C, 0x85, 0xF0, - 0xCA, 0x0B, 0x69, 0x08, 0x48, 0xE4, 0x03, 0x00, 0xD5, 0xF0, 0x86, - 0x0B, 0x00, 0xF2, 0x12, 0x11, 0x85, 0xF0, 0xCA, 0x0B, 0xE8, 0x09, - 0x3C, 0x56, 0x00, 0xFC, 0x20, 0x01, 0x98, 0x57, 0x02, 0x13, 0xBB, - 0x45, 0x4B, 0xE4, 0x00, 0x00, 0x08, 0x12, 0x03, 0xE6, 0x01, 0x00, - 0x04, 0xF6, 0x00, 0x80, 0xA8, 0x14, 0xD2, 0x14, 0x30, 0x1C, 0x02, - 0x80, 0x48, 0xE4, 0x03, 0x00, 0x10, 0x13, 0x00, 0xFC, 0xB6, 0x00, - 0x98, 0x57, 0x02, 0x13, 0x4C, 0x1C, 0x3E, 0x1C, 0x00, 0xF0, 0x8E, - 0x0B, 0x00, 0xFC, 0x24, 0x01, 0xB0, 0x57, 0x00, 0xFA, 0x24, 0x01, - 0x4C, 0x1C, 0x3E, 0x1C, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0x8E, - 0x0B, 0x00, 0xF2, 0x8C, 0x0E, 0x00, 0xF0, 0x8E, 0x0B, 0xB1, 0xF0, - 0xF8, 0x0C, 0x85, 0xF0, 0x86, 0x0B, 0x69, 0x08, 0x48, 0xE4, 0x01, - 0x00, 0xD5, 0xF0, 0x86, 0x0B, 0xFC, 0x14, 0x42, 0x58, 0x6C, 0x14, - 0x80, 0x14, 0x30, 0x1C, 0x4A, 0xF4, 0x02, 0x00, 0x55, 0xF0, 0x86, - 0x0B, 0x4A, 0xF4, 0x01, 0x00, 0x0E, 0x12, 0x02, 0x80, 0x48, 0xE4, - 0x03, 0x00, 0x06, 0x13, 0x3E, 0x1C, 0x00, 0xF0, 0x8E, 0x0B, 0x00, - 0xFC, 0xB6, 0x00, 0xB0, 0x57, 0x00, 0xFA, 0xB6, 0x00, 0x4C, 0x1C, - 0x3E, 0x1C, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0x8E, 0x0B, 0x00, - 0xF2, 0xBA, 0x0E, 0x00, 0xF0, 0x8E, 0x0B, 0x4C, 0x1C, 0xB1, 0xF0, - 0x50, 0x0D, 0x85, 0xF0, 0x5C, 0x0D, 0x69, 0x08, 0xF3, 0x10, 0x86, - 0xF0, 0x64, 0x0D, 0x4E, 0x1C, 0x89, 0x48, 0x00, 0x16, 0x00, 0xF6, - 0x00, 0x01, 0x00, 0x57, 0x00, 0x57, 0x03, 0x58, 0x00, 0xDC, 0x18, - 0xF4, 0xFF, 0x7F, 0x30, 0x56, 0x00, 0x5C, 0x00, 0x16, 0x00, 0xF6, - 0x00, 0x01, 0x00, 0x57, 0x00, 0x57, 0x03, 0x58, 0x00, 0xDC, 0x18, - 0xF4, 0x00, 0x80, 0x30, 0x56, 0x00, 0x5C, 0x00, 0x16, 0x00, 0xF6, - 0x00, 0x01, 0x00, 0x57, 0x00, 0x57, 0x03, 0x58, 0x00, 0xDC, 0x0B, - 0x58, 0x00, 0x16, 0x03, 0xF6, 0x24, 0x01, 0x00, 0xF2, 0x58, 0x0A, - 0x03, 0xF6, 0xB6, 0x00, 0x00, 0xF2, 0x58, 0x0A, 0x00, 0x16, 0x02, - 0xEC, 0xB8, 0x00, 0x02, 0x49, 0x18, 0xF4, 0xFF, 0x00, 0x00, 0x54, - 0x00, 0x54, 0x00, 0x54, 0x00, 0xF4, 0x08, 0x00, 0xE1, 0x18, 0x80, - 0x54, 0x03, 0x58, 0x00, 0xDD, 0x01, 0xDD, 0x02, 0xDD, 0x03, 0xDC, - 0x02, 0x4B, 0x30, 0x50, 0xB2, 0x50, 0x34, 0x51, 0xB6, 0x51, 0x00, - 0x16, 0x45, 0x5A, 0x1D, 0xF4, 0xFF, 0x00, 0x85, 0x56, 0x85, 0x56, - 0x85, 0x56, 0x05, 0xF4, 0x02, 0x12, 0x83, 0x5A, 0x00, 0x16, 0x1D, - 0xF4, 0xFF, 0x00, 0x85, 0x56, 0x85, 0x56, 0x85, 0x56, 0x05, 0xF4, - 0x00, 0x12, 0x83, 0x5A, 0x00, 0x16, 0x38, 0x54, 0xBB, 0x55, 0x3C, - 0x56, 0xBD, 0x56, 0x00, 0xF2, 0x12, 0x11, 0x85, 0xF0, 0x82, 0x0E, - 0xE9, 0x09, 0xC1, 0x59, 0x00, 0xF2, 0x12, 0x11, 0x85, 0xF0, 0x82, - 0x0E, 0xE8, 0x0A, 0x83, 0x55, 0x83, 0x55, 0x4B, 0xF4, 0x90, 0x01, - 0x5C, 0xF0, 0x36, 0x0E, 0xBD, 0x56, 0x40, 0x10, 0x4B, 0xF4, 0x30, - 0x00, 0x59, 0xF0, 0x48, 0x0E, 0x01, 0xF6, 0x0C, 0x00, 0x00, 0xF6, - 0x01, 0x00, 0x2E, 0x10, 0x02, 0xFC, 0x9C, 0x00, 0x9A, 0x57, 0x14, - 0x13, 0x4B, 0xF4, 0x64, 0x00, 0x59, 0xF0, 0x64, 0x0E, 0x03, 0xF6, - 0x64, 0x00, 0x01, 0xF6, 0x19, 0x00, 0x00, 0xF6, 0x01, 0x00, 0x43, - 0xF4, 0x33, 0x00, 0x56, 0xF0, 0x76, 0x0E, 0x04, 0xF4, 0x00, 0x01, - 0x43, 0xF4, 0x19, 0x00, 0xF3, 0x10, 0xB4, 0x56, 0xC3, 0x58, 0x02, - 0xFC, 0x9E, 0x00, 0x9A, 0x57, 0x08, 0x13, 0x3C, 0x56, 0x00, 0xF6, - 0x02, 0x00, 0x00, 0x16, 0x00, 0x16, 0x09, 0xE7, 0x01, 0x00, 0x00, - 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xB8, 0x0E, 0x09, 0xE7, 0x02, 0x00, - 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xB8, 0x0E, 0x09, 0xE7, 0x03, - 0x00, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xB8, 0x0E, 0x4E, 0x1C, - 0x89, 0x49, 0x00, 0xF2, 0x12, 0x11, 0x00, 0x16, 0x09, 0xE7, 0x01, - 0x00, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xF2, 0x0E, 0x09, 0xE7, - 0x03, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xF2, 0x0E, 0x09, - 0xE7, 0x01, 0x00, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xF2, 0x0E, - 0x89, 0x49, 0x00, 0xF2, 0x12, 0x11, 0x86, 0xF0, 0xF2, 0x0E, 0x4E, - 0x1C, 0x89, 0x4A, 0x00, 0xF2, 0x12, 0x11, 0x00, 0x16, 0x3C, 0x56, - 0x00, 0x16, 0x00, 0xEC, 0x26, 0x01, 0x48, 0xE4, 0x01, 0x00, 0x1E, - 0x13, 0x38, 0x44, 0x00, 0xEA, 0x26, 0x01, 0x49, 0xF4, 0x00, 0x00, - 0x04, 0x12, 0x4E, 0x1C, 0x02, 0x10, 0x4C, 0x1C, 0x01, 0xEC, 0x27, - 0x01, 0x89, 0x48, 0x00, 0xF2, 0x12, 0x11, 0x02, 0x14, 0x00, 0x16, - 0x85, 0xF0, 0x52, 0x0F, 0x38, 0x54, 0x00, 0xEA, 0x99, 0x00, 0x00, - 0xF2, 0x60, 0x0B, 0x02, 0x80, 0x48, 0xE4, 0x06, 0x00, 0x1C, 0x13, - 0x00, 0xEC, 0x99, 0x00, 0x48, 0xE4, 0x01, 0x00, 0x0A, 0x12, 0x04, - 0x80, 0x30, 0xE4, 0x01, 0x00, 0x04, 0x40, 0x08, 0x10, 0x04, 0x80, - 0x18, 0xE4, 0xFE, 0x00, 0x04, 0x40, 0x00, 0x16, 0x02, 0xF6, 0xE0, - 0x00, 0x02, 0x57, 0x03, 0x59, 0x01, 0xCC, 0x81, 0x48, 0x22, 0x12, - 0x00, 0x4E, 0x83, 0x5A, 0x90, 0x4C, 0x20, 0xE7, 0x00, 0x00, 0xC3, - 0x58, 0x1B, 0xF4, 0xFF, 0x00, 0x83, 0x55, 0x83, 0x55, 0x83, 0x55, - 0x03, 0xF4, 0x00, 0x12, 0x8B, 0x55, 0x83, 0x59, 0x00, 0x4E, 0x00, - 0x16, 0x00, 0x4E, 0x02, 0xF6, 0xF0, 0x00, 0x02, 0x57, 0x03, 0x59, - 0x00, 0x4E, 0x83, 0x5A, 0x30, 0xE7, 0x00, 0x00, 0x20, 0xE7, 0x00, - 0x00, 0x00, 0x16, 0x02, 0xF6, 0xF0, 0x00, 0x02, 0x57, 0x03, 0x59, - 0x01, 0xCC, 0x00, 0x4E, 0x83, 0x5A, 0x30, 0xE7, 0x00, 0x00, 0x80, - 0x4C, 0xC3, 0x58, 0x1B, 0xF4, 0xFF, 0x00, 0x83, 0x55, 0x83, 0x55, - 0x83, 0x55, 0x03, 0xF4, 0x00, 0x12, 0x83, 0x59, 0x00, 0x4E, 0x00, - 0x16, 0x03, 0xF6, 0xE0, 0x00, 0x03, 0x57, 0x83, 0x59, 0x3A, 0x55, - 0x02, 0xCC, 0x45, 0x5A, 0x00, 0xF2, 0xF6, 0x0D, 0xC0, 0x5A, 0x40, - 0x5C, 0x38, 0x54, 0x00, 0xCD, 0x01, 0xCC, 0x4A, 0x46, 0x0A, 0x13, - 0x83, 0x59, 0x00, 0x4C, 0x01, 0x48, 0x16, 0x13, 0x0C, 0x10, 0xC5, - 0x58, 0x00, 0xF2, 0xF6, 0x0D, 0x00, 0x4C, 0x01, 0x48, 0x08, 0x13, - 0x05, 0xF6, 0xF0, 0x00, 0x05, 0x57, 0x08, 0x10, 0x45, 0x58, 0x00, - 0xF2, 0xF6, 0x0D, 0x8D, 0x56, 0x83, 0x5A, 0x80, 0x4C, 0x05, 0x17, - 0x00, 0x16, 0x02, 0x4B, 0x06, 0xF7, 0x04, 0x00, 0x62, 0x0B, 0x03, - 0x82, 0x00, 0xF2, 0xE2, 0x0D, 0x02, 0x80, 0x00, 0x4C, 0x45, 0xF4, - 0x02, 0x00, 0x52, 0x14, 0x06, 0xF7, 0x02, 0x00, 0x06, 0x14, 0x00, - 0xF2, 0x54, 0x0F, 0x00, 0x16, 0x02, 0x4B, 0x01, 0xF6, 0xFF, 0x00, - 0x38, 0x1C, 0x05, 0xF4, 0x04, 0x00, 0x83, 0x5A, 0x18, 0xDF, 0x19, - 0xDF, 0x1D, 0xF7, 0x3C, 0x00, 0xB8, 0xF0, 0x4E, 0x10, 0x9C, 0x14, - 0x01, 0x48, 0x1C, 0x13, 0x0E, 0xF7, 0x3C, 0x00, 0x03, 0xF7, 0x04, - 0x00, 0xAF, 0x19, 0x03, 0x42, 0x45, 0xF4, 0x02, 0x00, 0x83, 0x5A, - 0x02, 0xCC, 0x02, 0x41, 0x45, 0xF4, 0x02, 0x00, 0x00, 0x16, 0x91, - 0x44, 0xD5, 0xF0, 0x3E, 0x10, 0x00, 0xF0, 0x9E, 0x02, 0x01, 0xF6, - 0xFF, 0x00, 0x38, 0x1C, 0x05, 0xF4, 0x04, 0x00, 0x83, 0x5A, 0x18, - 0xDF, 0x19, 0xDF, 0x0E, 0xF7, 0x3C, 0x00, 0x03, 0xF7, 0x04, 0x00, - 0x0F, 0x79, 0x1C, 0xF7, 0x3C, 0x00, 0xB8, 0xF0, 0x9C, 0x10, 0x4E, - 0x14, 0x01, 0x48, 0x06, 0x13, 0x45, 0xF4, 0x04, 0x00, 0x00, 0x16, - 0x91, 0x44, 0xD5, 0xF0, 0x82, 0x10, 0x00, 0xF0, 0x9E, 0x02, 0x02, - 0xF6, 0xFF, 0x00, 0x38, 0x1C, 0x2C, 0xBC, 0xAE, 0xBC, 0xE2, 0x08, - 0x00, 0xEC, 0xB8, 0x00, 0x02, 0x48, 0x1D, 0xF7, 0x80, 0x00, 0xB8, - 0xF0, 0xCC, 0x10, 0x1E, 0x14, 0x01, 0x48, 0x0E, 0x13, 0x0E, 0xF7, - 0x80, 0x00, 0x38, 0x54, 0x03, 0x58, 0xAF, 0x19, 0x82, 0x48, 0x00, - 0x16, 0x82, 0x48, 0x12, 0x45, 0xD5, 0xF0, 0xBA, 0x10, 0x00, 0xF0, - 0x9E, 0x02, 0x39, 0xF0, 0xF8, 0x10, 0x38, 0x44, 0x00, 0x16, 0x7E, - 0x18, 0x18, 0xF4, 0x03, 0x00, 0x04, 0x13, 0x61, 0x18, 0x00, 0x16, - 0x38, 0x1C, 0x00, 0xFC, 0x22, 0x01, 0x18, 0xF4, 0x01, 0x00, 0xF1, - 0x12, 0xE3, 0x10, 0x30, 0x44, 0x30, 0x44, 0x30, 0x44, 0xB1, 0xF0, - 0x18, 0x11, 0x00, 0x16, 0x3E, 0x57, 0x03, 0xF6, 0xE0, 0x00, 0x03, - 0x57, 0x83, 0x59, 0x04, 0xCC, 0x01, 0x4A, 0x6A, 0x12, 0x45, 0x5A, - 0x00, 0xF2, 0xF6, 0x0D, 0x02, 0x4B, 0x70, 0x14, 0x34, 0x13, 0x02, - 0x80, 0x48, 0xE4, 0x08, 0x00, 0x18, 0x12, 0x9C, 0xE7, 0x02, 0x00, - 0x9E, 0xE7, 0x15, 0x00, 0x00, 0xF2, 0xC6, 0x0F, 0x00, 0xF2, 0x7A, - 0x0A, 0x1E, 0x1C, 0x01, 0xF6, 0x01, 0x00, 0x00, 0x16, 0x30, 0xE4, - 0x10, 0x00, 0x04, 0x40, 0x00, 0xF2, 0xE2, 0x0D, 0x20, 0xE7, 0x01, - 0x00, 0x01, 0xF6, 0x01, 0x00, 0x00, 0x16, 0x04, 0xDC, 0x01, 0x4A, - 0x24, 0x12, 0x45, 0x5A, 0x00, 0xF2, 0xF6, 0x0D, 0x43, 0x5B, 0x06, - 0xEC, 0x98, 0x00, 0x00, 0xF2, 0x38, 0x10, 0xC6, 0x59, 0x20, 0x14, - 0x0A, 0x13, 0x00, 0xF2, 0xC6, 0x0F, 0x00, 0xF2, 0x14, 0x10, 0xA7, - 0x10, 0x83, 0x5A, 0xD7, 0x10, 0x0E, 0x47, 0x07, 0xE6, 0x10, 0x00, - 0xCE, 0x47, 0x5A, 0xF0, 0x20, 0x11, 0xB9, 0x54, 0x00, 0x16, 0x14, - 0x90, 0x96, 0x90, 0x02, 0xFC, 0xA8, 0x00, 0x03, 0xFC, 0xAA, 0x00, - 0x48, 0x55, 0x02, 0x13, 0xC9, 0x55, 0x00, 0x16, 0x00, 0xEC, 0xBA, - 0x00, 0x10, 0x44, 0x00, 0xEA, 0xBA, 0x00, 0x00, 0x16, 0x03, 0xF6, - 0xC0, 0x00, 0x00, 0xF2, 0x68, 0x0A, 0x10, 0x44, 0x00, 0x4C, 0x00, - 0x16 + adw_asc3550_mcode, + 0x04FFFF0E, + sizeof(adw_asc3550_mcode) }; -u_int16_t adw_mcode_size = sizeof(adw_mcode); -u_int32_t adw_mcode_chksum = 0x03494981; +const u_int8_t adw_asc38C0800_mcode[] = +{ + 0x00, 0x00, 0x00, 0xf2, 0x00, 0xf0, 0x00, 0x16, 0x00, 0xfc, 0x48, + 0xe4, 0x01, 0x00, 0x18, 0xe4, 0x00, 0xf6, 0x01, 0xf6, 0x18, 0x80, + 0x02, 0x00, 0x40, 0x1a, 0x00, 0xfa, 0xff, 0xff, 0x03, 0xf6, 0xff, + 0x00, 0x82, 0xe7, 0x01, 0xfa, 0x9e, 0xe7, 0x09, 0xe7, 0x1a, 0x0f, + 0x00, 0xea, 0x01, 0xe6, 0x03, 0x00, 0x55, 0xf0, 0x18, 0xf4, 0x1e, + 0xf0, 0x3e, 0x57, 0x04, 0x00, 0x3e, 0x01, 0x85, 0xf0, 0x00, 0xe6, + 0x03, 0xfc, 0x08, 0x00, 0x2c, 0x1a, 0x32, 0xf0, 0x86, 0xf0, 0xbe, + 0x0d, 0xd4, 0x01, 0xd5, 0xf0, 0x00, 0xec, 0x01, 0xfc, 0x38, 0x54, + 0x98, 0x57, 0xbc, 0x00, 0x0c, 0x1c, 0xb1, 0xf0, 0x3c, 0x00, 0xb4, + 0x00, 0xb8, 0x0d, 0x00, 0x57, 0x01, 0xf0, 0x02, 0x13, 0x02, 0xfc, + 0x03, 0xe6, 0x10, 0x00, 0x18, 0x40, 0x3e, 0x1c, 0x44, 0x13, 0x6c, + 0x01, 0x6e, 0x01, 0xbd, 0x00, 0xe0, 0x00, 0x02, 0x80, 0x30, 0xe4, + 0x3e, 0x00, 0x74, 0x01, 0x76, 0x01, 0x7c, 0x16, 0x80, 0x00, 0xb9, + 0x54, 0xbb, 0x00, 0xee, 0x13, 0x00, 0x4e, 0x01, 0x01, 0x01, 0xea, + 0x02, 0x48, 0x02, 0xfa, 0x04, 0x12, 0x08, 0x12, 0x3c, 0x56, 0x4e, + 0x01, 0x5d, 0xf0, 0x7a, 0x01, 0x7e, 0x10, 0xb6, 0x00, 0xc2, 0x10, + 0xee, 0x08, 0x00, 0x80, 0x05, 0xfc, 0x10, 0x44, 0x24, 0x01, 0x28, + 0x01, 0x32, 0x00, 0x3c, 0x01, 0x40, 0x00, 0x4b, 0xe4, 0x4b, 0xf4, + 0x4c, 0x1c, 0x68, 0x01, 0x6a, 0x01, 0x70, 0x01, 0x72, 0x01, 0x78, + 0x01, 0x7c, 0x01, 0xbb, 0x55, 0xc2, 0x0d, 0x00, 0x01, 0x02, 0xee, + 0x03, 0x58, 0x03, 0xf7, 0x03, 0xfa, 0x04, 0x80, 0x08, 0x44, 0x09, + 0xf0, 0x0f, 0x00, 0x1b, 0x80, 0x20, 0x01, 0x38, 0x1c, 0x4e, 0x1c, + 0x5b, 0xf0, 0x62, 0x0a, 0xaa, 0x00, 0xbe, 0x00, 0xc0, 0x00, 0xc0, + 0x15, 0xcc, 0x10, 0x00, 0x4c, 0x00, 0xdc, 0x02, 0x4a, 0x04, 0xfc, + 0x05, 0x00, 0x05, 0xf0, 0x05, 0xf8, 0x06, 0x13, 0x06, 0xf7, 0x08, + 0x13, 0x0a, 0x10, 0x0c, 0x00, 0x0e, 0x47, 0x0e, 0xf7, 0x10, 0x0f, + 0x20, 0x00, 0x20, 0x16, 0x2a, 0x01, 0x32, 0x1c, 0x36, 0x00, 0x42, + 0x54, 0x44, 0x55, 0x45, 0x5a, 0x52, 0x0c, 0x59, 0xf0, 0x5c, 0xf0, + 0x69, 0x08, 0x6e, 0x0b, 0x83, 0x59, 0xb8, 0xf0, 0xbd, 0x56, 0xcc, + 0x18, 0xce, 0x10, 0xd8, 0x18, 0xf0, 0x00, 0x01, 0x48, 0x04, 0x10, + 0x04, 0xea, 0x04, 0xf6, 0x05, 0x80, 0x05, 0xe6, 0x06, 0x00, 0x06, + 0x0f, 0x06, 0x12, 0x0b, 0xf0, 0x0c, 0x10, 0x0c, 0xf0, 0x10, 0x13, + 0x12, 0x10, 0x19, 0x00, 0x19, 0xe4, 0x30, 0x1c, 0x33, 0x00, 0x34, + 0x00, 0x38, 0x44, 0x40, 0x5c, 0x4a, 0xe4, 0x62, 0x1a, 0x68, 0x08, + 0x68, 0x54, 0x6c, 0x15, 0x70, 0x15, 0x83, 0x55, 0x83, 0x5a, 0x91, + 0x44, 0xa4, 0x00, 0xac, 0x13, 0xb0, 0x57, 0xb5, 0x00, 0xb8, 0x17, + 0xba, 0x00, 0xce, 0x45, 0xd0, 0x00, 0xe1, 0x00, 0xe5, 0x55, 0xe7, + 0x00, 0x00, 0x54, 0x01, 0x58, 0x02, 0x10, 0x02, 0xe6, 0x03, 0xa1, + 0x04, 0x13, 0x06, 0x83, 0x06, 0xf0, 0x07, 0x00, 0x0a, 0x00, 0x0a, + 0x12, 0x0a, 0xf0, 0x0c, 0x12, 0x0c, 0x13, 0x0c, 0x90, 0x0e, 0x13, + 0x10, 0x04, 0x10, 0x10, 0x12, 0x1c, 0x19, 0x81, 0x1a, 0x10, 0x1c, + 0x00, 0x1c, 0x12, 0x1d, 0xf7, 0x1e, 0x13, 0x20, 0x1c, 0x20, 0xe7, + 0x22, 0x01, 0x26, 0x01, 0x2a, 0x12, 0x2c, 0x0f, 0x30, 0xe7, 0x32, + 0x15, 0x34, 0x1c, 0x36, 0x1c, 0x38, 0x12, 0x3a, 0x55, 0x3f, 0x00, + 0x41, 0x58, 0x43, 0x48, 0x46, 0x1c, 0x4e, 0xe4, 0x76, 0x02, 0x77, + 0x57, 0x78, 0x03, 0x89, 0x48, 0x8e, 0x90, 0x98, 0x80, 0x99, 0x00, + 0xfe, 0x9c, 0xf0, 0x27, 0x02, 0xfe, 0xe0, 0x0d, 0xff, 0x10, 0x00, + 0x00, 0xfe, 0xc6, 0x01, 0xfe, 0x56, 0x1a, 0x00, 0xfe, 0xc4, 0x01, + 0xfe, 0x84, 0x01, 0xff, 0x03, 0x00, 0x00, 0xfe, 0x6a, 0x13, 0xfe, + 0x05, 0x05, 0xff, 0x40, 0x00, 0x00, 0x0e, 0xff, 0x09, 0x00, 0x00, + 0xff, 0x08, 0x01, 0x01, 0xff, 0x10, 0xff, 0xff, 0xff, 0x1f, 0x00, + 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0x11, 0x00, 0x00, 0xfe, 0x78, + 0x56, 0xfe, 0x34, 0x12, 0xff, 0x21, 0x00, 0x00, 0xfe, 0x04, 0xf7, + 0xfe, 0xc4, 0x01, 0x2e, 0x88, 0x0b, 0x01, 0xfe, 0xca, 0x0f, 0xfe, + 0x04, 0xf7, 0xfe, 0xc4, 0x01, 0x88, 0x0b, 0x1c, 0x2e, 0xfe, 0x3d, + 0xf0, 0xfe, 0xfc, 0x01, 0xfe, 0x20, 0xf0, 0xdc, 0x04, 0x5f, 0x4f, + 0x02, 0xfe, 0xfc, 0x0d, 0x01, 0xfe, 0x5c, 0x0e, 0xfe, 0xe9, 0x12, + 0x02, 0xfe, 0x08, 0x03, 0xfe, 0x28, 0x1c, 0x04, 0xfe, 0xa6, 0x00, + 0xfe, 0xdd, 0x12, 0x47, 0x12, 0xfe, 0xa6, 0x00, 0xcd, 0xfe, 0x48, + 0xf0, 0xfe, 0x80, 0x02, 0xfe, 0x49, 0xf0, 0xfe, 0x9a, 0x02, 0xfe, + 0x4a, 0xf0, 0xfe, 0xb8, 0x02, 0xfe, 0x46, 0xf0, 0xfe, 0x4a, 0x02, + 0xfe, 0x47, 0xf0, 0xfe, 0x50, 0x02, 0xfe, 0x43, 0xf0, 0xfe, 0x3e, + 0x02, 0xfe, 0x44, 0xf0, 0xfe, 0x42, 0x02, 0xfe, 0x45, 0xf0, 0xfe, + 0x46, 0x02, 0x09, 0x0b, 0xa4, 0x09, 0x06, 0x12, 0xc1, 0x02, 0x27, + 0xfe, 0x00, 0x1c, 0xfe, 0xf1, 0x10, 0xfe, 0x02, 0x1c, 0xfe, 0xed, + 0x10, 0xfe, 0x1e, 0x1c, 0xfe, 0xe9, 0x10, 0x01, 0xfe, 0x2c, 0x18, + 0xfe, 0xe7, 0x10, 0xfe, 0x06, 0xfc, 0xfe, 0xa8, 0x00, 0x0f, 0x7c, + 0x01, 0xaa, 0x02, 0x27, 0x17, 0x5e, 0x4c, 0xc4, 0x01, 0xfe, 0x40, + 0x10, 0x0f, 0x7c, 0x01, 0x8e, 0xfe, 0xbd, 0x10, 0x0f, 0x7c, 0x01, + 0x8e, 0xfe, 0xad, 0x10, 0xfe, 0x16, 0x1c, 0xfe, 0x58, 0x1c, 0x09, + 0x06, 0x12, 0xc1, 0x2e, 0x1b, 0x27, 0xfe, 0x3d, 0xf0, 0xfe, 0xfc, + 0x01, 0x28, 0xfe, 0x8e, 0x02, 0xfe, 0x5a, 0x1c, 0xde, 0xfe, 0x14, + 0x1c, 0x17, 0xfe, 0x30, 0x00, 0x4c, 0xc4, 0x01, 0xfe, 0x30, 0x10, + 0x09, 0x06, 0x12, 0xc1, 0x02, 0xfe, 0xc6, 0x01, 0x29, 0x2d, 0x05, + 0x10, 0x35, 0xfe, 0x69, 0x10, 0x09, 0x06, 0x12, 0xc1, 0xfe, 0x04, + 0xec, 0x2d, 0x08, 0x2d, 0x09, 0x3e, 0x1c, 0x01, 0x45, 0x82, 0xfe, + 0x05, 0xf6, 0xfe, 0xa8, 0x00, 0x01, 0xfe, 0x56, 0x17, 0x0a, 0x41, + 0x8f, 0x39, 0x11, 0x48, 0x1c, 0xd2, 0x08, 0x1e, 0x09, 0x52, 0x01, + 0x90, 0x02, 0x27, 0x0f, 0x3f, 0x01, 0x15, 0x05, 0x10, 0xdb, 0x08, + 0x1e, 0x09, 0x52, 0x01, 0x7e, 0xfe, 0x28, 0x10, 0x0f, 0xc8, 0x01, + 0x15, 0xf2, 0x0f, 0x7d, 0x01, 0x15, 0xfe, 0x49, 0x54, 0x79, 0xfe, + 0x16, 0x03, 0x08, 0x1e, 0x09, 0x52, 0x01, 0x90, 0x02, 0x27, 0x2e, + 0x82, 0xfe, 0x02, 0xe8, 0x31, 0xfe, 0xbf, 0x57, 0xfe, 0x9e, 0x43, + 0xf7, 0xfe, 0x07, 0x4b, 0xfe, 0x20, 0xf0, 0xdc, 0xfe, 0x40, 0x1c, + 0x1b, 0xf8, 0xfe, 0x26, 0xf0, 0xfe, 0x74, 0x03, 0xfe, 0xa0, 0xf0, + 0xfe, 0x62, 0x03, 0xfe, 0x11, 0xf0, 0xdc, 0xfe, 0x0e, 0x10, 0xfe, + 0x9f, 0xf0, 0xfe, 0x82, 0x03, 0xf4, 0x13, 0xfe, 0x11, 0x00, 0x02, + 0x6b, 0x2e, 0xfe, 0x48, 0x1c, 0xf4, 0x1b, 0xf8, 0x34, 0xf8, 0xfe, + 0x82, 0xf0, 0xfe, 0x88, 0x03, 0x2b, 0x29, 0xc6, 0x72, 0x16, 0xc6, + 0x0f, 0x7d, 0x01, 0x15, 0x72, 0x80, 0x08, 0x1e, 0x09, 0x52, 0x01, + 0x45, 0x11, 0x3f, 0x08, 0x3f, 0x09, 0xa2, 0x01, 0x90, 0xfe, 0x9c, + 0x32, 0x11, 0xfe, 0xe4, 0x00, 0x2f, 0xfe, 0xce, 0x03, 0x1b, 0x32, + 0x1f, 0xfe, 0xde, 0x03, 0x01, 0x55, 0xd3, 0xfe, 0xee, 0x03, 0x73, + 0x97, 0xd7, 0xfe, 0xae, 0x06, 0x02, 0x26, 0x04, 0x7c, 0x2c, 0x19, + 0xfe, 0x20, 0x05, 0x17, 0x8b, 0x01, 0x3b, 0x01, 0x9f, 0x01, 0xa1, + 0x34, 0xfe, 0x60, 0x02, 0x02, 0xf6, 0xf4, 0x2e, 0x88, 0x18, 0xfe, + 0x67, 0x1b, 0xfe, 0xbf, 0x57, 0xf7, 0xfe, 0x48, 0x1c, 0x92, 0x01, + 0xfe, 0x9c, 0x13, 0xb3, 0xfe, 0x96, 0xf0, 0xfe, 0x28, 0x04, 0x2f, + 0xfe, 0x2c, 0x04, 0x34, 0x27, 0x0f, 0x3f, 0x01, 0x15, 0x05, 0x10, + 0x19, 0xfe, 0x0c, 0x05, 0x4d, 0x7a, 0xa5, 0x31, 0x86, 0x76, 0x1b, + 0x32, 0x1f, 0x26, 0x04, 0x7c, 0x2c, 0xfe, 0x10, 0x12, 0x17, 0x8b, + 0x01, 0x3b, 0x34, 0xfe, 0x60, 0x02, 0x02, 0xf6, 0x21, 0xfe, 0xa0, + 0x00, 0xfe, 0x9b, 0x57, 0xfe, 0x5e, 0x12, 0x0a, 0x07, 0x06, 0xfe, + 0x56, 0x12, 0x24, 0x23, 0x9a, 0x01, 0x0c, 0x86, 0x76, 0x1f, 0xfe, + 0xdc, 0x04, 0x24, 0x23, 0x9a, 0x01, 0x0c, 0x1f, 0x26, 0x24, 0x23, + 0xba, 0xfe, 0x4c, 0x44, 0xfe, 0x32, 0x12, 0x51, 0xfe, 0x44, 0x48, + 0x08, 0xfe, 0x93, 0x00, 0xfe, 0x4c, 0x54, 0x79, 0xfe, 0x0c, 0x05, + 0x82, 0xa5, 0x31, 0xfe, 0x06, 0x80, 0xfe, 0x48, 0x47, 0xfe, 0x48, + 0x13, 0x40, 0x05, 0xfe, 0xcc, 0x00, 0xfe, 0x40, 0x13, 0x0a, 0x07, + 0x06, 0xef, 0xfe, 0x06, 0x10, 0x24, 0x23, 0xba, 0x0a, 0x07, 0x38, + 0xe2, 0x17, 0xa9, 0x0a, 0x07, 0x06, 0x4f, 0x17, 0xfe, 0x0d, 0x00, + 0x01, 0x3b, 0x34, 0xfe, 0xa0, 0x0d, 0x02, 0x26, 0x3a, 0x11, 0xfe, + 0xe6, 0x00, 0xfe, 0x1c, 0x90, 0xb7, 0x03, 0x17, 0xa9, 0x01, 0x3b, + 0x34, 0x27, 0x1b, 0x27, 0x02, 0xfe, 0x14, 0x05, 0xfe, 0x42, 0x5b, + 0x88, 0x18, 0xfe, 0x46, 0x59, 0xfe, 0xbf, 0x57, 0xf7, 0x17, 0x46, + 0xfe, 0x07, 0x80, 0xfe, 0x31, 0x44, 0x0a, 0x07, 0x0b, 0xfe, 0x78, + 0x13, 0xfe, 0x20, 0x80, 0x05, 0x18, 0xfe, 0x70, 0x12, 0x75, 0x07, + 0x06, 0xfe, 0x60, 0x13, 0x04, 0xfe, 0xa2, 0x00, 0x2c, 0x19, 0xfe, + 0xac, 0x05, 0xfe, 0x31, 0xe4, 0x60, 0x75, 0x07, 0x0b, 0xfe, 0x4a, + 0x13, 0x04, 0xfe, 0xa0, 0x00, 0x2c, 0xfe, 0x42, 0x12, 0x63, 0x2f, + 0xfe, 0x6c, 0x05, 0x1b, 0x32, 0xf9, 0x01, 0x0c, 0x25, 0xfe, 0xc4, + 0x05, 0x11, 0xfe, 0xe3, 0x00, 0x2b, 0x75, 0xfe, 0x4a, 0xf0, 0xfe, + 0x96, 0x05, 0xfe, 0x49, 0xf0, 0xfe, 0x90, 0x05, 0xad, 0x20, 0xfe, + 0x21, 0x00, 0x8a, 0x20, 0xfe, 0x22, 0x00, 0xa4, 0x20, 0x8f, 0xfe, + 0x09, 0x48, 0x01, 0x0c, 0x25, 0xfe, 0xc4, 0x05, 0xfe, 0xe2, 0x08, + 0x75, 0x07, 0xe1, 0x4f, 0x01, 0xc2, 0x20, 0x06, 0x16, 0xe8, 0x4c, + 0xfe, 0x27, 0x01, 0x0a, 0x07, 0x38, 0xe9, 0x47, 0x01, 0xbd, 0x17, + 0xa9, 0x0a, 0x07, 0x06, 0x4f, 0x17, 0xfe, 0x0d, 0x00, 0x01, 0x3b, + 0x01, 0x9f, 0x01, 0xa1, 0x34, 0xfe, 0xa0, 0x0d, 0x02, 0x26, 0x04, + 0xfe, 0x9c, 0x00, 0x2c, 0xfe, 0x3e, 0x12, 0x04, 0x5c, 0x2c, 0xfe, + 0x36, 0x13, 0x47, 0x01, 0xbd, 0x25, 0xfe, 0x3c, 0x06, 0x0f, 0x06, + 0x75, 0x07, 0x22, 0xfe, 0x02, 0x12, 0x6a, 0x01, 0xfe, 0x06, 0x15, + 0x1f, 0xfe, 0x32, 0x06, 0x11, 0xc9, 0x01, 0x55, 0x11, 0xfe, 0xe5, + 0x00, 0x04, 0x5c, 0xc3, 0x0d, 0x5c, 0x04, 0xfe, 0x9e, 0x00, 0x2c, + 0xfe, 0x62, 0x12, 0x04, 0x56, 0x2c, 0xfe, 0x5a, 0x13, 0x01, 0xfe, + 0x7e, 0x19, 0x01, 0xfe, 0xe8, 0x19, 0xf3, 0xa8, 0xf1, 0x08, 0x6c, + 0xff, 0x02, 0x00, 0x57, 0x6e, 0x81, 0x1a, 0x59, 0xd1, 0xa8, 0x74, + 0x47, 0x01, 0xbd, 0x25, 0xfe, 0xa6, 0x06, 0x75, 0x07, 0x1d, 0xab, + 0x9e, 0x0f, 0x5e, 0x01, 0xfe, 0x34, 0x15, 0x1f, 0xfe, 0x9c, 0x06, + 0x11, 0xc9, 0x01, 0x55, 0x11, 0xfe, 0xe5, 0x00, 0x04, 0x56, 0xc3, + 0x0d, 0x56, 0x09, 0x06, 0x01, 0xbd, 0xfe, 0x9c, 0x32, 0x78, 0x92, + 0x01, 0xfe, 0x9c, 0x13, 0xb3, 0x11, 0xfe, 0xe2, 0x00, 0x2f, 0xfe, + 0xbe, 0x06, 0x1b, 0x32, 0xd7, 0xfe, 0xda, 0x06, 0x85, 0xfe, 0x78, + 0x07, 0xd3, 0xfe, 0x80, 0x07, 0x73, 0x97, 0x02, 0x26, 0x0a, 0x07, + 0x0b, 0xfe, 0x2e, 0x12, 0x14, 0x18, 0x01, 0x0c, 0x14, 0x00, 0x01, + 0x0c, 0x14, 0x00, 0x01, 0x0c, 0x14, 0x00, 0x01, 0x0c, 0xfe, 0x99, + 0xa4, 0x01, 0x0c, 0x14, 0x00, 0x02, 0xfe, 0x50, 0x08, 0x71, 0x07, + 0x1d, 0xef, 0x0a, 0x07, 0x1d, 0xfe, 0x30, 0x13, 0x14, 0xfe, 0x1b, + 0x00, 0x01, 0x0c, 0x14, 0x00, 0x01, 0x0c, 0x14, 0x00, 0x01, 0x0c, + 0x14, 0x00, 0x01, 0x0c, 0x14, 0x06, 0x01, 0x0c, 0x14, 0x00, 0x02, + 0xfe, 0x0a, 0x0c, 0x6a, 0xfe, 0x9a, 0x81, 0x6f, 0x8f, 0xfe, 0x09, + 0x6f, 0xfe, 0x93, 0x45, 0x19, 0xfe, 0x88, 0x07, 0x2f, 0xfe, 0x60, + 0x07, 0x1b, 0x32, 0xd7, 0xfe, 0x58, 0x07, 0x73, 0x97, 0x85, 0xfe, + 0x78, 0x07, 0x02, 0x26, 0x01, 0x55, 0x02, 0xfe, 0xbe, 0x06, 0x14, + 0x22, 0x02, 0xfe, 0xbe, 0x06, 0xfe, 0x9c, 0xf7, 0xfe, 0xf0, 0x07, + 0xfe, 0x2c, 0x90, 0xfe, 0xae, 0x90, 0x53, 0xfe, 0xd6, 0x07, 0x0d, + 0x66, 0x12, 0x67, 0x0a, 0x41, 0x60, 0x39, 0x01, 0xfe, 0x14, 0x19, + 0x05, 0x10, 0x87, 0xfe, 0x83, 0xe7, 0xfe, 0x95, 0x00, 0x8a, 0xfe, + 0x03, 0x40, 0x0a, 0x41, 0x46, 0x39, 0x01, 0xc5, 0xb6, 0xfe, 0x1f, + 0x40, 0x16, 0x68, 0x01, 0xfe, 0xbe, 0x13, 0xfe, 0x08, 0x50, 0xfe, + 0x8a, 0x50, 0xfe, 0x34, 0x51, 0xfe, 0xb6, 0x51, 0xfe, 0x08, 0x90, + 0xfe, 0x8a, 0x90, 0x0d, 0x64, 0x12, 0x65, 0xda, 0xfa, 0x0d, 0x3c, + 0x12, 0x3d, 0xfe, 0x60, 0x10, 0x0a, 0x07, 0x60, 0xe9, 0xfe, 0x2c, + 0x90, 0xfe, 0xae, 0x90, 0x0d, 0x66, 0x12, 0x67, 0x0a, 0x07, 0x46, + 0xd1, 0x01, 0xc5, 0xfe, 0x1f, 0x80, 0x16, 0x68, 0xfe, 0x34, 0x90, + 0xfe, 0xb6, 0x90, 0x0d, 0x43, 0x12, 0x44, 0xfe, 0x08, 0x90, 0xfe, + 0x8a, 0x90, 0x0d, 0x64, 0x12, 0x65, 0xa7, 0x07, 0x46, 0xdb, 0xda, + 0xfa, 0x0d, 0x3c, 0x12, 0x3d, 0xad, 0xfe, 0x28, 0x90, 0xfe, 0xaa, + 0x90, 0x0d, 0x3c, 0x12, 0x3d, 0x0d, 0x30, 0x12, 0x42, 0x2b, 0x0d, + 0x54, 0x0d, 0x69, 0x0a, 0x41, 0x22, 0x39, 0x2e, 0x08, 0x84, 0x2f, + 0xfe, 0x70, 0x08, 0xfe, 0x9e, 0xf0, 0xfe, 0x84, 0x08, 0xa3, 0x19, + 0x32, 0x2e, 0x5b, 0xfe, 0xed, 0x10, 0xac, 0xfe, 0xa8, 0x08, 0xae, + 0xfe, 0xc4, 0x08, 0x85, 0xfe, 0x9c, 0x08, 0xd3, 0xfe, 0xa2, 0x08, + 0x73, 0x97, 0x02, 0x26, 0x01, 0x55, 0xfe, 0xc9, 0x10, 0x14, 0x22, + 0xfe, 0xc9, 0x10, 0x71, 0x07, 0x06, 0xfe, 0x10, 0x12, 0x71, 0x07, + 0x0b, 0x50, 0x0a, 0x07, 0x0b, 0xfe, 0xa6, 0x12, 0xfe, 0x2e, 0x1c, + 0xb0, 0x71, 0x07, 0x06, 0x50, 0x71, 0x07, 0x0b, 0xfe, 0x92, 0x12, + 0xfe, 0x2c, 0x1c, 0xa7, 0x07, 0x46, 0xaf, 0xa7, 0x41, 0x46, 0xfe, + 0x05, 0x40, 0xda, 0xfa, 0xfe, 0x28, 0x50, 0xfe, 0xaa, 0x50, 0xfe, + 0xaa, 0xf0, 0xfe, 0xf6, 0x09, 0xfe, 0xac, 0xf0, 0xfe, 0x24, 0x09, + 0x02, 0xfe, 0x02, 0x0a, 0xfe, 0xb7, 0xf0, 0xfe, 0x20, 0x09, 0xfe, + 0x02, 0xf6, 0x1d, 0x6a, 0xfe, 0x70, 0x18, 0xfe, 0xf1, 0x18, 0xfe, + 0x40, 0x55, 0xfe, 0xe1, 0x55, 0xfe, 0x10, 0x58, 0xfe, 0x91, 0x58, + 0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59, 0x1b, 0x9b, 0xfe, 0x8c, 0xf0, + 0xfe, 0x20, 0x09, 0xfe, 0xac, 0xf0, 0xfe, 0x14, 0x09, 0xed, 0xfe, + 0xcb, 0x10, 0xfe, 0xad, 0xf0, 0xfe, 0x30, 0x09, 0x02, 0xfe, 0x3c, + 0x0b, 0xee, 0xfe, 0xbf, 0x10, 0xfe, 0x2b, 0xf0, 0x9b, 0xfe, 0x6b, + 0x18, 0x1a, 0xfe, 0x00, 0xfe, 0xe2, 0xcd, 0xfe, 0xd2, 0xf0, 0x9b, + 0xfe, 0x76, 0x18, 0x1a, 0x18, 0x19, 0x9b, 0x04, 0xe7, 0x1a, 0x06, + 0x19, 0x9b, 0xac, 0x58, 0xae, 0x58, 0xed, 0xee, 0xfe, 0x89, 0x10, + 0x92, 0x63, 0x3a, 0x17, 0xa9, 0x01, 0x3b, 0x13, 0xfe, 0x35, 0x00, + 0x34, 0x6b, 0x13, 0x93, 0x02, 0x6b, 0xfb, 0xb2, 0x0b, 0xfe, 0x1a, + 0x12, 0x51, 0xfe, 0x19, 0x82, 0xfe, 0x6c, 0x18, 0xfe, 0x44, 0x54, + 0xf0, 0xdf, 0xfe, 0x74, 0x18, 0x94, 0x95, 0x19, 0xfe, 0xf2, 0x08, + 0x02, 0x58, 0x0a, 0x07, 0x60, 0xaf, 0x04, 0x30, 0x2a, 0x42, 0x0d, + 0x43, 0x12, 0x44, 0x83, 0x30, 0x5a, 0x42, 0xfe, 0x6c, 0x18, 0xfe, + 0xed, 0x18, 0xfe, 0x44, 0x54, 0xfe, 0xe5, 0x54, 0x36, 0x43, 0x21, + 0x44, 0x04, 0x54, 0x2a, 0x69, 0x94, 0xfe, 0xe3, 0x54, 0xfe, 0x74, + 0x18, 0xfe, 0xf5, 0x18, 0x94, 0xfe, 0xe3, 0x54, 0x95, 0xca, 0x53, + 0xfe, 0xf2, 0x08, 0x02, 0x58, 0xfe, 0x37, 0xf0, 0xfe, 0xfe, 0x09, + 0xfe, 0x8b, 0xf0, 0xfe, 0x84, 0x09, 0x02, 0x58, 0xfb, 0xb2, 0x0b, + 0x28, 0xfe, 0x1e, 0x0b, 0x36, 0x54, 0x21, 0x69, 0x53, 0x7a, 0x08, + 0xfe, 0xc0, 0x07, 0x47, 0x62, 0x00, 0xd9, 0xfe, 0x01, 0x59, 0xfe, + 0x52, 0xf0, 0xfe, 0x30, 0x0a, 0x94, 0x99, 0xfe, 0x48, 0x0a, 0x36, + 0x54, 0x94, 0xfe, 0xe3, 0x54, 0x4e, 0x54, 0x70, 0x69, 0xfe, 0x14, + 0x58, 0xfe, 0x95, 0x58, 0x02, 0x58, 0x36, 0x54, 0x21, 0x69, 0xfe, + 0x14, 0x59, 0xfe, 0x95, 0x59, 0xf0, 0x4e, 0x54, 0x4e, 0x69, 0x02, + 0x58, 0x0a, 0x07, 0x60, 0xfe, 0x82, 0x12, 0x0a, 0x07, 0x22, 0xfe, + 0x66, 0x13, 0x29, 0x68, 0x72, 0xd0, 0xfe, 0x83, 0x80, 0xfe, 0xc8, + 0x44, 0xfe, 0x2e, 0x13, 0xfe, 0x04, 0x91, 0xfe, 0x86, 0x91, 0x6d, + 0x31, 0xfe, 0x40, 0x59, 0xfe, 0xc1, 0x59, 0x53, 0xfe, 0xfa, 0x08, + 0x04, 0x66, 0x2a, 0x67, 0x0d, 0xb5, 0x12, 0x93, 0x4e, 0x66, 0x70, + 0x67, 0x01, 0xc5, 0xb6, 0x6d, 0x31, 0x16, 0x68, 0x83, 0x30, 0x5a, + 0x42, 0x36, 0x43, 0x21, 0x44, 0x95, 0xca, 0xfe, 0x04, 0xfa, 0x30, + 0xfe, 0x05, 0xfa, 0x42, 0x01, 0xfe, 0xbe, 0x13, 0xfe, 0x36, 0x10, + 0x2b, 0x0d, 0xb5, 0x0d, 0x93, 0x36, 0x43, 0x21, 0x44, 0xb0, 0x0a, + 0x07, 0x22, 0x19, 0xfe, 0xfa, 0x08, 0x36, 0x3c, 0x21, 0x3d, 0x0a, + 0x07, 0xfe, 0xf7, 0x00, 0x39, 0x04, 0x64, 0x2a, 0x65, 0xfe, 0x10, + 0x58, 0xfe, 0x91, 0x58, 0x4e, 0x54, 0x70, 0x69, 0x02, 0xfe, 0x18, + 0x0a, 0x0a, 0x07, 0x22, 0x19, 0xfe, 0xfa, 0x08, 0x0a, 0x07, 0xfe, + 0xf7, 0x00, 0x39, 0xf0, 0xdf, 0x6a, 0xfe, 0x10, 0x90, 0xfe, 0x92, + 0x90, 0xfe, 0xd3, 0x10, 0x40, 0x05, 0xcb, 0x19, 0xfe, 0x2c, 0x09, + 0x11, 0xcb, 0xfb, 0xb2, 0x0b, 0xfe, 0x14, 0x13, 0x04, 0x3c, 0x2a, + 0x3d, 0x53, 0xfe, 0x2c, 0x09, 0xfe, 0x0c, 0x58, 0xfe, 0x8d, 0x58, + 0x02, 0x58, 0x2b, 0x47, 0xfe, 0x19, 0x80, 0xfe, 0xf1, 0x10, 0x0a, + 0x07, 0x0b, 0xab, 0xfe, 0x6c, 0x19, 0xfe, 0x19, 0x41, 0xfe, 0x8e, + 0x10, 0xfe, 0x6c, 0x19, 0x4e, 0x3c, 0xfe, 0xed, 0x19, 0x70, 0x3d, + 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0xfe, 0x6b, 0x18, 0x1a, 0xfe, + 0x00, 0xff, 0x35, 0xfe, 0x74, 0x10, 0xcd, 0xfe, 0xd2, 0xf0, 0xfe, + 0xb6, 0x0b, 0xfe, 0x76, 0x18, 0x1a, 0x18, 0xd6, 0x04, 0xe7, 0x1a, + 0x06, 0x89, 0x13, 0xfe, 0x16, 0x00, 0x02, 0x6b, 0xfe, 0xd1, 0xf0, + 0xfe, 0xc8, 0x0b, 0x17, 0x84, 0x01, 0x3b, 0x13, 0xfe, 0x17, 0x00, + 0xfe, 0x42, 0x10, 0xfe, 0xce, 0xf0, 0xfe, 0xce, 0x0b, 0xfe, 0x3c, + 0x10, 0xfe, 0xcd, 0xf0, 0xfe, 0xda, 0x0b, 0x13, 0xfe, 0x22, 0x00, + 0x02, 0x6b, 0xfe, 0xcb, 0xf0, 0xfe, 0xe6, 0x0b, 0x13, 0xfe, 0x24, + 0x00, 0x02, 0x6b, 0xfe, 0xd0, 0xf0, 0xfe, 0xf0, 0x0b, 0x13, 0xb1, + 0xe0, 0xfe, 0xcf, 0xf0, 0xfe, 0xfa, 0x0b, 0x13, 0x8f, 0xdd, 0xfe, + 0xcc, 0xf0, 0xfe, 0x0a, 0x0c, 0xfe, 0x84, 0x80, 0xb2, 0x22, 0x4f, + 0x13, 0xfe, 0x12, 0x00, 0x2e, 0x08, 0x84, 0x2f, 0xfe, 0x10, 0x0c, + 0xfe, 0x9e, 0xf0, 0xfe, 0x24, 0x0c, 0xa3, 0x19, 0x32, 0x2e, 0x5b, + 0xfe, 0xed, 0x10, 0xac, 0x26, 0xae, 0x26, 0x2e, 0xfe, 0x9c, 0x32, + 0x2f, 0xfe, 0x30, 0x0c, 0x1b, 0x32, 0x85, 0xfe, 0x4c, 0x0c, 0x73, + 0x97, 0xac, 0xfe, 0xf0, 0x07, 0xae, 0xfe, 0xf0, 0x07, 0x02, 0x26, + 0x01, 0x55, 0xfe, 0xdb, 0x10, 0x11, 0xfe, 0xe8, 0x00, 0xed, 0xee, + 0x92, 0x86, 0x76, 0xfe, 0x89, 0xf0, 0x26, 0x24, 0x23, 0xfe, 0xe9, + 0x09, 0x01, 0x0c, 0x86, 0x76, 0x1f, 0x26, 0x24, 0x23, 0x9a, 0x34, + 0xfe, 0x88, 0x0c, 0x1b, 0x32, 0x02, 0xfe, 0x7c, 0x0c, 0xa3, 0x50, + 0x13, 0xfe, 0x42, 0x00, 0x02, 0x6b, 0xa6, 0x06, 0xfe, 0x81, 0x49, + 0xfe, 0xcc, 0x12, 0x0a, 0x07, 0x0b, 0xfe, 0x5a, 0x13, 0x13, 0x00, + 0x61, 0x0b, 0xfe, 0x6a, 0x12, 0x61, 0xfe, 0x28, 0x00, 0x28, 0xfe, + 0xce, 0x0d, 0x0f, 0x7d, 0x01, 0x15, 0x05, 0x00, 0x89, 0x37, 0xfe, + 0x28, 0x00, 0x02, 0xfe, 0xce, 0x0d, 0x01, 0x9f, 0x01, 0xa1, 0x0f, + 0xc8, 0x01, 0xfe, 0x24, 0x0f, 0xb9, 0x08, 0x3f, 0x09, 0xa2, 0x01, + 0x45, 0x11, 0x48, 0x08, 0x1e, 0x09, 0x52, 0x01, 0x7e, 0x02, 0x27, + 0x13, 0xfe, 0x44, 0x00, 0x61, 0x0b, 0xab, 0x37, 0x0b, 0xfe, 0xc0, + 0x10, 0x01, 0xc2, 0x37, 0x0b, 0xfe, 0xb6, 0x10, 0x01, 0xc2, 0xfe, + 0x19, 0x82, 0xfe, 0x34, 0x46, 0xfe, 0x0a, 0x13, 0x37, 0x0b, 0x13, + 0xfe, 0x43, 0x00, 0xfe, 0xa2, 0x10, 0x0a, 0x41, 0x0b, 0x39, 0x01, + 0x9f, 0x01, 0xa1, 0xb9, 0x08, 0x3f, 0x09, 0xa2, 0x01, 0x45, 0x11, + 0x48, 0x08, 0x1e, 0x09, 0x52, 0x01, 0x7e, 0x88, 0x0b, 0xb9, 0x1c, + 0xd2, 0x02, 0xfe, 0x4c, 0x03, 0x0a, 0x07, 0x0b, 0xd6, 0x37, 0x0b, + 0x13, 0x00, 0xfe, 0x54, 0x10, 0x71, 0x07, 0x1d, 0xfe, 0x50, 0x12, + 0x0a, 0x07, 0x1d, 0xfe, 0x48, 0x13, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, + 0xf0, 0xfe, 0x8c, 0x0d, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, 0xf0, 0xfe, + 0x92, 0x0d, 0x0a, 0x41, 0x1d, 0x39, 0xfe, 0x95, 0x10, 0x13, 0xfe, + 0x15, 0x00, 0xfe, 0x04, 0xe6, 0x0b, 0x6a, 0xfe, 0x26, 0x10, 0x13, + 0xfe, 0x13, 0x00, 0xdd, 0x13, 0xfe, 0x47, 0x00, 0x8a, 0x13, 0xfe, + 0x41, 0x00, 0xa4, 0x13, 0xfe, 0x24, 0x00, 0x04, 0x7c, 0x2c, 0x28, + 0xf6, 0x6a, 0xfe, 0x04, 0xe6, 0x1d, 0xfe, 0x9d, 0x41, 0xfe, 0x1c, + 0x42, 0xb9, 0x01, 0xea, 0x02, 0x27, 0xde, 0x17, 0x0b, 0x4c, 0xfe, + 0x9b, 0x00, 0xe5, 0x17, 0xfe, 0x31, 0x00, 0x4c, 0xc4, 0x01, 0xfe, + 0x30, 0x10, 0x02, 0xfe, 0xc6, 0x01, 0x1c, 0xfe, 0x06, 0xec, 0xfe, + 0xb9, 0x00, 0x8c, 0x37, 0x38, 0xc7, 0x35, 0x1c, 0xfe, 0x06, 0xea, + 0xfe, 0xb9, 0x00, 0xfe, 0x47, 0x4b, 0x9e, 0xfe, 0x75, 0x57, 0x04, + 0x5f, 0xfe, 0x98, 0x56, 0xfe, 0x28, 0x12, 0x0f, 0x7d, 0xfe, 0xf4, + 0x14, 0x47, 0xf2, 0x0f, 0xc8, 0xfe, 0xea, 0x14, 0xfe, 0x49, 0x54, + 0x98, 0xfe, 0x42, 0x0e, 0x0f, 0x1e, 0xfe, 0xde, 0x14, 0xfe, 0x44, + 0x48, 0x02, 0xfe, 0x4c, 0x03, 0x0f, 0x5f, 0xfe, 0xc8, 0x14, 0x8c, + 0x37, 0x38, 0xc7, 0x35, 0x1c, 0xfe, 0xce, 0x47, 0xfe, 0xbd, 0x13, + 0x02, 0x27, 0x29, 0x2d, 0x05, 0x10, 0xfe, 0x78, 0x12, 0x2b, 0x16, + 0x5e, 0x16, 0xb4, 0x29, 0x48, 0x47, 0x4c, 0x48, 0xa3, 0xd9, 0xfe, + 0xbc, 0xf0, 0xfe, 0xde, 0x0e, 0x08, 0x06, 0x16, 0x5e, 0x01, 0xfe, + 0xe6, 0x16, 0x04, 0xfe, 0x38, 0x01, 0x2a, 0xfe, 0x3a, 0x01, 0x53, + 0xfe, 0xe2, 0x0e, 0x04, 0xfe, 0x38, 0x01, 0x1a, 0xfe, 0xf0, 0xff, + 0x0d, 0xfe, 0x60, 0x01, 0x04, 0xfe, 0x3a, 0x01, 0x0d, 0xfe, 0x62, + 0x01, 0x20, 0x06, 0x16, 0x48, 0xfe, 0x04, 0xec, 0x2d, 0x08, 0x2d, + 0x09, 0x3e, 0x1c, 0x01, 0x45, 0x82, 0xfe, 0x05, 0xf6, 0xfe, 0x34, + 0x01, 0x01, 0xfe, 0x56, 0x17, 0x11, 0x48, 0xd2, 0x08, 0x06, 0x03, + 0x2b, 0x03, 0x29, 0x5e, 0xfe, 0xf7, 0x12, 0x29, 0xb4, 0x72, 0x16, + 0xb4, 0x05, 0x84, 0xfe, 0x93, 0x13, 0xfe, 0x24, 0x1c, 0x17, 0x18, + 0x4c, 0xfe, 0x9b, 0x00, 0xe5, 0xfe, 0xd9, 0x10, 0x9c, 0xfe, 0x03, + 0xdc, 0xfe, 0x73, 0x57, 0xfe, 0x80, 0x5d, 0x03, 0x9c, 0xfe, 0x03, + 0xdc, 0xfe, 0x5b, 0x57, 0xfe, 0x80, 0x5d, 0x03, 0xfe, 0x03, 0x57, + 0x9c, 0x2b, 0xfe, 0x00, 0xcc, 0x03, 0xfe, 0x03, 0x57, 0x9c, 0x80, + 0x03, 0x01, 0xfe, 0x8e, 0x17, 0x40, 0x05, 0x48, 0xfe, 0x0a, 0x13, + 0x08, 0x1e, 0x09, 0x52, 0xdd, 0x01, 0x9f, 0x01, 0xa1, 0x08, 0x3f, + 0x09, 0xa2, 0x01, 0x45, 0x11, 0xfe, 0xe9, 0x00, 0x0a, 0x07, 0x8f, + 0xfe, 0x52, 0x13, 0x01, 0xfe, 0x18, 0x17, 0xfe, 0x1e, 0x1c, 0xfe, + 0x14, 0x90, 0x0d, 0xfe, 0x64, 0x01, 0xfe, 0x16, 0x90, 0x0d, 0xfe, + 0x66, 0x01, 0x0a, 0x07, 0x46, 0xef, 0xfe, 0x03, 0x80, 0x5b, 0x4d, + 0x11, 0x7b, 0x08, 0x2d, 0x09, 0x3e, 0x1c, 0x7a, 0x01, 0x90, 0xfe, + 0x62, 0x08, 0x72, 0x4d, 0x11, 0x7b, 0x08, 0x2d, 0x09, 0x3e, 0x1c, + 0x7a, 0x01, 0x90, 0x6d, 0x31, 0x11, 0x7b, 0x08, 0x2d, 0x09, 0x3e, + 0x1c, 0x7a, 0x01, 0x7e, 0x03, 0xfe, 0x08, 0x1c, 0x04, 0xfe, 0xac, + 0x00, 0xfe, 0x06, 0x58, 0x04, 0xfe, 0xae, 0x00, 0xfe, 0x07, 0x58, + 0x04, 0xfe, 0xb0, 0x00, 0xfe, 0x08, 0x58, 0x04, 0xfe, 0xb2, 0x00, + 0xfe, 0x09, 0x58, 0xfe, 0x0a, 0x1c, 0x20, 0x74, 0x16, 0xfe, 0xb9, + 0x00, 0x2b, 0x0d, 0x5c, 0x0d, 0x56, 0x20, 0x10, 0x16, 0x2d, 0x16, + 0x3e, 0x51, 0xa6, 0xfe, 0x93, 0x00, 0x08, 0x2d, 0x09, 0x3e, 0x1c, + 0x01, 0x7e, 0x82, 0x11, 0x7b, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0, + 0x8a, 0xde, 0x92, 0xfe, 0x14, 0x1c, 0xfe, 0x10, 0x1c, 0xfe, 0x18, + 0x1c, 0x03, 0x1c, 0xfe, 0x0c, 0x14, 0x8c, 0xfe, 0x07, 0xe6, 0x38, + 0xfe, 0xce, 0x47, 0xfe, 0xf5, 0x13, 0x03, 0x01, 0xc2, 0x0f, 0x3f, + 0x01, 0x15, 0x05, 0x10, 0xdb, 0x0f, 0x1e, 0x01, 0x15, 0x05, 0x10, + 0xe2, 0xfe, 0x44, 0x58, 0x4d, 0xfe, 0x01, 0xec, 0xc4, 0xfe, 0x9e, + 0x40, 0xfe, 0x9d, 0xe7, 0x00, 0xfe, 0x9c, 0xe7, 0x1d, 0xa5, 0x31, + 0x01, 0xea, 0xfe, 0xc9, 0x10, 0x03, 0x2e, 0x86, 0x76, 0x24, 0x23, + 0xba, 0x05, 0x1d, 0xfe, 0x48, 0x12, 0x05, 0x0b, 0xfe, 0x4c, 0x12, + 0x05, 0x18, 0xfe, 0x30, 0x12, 0x05, 0xd4, 0x19, 0xfe, 0xd4, 0x11, + 0x05, 0xfe, 0x23, 0x00, 0x19, 0xfe, 0xe0, 0x11, 0x05, 0x06, 0x19, + 0xfe, 0x3e, 0x12, 0x05, 0x22, 0xfe, 0x12, 0x12, 0x05, 0x00, 0x19, + 0x26, 0x17, 0xd4, 0x01, 0x3b, 0xce, 0x3a, 0x01, 0x0c, 0x85, 0x55, + 0x03, 0x3a, 0x11, 0xfe, 0xcc, 0x00, 0x02, 0x27, 0x3a, 0x40, 0x05, + 0xcb, 0xfe, 0xe3, 0x13, 0x36, 0x3c, 0x21, 0x3d, 0x53, 0xfe, 0x92, + 0x11, 0x0a, 0x07, 0x60, 0xfe, 0x72, 0x12, 0x83, 0x30, 0x5a, 0x42, + 0x95, 0xca, 0x98, 0xfe, 0x5c, 0x11, 0x29, 0x68, 0xfe, 0x26, 0x13, + 0x04, 0xb5, 0x2a, 0x93, 0x53, 0xfe, 0xb2, 0x0d, 0x0d, 0x66, 0x12, + 0x67, 0x2b, 0x0d, 0xb5, 0x0d, 0x93, 0x01, 0xc5, 0x20, 0x74, 0x5b, + 0x16, 0x68, 0x01, 0xfe, 0xbe, 0x13, 0x83, 0x30, 0x5a, 0x42, 0xfe, + 0x04, 0x55, 0xfe, 0xa5, 0x55, 0xfe, 0x04, 0xfa, 0x30, 0xfe, 0x05, + 0xfa, 0x42, 0xfe, 0x91, 0x10, 0x04, 0x43, 0x2a, 0x44, 0xfe, 0x40, + 0x56, 0xfe, 0xe1, 0x56, 0x0d, 0x43, 0x12, 0x44, 0xad, 0x83, 0x30, + 0x5a, 0x42, 0x95, 0xca, 0x04, 0x64, 0x2a, 0x65, 0xfe, 0x00, 0x56, + 0xfe, 0xa1, 0x56, 0x0d, 0x64, 0x12, 0x65, 0x0a, 0x07, 0x60, 0xfe, + 0x1e, 0x12, 0x29, 0x68, 0xfe, 0x1f, 0x40, 0x04, 0x66, 0x2a, 0x67, + 0xfe, 0x2c, 0x50, 0xfe, 0xae, 0x50, 0x04, 0x43, 0x2a, 0x44, 0xfe, + 0x34, 0x50, 0xfe, 0xb6, 0x50, 0x04, 0x64, 0x2a, 0x65, 0xfe, 0x08, + 0x50, 0xfe, 0x8a, 0x50, 0x04, 0x3c, 0x2a, 0x3d, 0xfe, 0x28, 0x50, + 0xfe, 0xaa, 0x50, 0x02, 0xa0, 0x20, 0x06, 0x16, 0xfc, 0x02, 0x7f, + 0x3a, 0x01, 0x0c, 0x1f, 0x57, 0x24, 0x23, 0xba, 0x05, 0x06, 0x28, + 0x57, 0x40, 0x05, 0xcb, 0x28, 0x7f, 0x01, 0xfe, 0x9c, 0x13, 0x1a, + 0x59, 0x19, 0x57, 0x0a, 0x07, 0x0b, 0xe4, 0x36, 0x3c, 0x21, 0x3d, + 0xfe, 0x0a, 0x55, 0x35, 0xfe, 0x8b, 0x55, 0x4e, 0x3c, 0x70, 0x3d, + 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0x02, 0x7f, 0xdf, 0xfe, 0x0a, + 0x45, 0xfe, 0x19, 0x41, 0x02, 0x7f, 0x3a, 0x01, 0x0c, 0x1f, 0xfe, + 0xd6, 0x10, 0x24, 0x23, 0xfe, 0xe9, 0x09, 0x61, 0x18, 0xfe, 0x94, + 0x12, 0x61, 0x0b, 0x4f, 0x02, 0x57, 0x2f, 0xfe, 0x5e, 0x12, 0x1b, + 0x32, 0x1f, 0xfe, 0xd6, 0x10, 0x24, 0x23, 0x9a, 0x05, 0x18, 0x28, + 0x57, 0x01, 0x0c, 0x1f, 0xfe, 0xd6, 0x10, 0x24, 0x23, 0xfe, 0xe8, + 0x09, 0x51, 0x04, 0xfe, 0x9c, 0x00, 0x2c, 0x35, 0xfe, 0xbb, 0x45, + 0x61, 0x00, 0x50, 0x37, 0x06, 0xa6, 0x59, 0xfe, 0xc0, 0x14, 0xfe, + 0xf8, 0x14, 0xb3, 0x40, 0x05, 0xc9, 0xfe, 0x16, 0x13, 0x04, 0xfe, + 0x9e, 0x00, 0x2c, 0xd6, 0x04, 0x56, 0x2c, 0x35, 0x63, 0x02, 0x7f, + 0xfe, 0xc0, 0x5d, 0xfe, 0xe4, 0x14, 0xfe, 0x03, 0x17, 0x04, 0x5c, + 0xc3, 0x0d, 0x5c, 0x63, 0x3a, 0x01, 0x0c, 0x25, 0xa0, 0x01, 0xfe, + 0x06, 0x15, 0x02, 0xa0, 0x2f, 0xfe, 0xe8, 0x12, 0x1b, 0x32, 0x1f, + 0x57, 0x24, 0x23, 0x9a, 0x05, 0x06, 0x28, 0x57, 0xfe, 0xf6, 0x14, + 0xfe, 0x42, 0x58, 0xfe, 0x70, 0x14, 0xfe, 0x92, 0x14, 0xb3, 0xfe, + 0x4a, 0xf4, 0x0b, 0x19, 0x57, 0xfe, 0x4a, 0xf4, 0x06, 0xd8, 0x40, + 0x05, 0xc9, 0xd1, 0x02, 0x7f, 0x04, 0x56, 0xc3, 0x0d, 0x56, 0x63, + 0x3a, 0x01, 0x0c, 0x25, 0xa0, 0x01, 0xfe, 0x34, 0x15, 0x02, 0xa0, + 0x25, 0xfe, 0x50, 0x13, 0x78, 0xf9, 0x78, 0x03, 0x34, 0xfe, 0x4c, + 0x13, 0x73, 0xfe, 0x4c, 0x13, 0x63, 0x3a, 0x01, 0x0c, 0xfe, 0xe3, + 0x10, 0x08, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x6e, 0x81, 0x1a, 0xfe, + 0xff, 0x7f, 0xfe, 0x30, 0x56, 0xfe, 0x00, 0x5c, 0x03, 0x08, 0x6c, + 0xff, 0x02, 0x00, 0x57, 0x6e, 0x81, 0x1a, 0x59, 0xfe, 0x30, 0x56, + 0xfe, 0x00, 0x5c, 0x03, 0x08, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x6e, + 0x81, 0x03, 0x08, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x6e, 0x81, 0xfe, + 0x0b, 0x58, 0x03, 0x0f, 0x5c, 0x01, 0x8e, 0x0f, 0x56, 0x01, 0x8e, + 0x03, 0xd0, 0x1a, 0x10, 0xff, 0x03, 0x00, 0x54, 0xfe, 0x00, 0xf4, + 0x22, 0x6e, 0xfe, 0x00, 0x7d, 0xfe, 0x01, 0x7d, 0xfe, 0x02, 0x7d, + 0xfe, 0x03, 0x7c, 0x6d, 0x31, 0x0d, 0x64, 0x12, 0x65, 0x4e, 0x43, + 0x70, 0x44, 0x03, 0xfe, 0x62, 0x18, 0xfe, 0x82, 0x5a, 0xfe, 0xe1, + 0x1a, 0xbf, 0xfe, 0x02, 0x58, 0x03, 0x01, 0xfe, 0x7e, 0x19, 0xfe, + 0x42, 0x48, 0x6a, 0x51, 0x9e, 0x01, 0x0c, 0x1f, 0xfe, 0xfe, 0x14, + 0x24, 0x23, 0xfe, 0xe9, 0x09, 0xfe, 0xc1, 0x59, 0x01, 0x0c, 0x1f, + 0xfe, 0xfe, 0x14, 0x24, 0x23, 0xfe, 0xe8, 0x0a, 0x04, 0xfe, 0x9e, + 0x00, 0x2c, 0xfe, 0xc4, 0x12, 0x2b, 0xb8, 0x1d, 0xe4, 0x61, 0xd5, + 0x79, 0xfe, 0x4c, 0x14, 0x4f, 0x08, 0x06, 0x09, 0xd5, 0xa6, 0xfe, + 0x00, 0x10, 0xfe, 0x78, 0x10, 0xff, 0x02, 0x83, 0x55, 0x8a, 0xff, + 0x02, 0x83, 0x55, 0xb8, 0x18, 0xfe, 0x12, 0x13, 0x62, 0xfe, 0x30, + 0x00, 0x98, 0xfe, 0xa6, 0x14, 0x09, 0x8b, 0x08, 0x06, 0xfe, 0x56, + 0x10, 0xb8, 0x0b, 0xfe, 0x16, 0x13, 0x62, 0xfe, 0x64, 0x00, 0x98, + 0xfe, 0xa6, 0x14, 0x0f, 0xfe, 0x64, 0x00, 0x09, 0xb1, 0x08, 0x06, + 0xfe, 0x28, 0x10, 0xb8, 0x06, 0xfe, 0x60, 0x13, 0x62, 0xfe, 0xc8, + 0x00, 0x98, 0xfe, 0xa6, 0x14, 0x0f, 0xfe, 0xc8, 0x00, 0x09, 0x5e, + 0x08, 0x06, 0xad, 0x62, 0xfe, 0x90, 0x01, 0x99, 0xfe, 0xb2, 0x14, + 0x9e, 0xb0, 0xfe, 0x43, 0xf4, 0xb4, 0xfe, 0x56, 0xf0, 0xfe, 0xc4, + 0x14, 0xfe, 0x04, 0xf4, 0x6c, 0xfe, 0x43, 0xf4, 0xb1, 0xfe, 0xf3, + 0x10, 0xb7, 0x01, 0xfe, 0x8e, 0x13, 0x1a, 0x59, 0xaf, 0xfe, 0x00, + 0x17, 0xfe, 0x4d, 0xe4, 0x74, 0x99, 0xfe, 0xf8, 0x14, 0xa8, 0x74, + 0xfe, 0x14, 0x10, 0xfe, 0x00, 0x17, 0xfe, 0x4d, 0xe4, 0xf1, 0x99, + 0xfe, 0xf8, 0x14, 0xa8, 0xf1, 0xa4, 0x51, 0x9e, 0x08, 0x06, 0xfe, + 0xb4, 0x56, 0xfe, 0xc3, 0x58, 0x03, 0x51, 0x08, 0x0b, 0x03, 0x14, + 0x06, 0x01, 0x0c, 0x25, 0xec, 0x14, 0x0b, 0x01, 0x0c, 0x25, 0xec, + 0x14, 0x18, 0x01, 0x0c, 0x25, 0xec, 0x78, 0xfe, 0x89, 0x49, 0x01, + 0x0c, 0x03, 0x14, 0x06, 0x01, 0x0c, 0x25, 0xbc, 0x14, 0x18, 0x01, + 0x0c, 0x25, 0xbc, 0x14, 0x06, 0x01, 0x0c, 0x25, 0xbc, 0xfe, 0x89, + 0x49, 0x01, 0x0c, 0x25, 0xbc, 0x78, 0xfe, 0x89, 0x4a, 0x01, 0x0c, + 0x03, 0x51, 0x03, 0x29, 0xe8, 0x05, 0x06, 0x3b, 0xb6, 0x16, 0xe8, + 0xfe, 0x49, 0xf4, 0x00, 0x4f, 0x78, 0xce, 0x63, 0xfe, 0x01, 0xec, + 0xfe, 0x27, 0x01, 0xf9, 0x01, 0x0c, 0x40, 0x05, 0xfe, 0xe3, 0x00, + 0xfe, 0x20, 0x13, 0x1f, 0xfe, 0xb6, 0x15, 0x2b, 0x16, 0xfc, 0x01, + 0x55, 0x29, 0xfc, 0x05, 0x06, 0x50, 0x0a, 0x41, 0x06, 0x39, 0x03, + 0x0d, 0x5d, 0x12, 0x91, 0xfe, 0x43, 0x58, 0x01, 0x15, 0x05, 0x10, + 0xfe, 0x1e, 0x12, 0x4a, 0xf3, 0x96, 0x01, 0x49, 0xfe, 0x90, 0x4d, + 0xe6, 0x10, 0xfe, 0xc5, 0x59, 0x01, 0x49, 0xfe, 0x8d, 0x56, 0xbf, + 0x4a, 0x03, 0x4a, 0x21, 0x91, 0x01, 0x15, 0x4a, 0x96, 0x01, 0x49, + 0xeb, 0x10, 0xe6, 0x10, 0x21, 0x5d, 0x62, 0x1e, 0x89, 0x0f, 0x5f, + 0x01, 0xaa, 0x03, 0x0d, 0x5d, 0x12, 0x91, 0xfe, 0xc3, 0x58, 0x01, + 0x15, 0x05, 0x10, 0xfe, 0x1a, 0x12, 0x4a, 0xf3, 0x96, 0x01, 0x49, + 0xeb, 0x10, 0xfe, 0x80, 0x4d, 0xfe, 0xc5, 0x59, 0x01, 0x49, 0x4a, + 0x03, 0x4a, 0x21, 0x5d, 0x01, 0x15, 0x4a, 0x96, 0x01, 0x49, 0xeb, + 0x10, 0xe6, 0x10, 0x21, 0x5d, 0x62, 0x1e, 0x89, 0x0f, 0x5f, 0x01, + 0xaa, 0x03, 0x0d, 0x5d, 0x12, 0x91, 0xfe, 0x43, 0x58, 0x01, 0x15, + 0xfe, 0x42, 0x48, 0x96, 0x01, 0x49, 0xfe, 0xc0, 0x5a, 0xb7, 0xfe, + 0x00, 0xcd, 0xfe, 0x01, 0xcc, 0xfe, 0x4a, 0x46, 0xe4, 0x9c, 0x80, + 0x05, 0x10, 0xfe, 0x2e, 0x13, 0x5a, 0x5d, 0xfe, 0x4d, 0xf4, 0x1e, + 0xfe, 0x1c, 0x13, 0x0f, 0x5f, 0x01, 0x8e, 0xb0, 0xfe, 0x40, 0x4c, + 0xfe, 0xc5, 0x58, 0x01, 0x49, 0xfe, 0x00, 0x07, 0x80, 0x05, 0x10, + 0x89, 0x5a, 0x91, 0xfe, 0x05, 0x57, 0xfe, 0x08, 0x10, 0xfe, 0x45, + 0x58, 0x01, 0x49, 0xfe, 0x8d, 0x56, 0xbf, 0xfe, 0x80, 0x4c, 0xfe, + 0x05, 0x17, 0x03, 0x09, 0x10, 0x77, 0x6f, 0xfe, 0x60, 0x01, 0xfe, + 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x24, 0x1c, 0xe3, 0x38, 0x9d, + 0xfe, 0xfa, 0x16, 0x01, 0xfe, 0x08, 0x18, 0xd9, 0x8d, 0x38, 0x6f, + 0xfe, 0x2c, 0x01, 0xfe, 0x2f, 0x19, 0x03, 0xc0, 0x28, 0xfe, 0xea, + 0x16, 0xfe, 0xe2, 0x10, 0x09, 0x10, 0x77, 0x04, 0xfe, 0x64, 0x01, + 0xfe, 0x00, 0xf4, 0x22, 0xfe, 0x18, 0x58, 0x04, 0xfe, 0x66, 0x01, + 0xfe, 0x19, 0x58, 0x8d, 0x22, 0xfe, 0x3c, 0x90, 0xfe, 0x30, 0xf4, + 0x06, 0xfe, 0x3c, 0x50, 0x6f, 0xfe, 0x38, 0x00, 0xfe, 0x0f, 0x79, + 0xfe, 0x1c, 0xf7, 0x22, 0x9d, 0xfe, 0x44, 0x17, 0xfe, 0xbe, 0x14, + 0x35, 0x03, 0xc0, 0x28, 0xfe, 0x1c, 0x17, 0xfe, 0xa4, 0x10, 0x09, + 0x10, 0x77, 0xbf, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xdf, 0xe3, 0x30, + 0x9d, 0xfe, 0x66, 0x17, 0xfe, 0x9c, 0x14, 0xfe, 0x18, 0x13, 0x8d, + 0x30, 0x6f, 0x1d, 0xfe, 0xaf, 0x19, 0xfe, 0x98, 0xe7, 0x00, 0xa7, + 0x07, 0xfe, 0x7f, 0x00, 0xfe, 0x05, 0x40, 0x03, 0xc0, 0x28, 0xfe, + 0x5a, 0x17, 0xfe, 0x6c, 0x10, 0x09, 0x10, 0x77, 0xfe, 0x30, 0xbc, + 0xfe, 0xb2, 0xbc, 0x8d, 0xe1, 0x6f, 0x1d, 0xfe, 0x0f, 0x79, 0xfe, + 0x1c, 0xf7, 0xe1, 0x9d, 0xfe, 0xa6, 0x17, 0xfe, 0x5c, 0x14, 0x35, + 0x03, 0xc0, 0x28, 0xfe, 0x92, 0x17, 0xfe, 0x42, 0x10, 0xfe, 0x02, + 0xf6, 0x10, 0x77, 0xfe, 0x18, 0xfe, 0x66, 0xfe, 0x19, 0xfe, 0x67, + 0xd0, 0xe3, 0x46, 0x9d, 0xfe, 0xcc, 0x17, 0xfe, 0x36, 0x14, 0xfe, + 0x1c, 0x13, 0x8d, 0x46, 0x47, 0xfe, 0x83, 0x58, 0xfe, 0xaf, 0x19, + 0xfe, 0x80, 0xe7, 0x10, 0xfe, 0x81, 0xe7, 0x10, 0x11, 0xfe, 0xdd, + 0x00, 0x6d, 0x31, 0x03, 0x6d, 0x31, 0xfe, 0x12, 0x45, 0x28, 0xfe, + 0xbc, 0x17, 0x17, 0x06, 0x4c, 0xfe, 0x9b, 0x00, 0xe5, 0x02, 0x27, + 0xfe, 0x39, 0xf0, 0xfe, 0x10, 0x18, 0x2b, 0x03, 0xfe, 0x7e, 0x18, + 0x1a, 0x18, 0x87, 0x08, 0x0e, 0x03, 0x77, 0x04, 0xe7, 0x1a, 0x06, + 0xfe, 0xef, 0x12, 0xfe, 0xe1, 0x10, 0x1c, 0x0f, 0x1e, 0x01, 0x15, + 0x05, 0x10, 0x50, 0x4d, 0xfe, 0x78, 0x14, 0xfe, 0x34, 0x12, 0x59, + 0x8c, 0x37, 0x38, 0xc7, 0xfe, 0xe9, 0x13, 0x1c, 0x0f, 0x3f, 0x01, + 0x15, 0x05, 0x10, 0x50, 0x4d, 0xfe, 0x56, 0x14, 0xe9, 0x59, 0x8c, + 0x37, 0x38, 0xc7, 0xfe, 0xe9, 0x13, 0x09, 0x0b, 0x03, 0xfe, 0x9c, + 0xe7, 0x0b, 0x13, 0xfe, 0x15, 0x00, 0x7a, 0xa5, 0x31, 0x01, 0xea, + 0x09, 0x06, 0x03, 0x0a, 0x41, 0x38, 0x39, 0x08, 0x3f, 0x09, 0xa2, + 0x01, 0x45, 0x11, 0x48, 0x08, 0x1e, 0x09, 0x52, 0x01, 0x7e, 0x09, + 0x06, 0x03, 0xfe, 0x38, 0x90, 0xfe, 0xba, 0x90, 0x36, 0xfe, 0xa8, + 0x00, 0x21, 0x7b, 0xfe, 0x48, 0x55, 0x35, 0xfe, 0xc9, 0x55, 0x03, + 0x29, 0xc6, 0x5b, 0x16, 0xc6, 0x03, 0x0f, 0xc8, 0x01, 0x15, 0xf2, + 0x0f, 0x7d, 0x01, 0x15, 0xfe, 0x49, 0x44, 0x28, 0xfe, 0x06, 0x19, + 0x0f, 0x1e, 0x01, 0x15, 0x05, 0x10, 0x50, 0x0f, 0x5f, 0x01, 0xaa, + 0x0f, 0x7d, 0x01, 0x15, 0x5b, 0x80, 0x03, 0xfe, 0x40, 0x5e, 0xfe, + 0xe2, 0x08, 0xfe, 0xc0, 0x4c, 0x29, 0x3e, 0x05, 0x10, 0xfe, 0x52, + 0x12, 0x4d, 0x05, 0x00, 0xfe, 0x18, 0x12, 0xfe, 0xe1, 0x18, 0xfe, + 0x19, 0xf4, 0xfe, 0x7f, 0x00, 0xaf, 0xfe, 0xe2, 0x08, 0x5b, 0x4d, + 0x40, 0x05, 0x7b, 0xab, 0xfe, 0x82, 0x48, 0xfe, 0x01, 0x80, 0xfe, + 0xd7, 0x10, 0xfe, 0xc4, 0x48, 0x08, 0x2d, 0x09, 0x3e, 0xfe, 0x40, + 0x5f, 0x1c, 0x01, 0x45, 0x11, 0xfe, 0xdd, 0x00, 0xfe, 0x14, 0x46, + 0x08, 0x2d, 0x09, 0x3e, 0x01, 0x45, 0x11, 0xfe, 0xdd, 0x00, 0xfe, + 0x40, 0x4a, 0x72, 0xfe, 0x06, 0x17, 0xfe, 0x01, 0x07, 0xfe, 0x82, + 0x48, 0xfe, 0x04, 0x17, 0x03, 0xf5, 0x18, 0x79, 0xfe, 0x8e, 0x19, + 0x04, 0xfe, 0x90, 0x00, 0xfe, 0x3a, 0x45, 0xfe, 0x2c, 0x10, 0xf5, + 0xd4, 0x79, 0xfe, 0xa0, 0x19, 0x04, 0xfe, 0x92, 0x00, 0xcf, 0x1d, + 0xe0, 0xf5, 0xfe, 0x0b, 0x00, 0x79, 0xfe, 0xb2, 0x19, 0x04, 0xfe, + 0x94, 0x00, 0xcf, 0x22, 0xfe, 0x08, 0x10, 0x04, 0xfe, 0x96, 0x00, + 0xcf, 0x8b, 0xfe, 0x4e, 0x45, 0xd8, 0xfe, 0x0a, 0x45, 0xff, 0x04, + 0x68, 0x54, 0xfe, 0xf1, 0x10, 0x1a, 0x74, 0xfe, 0x08, 0x1c, 0xfe, + 0x67, 0x19, 0xfe, 0x0a, 0x1c, 0xfe, 0x1a, 0xf4, 0xfe, 0x00, 0x04, + 0xd8, 0xfe, 0x48, 0xf4, 0x18, 0x99, 0xfe, 0xe6, 0x19, 0x08, 0x18, + 0x03, 0x05, 0x84, 0xfe, 0x5a, 0xf0, 0xfe, 0xf6, 0x19, 0x20, 0xfe, + 0x09, 0x00, 0xfe, 0x34, 0x10, 0x05, 0x1d, 0xfe, 0x5a, 0xf0, 0xfe, + 0x04, 0x1a, 0x20, 0xd5, 0xfe, 0x26, 0x10, 0x05, 0x18, 0x87, 0x20, + 0x8b, 0xe0, 0x05, 0x0b, 0x87, 0x20, 0xb1, 0xfe, 0x0e, 0x10, 0x05, + 0x06, 0x87, 0x20, 0x5e, 0xce, 0xb6, 0x03, 0x17, 0xfe, 0x09, 0x00, + 0x01, 0x3b, 0x2f, 0xfe, 0x34, 0x1a, 0x04, 0x76, 0xb7, 0x03, 0x1b, + 0xfe, 0x54, 0x1a, 0xfe, 0x14, 0xf0, 0x0c, 0x2f, 0xfe, 0x48, 0x1a, + 0x1b, 0xfe, 0x54, 0x1a, 0xfe, 0x82, 0xf0, 0xfe, 0x4c, 0x1a, 0x03, + 0xff, 0x15, 0x00, 0x00, +}; +const struct adw_mcode adw_asc38C0800_mcode_data = +{ + adw_asc38C0800_mcode, + 0x053503A5, + sizeof(adw_asc38C0800_mcode) +}; diff --git a/sys/dev/advansys/adwmcode.h b/sys/dev/advansys/adwmcode.h index 99d2d6fa8c5c..221845489867 100644 --- a/sys/dev/advansys/adwmcode.h +++ b/sys/dev/advansys/adwmcode.h @@ -5,7 +5,7 @@ * * Obtained from: * - * Copyright (c) 1995-1998 Advanced System Products, Inc. + * Copyright (c) 1995-1999 Advanced System Products, Inc. * All Rights Reserved. * * Redistribution and use in source and binary forms, with or without @@ -17,9 +17,15 @@ #ifndef _ADMCODE_H_ #define _ADMCODE_H_ -extern u_int16_t adw_mcode[]; -extern u_int16_t adw_mcode_size; -extern u_int32_t adw_mcode_chksum; +struct adw_mcode +{ + const u_int8_t* mcode_buf; + const u_int32_t mcode_chksum; + const u_int16_t mcode_size; +}; + +extern const struct adw_mcode adw_asc3550_mcode_data; +extern const struct adw_mcode adw_asc38C0800_mcode_data; /* * Fixed LRAM locations of microcode operating variables. @@ -27,21 +33,33 @@ extern u_int32_t adw_mcode_chksum; #define ADW_MC_CODE_BEGIN_ADDR 0x0028 /* microcode start address */ #define ADW_MC_CODE_END_ADDR 0x002A /* microcode end address */ #define ADW_MC_CODE_CHK_SUM 0x002C /* microcode code checksum */ -#define ADW_MC_STACK_BEGIN 0x002E /* microcode stack begin */ -#define ADW_MC_STACK_END 0x0030 /* microcode stack end */ #define ADW_MC_VERSION_DATE 0x0038 /* microcode version */ #define ADW_MC_VERSION_NUM 0x003A /* microcode number */ #define ADW_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */ #define ADW_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */ -#define ADW_MC_HALTCODE 0x0094 /* microcode halt code */ -#define ADW_MC_CALLERPC 0x0096 /* microcode halt caller PC */ -#define ADW_MC_ADAPTER_SCSI_ID 0x0098 /* one ID byte + reserved */ -#define ADW_MC_ULTRA_ABLE 0x009C +#define ADW_MC_BIOS_SIGNATURE 0x0058 /* BIOS Signature 0x55AA */ +#define ADW_MC_BIOS_VERSION 0x005A /* BIOS Version (2 Bytes) */ +#define ADW_MC_SDTR_SPEED1 0x0090 /* SDTR Speed for TID 0-3 */ +#define ADW_MC_SDTR_SPEED2 0x0092 /* SDTR Speed for TID 4-7 */ +#define ADW_MC_SDTR_SPEED3 0x0094 /* SDTR Speed for TID 8-11 */ +#define ADW_MC_SDTR_SPEED4 0x0096 /* SDTR Speed for TID 12-15 */ +#define ADW_MC_CHIP_TYPE 0x009A +#define ADW_MC_INTRB_CODE 0x009B +#define ADW_ASYNC_RDMA_FAILURE 0x01 /* Fatal RDMA failure. */ +#define ADW_ASYNC_SCSI_BUS_RESET_DET 0x02 /* Detected Bus Reset. */ +#define ADW_ASYNC_CARRIER_READY_FAILURE 0x03 /* Carrier Ready failure.*/ +#define ADW_ASYNC_HOST_SCSI_BUS_RESET 0x80 /* + * Host Initiated + * SCSI Bus Reset. + */ +#define ADW_MC_WDTR_ABLE_BIOS_31 0x0120 +#define ADW_MC_WDTR_ABLE 0x009C #define ADW_MC_SDTR_ABLE 0x009E #define ADW_MC_TAGQNG_ABLE 0x00A0 #define ADW_MC_DISC_ENABLE 0x00A2 +#define ADW_MC_IDLE_CMD_STATUS 0x00A4 #define ADW_MC_IDLE_CMD 0x00A6 -#define ADW_MC_IDLE_PARA_STAT 0x00A8 +#define ADW_MC_IDLE_CMD_PARAMETER 0x00A8 #define ADW_MC_DEFAULT_SCSI_CFG0 0x00AC #define ADW_MC_DEFAULT_SCSI_CFG1 0x00AE #define ADW_MC_DEFAULT_MEM_CFG 0x00B0 @@ -53,56 +71,45 @@ extern u_int32_t adw_mcode_chksum; #define ADW_MC_NUMBER_OF_MAX_CMD 0x00D0 #define ADW_MC_DEVICE_HSHK_CFG_TABLE 0x0100 #define ADW_HSHK_CFG_WIDE_XFR 0x8000 -#define ADW_HSHK_CFG_RATE_MASK 0x0F00 +#define ADW_HSHK_CFG_RATE_MASK 0x7F00 #define ADW_HSHK_CFG_RATE_SHIFT 8 -#define ADW_HSHK_CFG_PERIOD_FACTOR(cfg_val) \ -((((((cfg_val) & ADW_HSHK_CFG_RATE_MASK) >> ADW_HSHK_CFG_RATE_SHIFT) \ - * 25) + 50)/4) #define ADW_HSHK_CFG_OFFSET 0x001F -#define ADW_MC_WDTR_ABLE 0x0120 /* Wide Transfer TID bitmask. */ #define ADW_MC_CONTROL_FLAG 0x0122 /* Microcode control flag. */ #define ADW_MC_CONTROL_IGN_PERR 0x0001 /* Ignore DMA Parity Errors */ #define ADW_MC_WDTR_DONE 0x0124 -#define ADW_MC_HOST_NEXT_READY 0x0128 /* Host Next Ready RQL Entry. */ -#define ADW_MC_HOST_NEXT_DONE 0x0129 /* Host Next Done RQL Entry. */ +#define ADW_MC_CAM_MODE_MASK 0x015E /* CAM mode TID bitmask. */ +#define ADW_MC_ICQ 0x0160 +#define ADW_MC_IRQ 0x0164 + +/* ADW_SCSI_REQ_Q 'cntl' field values */ +#define ADW_QC_DATA_CHECK 0x01 /* Require ADW_QC_DATA_OUT set or clear. */ +#define ADW_QC_DATA_OUT 0x02 /* Data out DMA transfer. */ +#define ADW_QC_START_MOTOR 0x04 /* Send auto-start motor before request. */ +#define ADW_QC_NO_OVERRUN 0x08 /* Don't report overrun. */ +#define ADW_QC_FREEZE_TIDQ 0x10 /* Freeze TID queue after request.XXXTBD */ +#define ADW_QSC_NO_DISC 0x01 /* Don't allow disconnect for request. */ +#define ADW_QSC_NO_TAGMSG 0x02 /* Don't allow tag queuing for request. */ +#define ADW_QSC_NO_SYNC 0x04 /* Don't use Synch. transfer on request.*/ +#define ADW_QSC_NO_WIDE 0x08 /* Don't use Wide transfer on request. */ +#define ADW_QSC_REDO_DTR 0x10 /* Renegotiate WDTR/SDTR before request.*/ /* - * LRAM RISC Queue Lists (LRAM addresses 0x1200 - 0x19FF) - * - * Each of the 255 Adv Library/Microcode RISC queue lists or mailboxes - * starting at LRAM address 0x1200 is 8 bytes and has the following - * structure. Only 253 of these are actually used for command queues. + * Note: If a Tag Message is to be sent and neither ADW_QSC_HEAD_TAG or + * ADW_QSC_ORDERED_TAG is set, then a Simple Tag Message (0x20) is used. */ -#define ADW_MC_RISC_Q_LIST_BASE 0x1200 -#define ADW_MC_RISC_Q_LIST_SIZE 0x0008 -#define ADW_MC_RISC_Q_TOTAL_CNT 0x00FF /* Num. queue slots in LRAM. */ -#define ADW_MC_RISC_Q_FIRST 0x0001 -#define ADW_MC_RISC_Q_LAST 0x00FF +#define ADW_QSC_HEAD_TAG 0x40 /* Use Head Tag Message (0x21). */ +#define ADW_QSC_ORDERED_TAG 0x80 /* Use Ordered Tag Message (0x22). */ -/* RISC Queue List structure - 8 bytes */ -#define RQL_FWD 0 /* forward pointer (1 byte) */ -#define RQL_BWD 1 /* backward pointer (1 byte) */ -#define RQL_STATE 2 /* state byte - free, ready, done, aborted (1 byte) */ -#define RQL_TID 3 /* request target id (1 byte) */ -#define RQL_PHYADDR 4 /* request physical pointer (4 bytes) */ - -/* RISC Queue List state values */ -#define ADW_MC_QS_FREE 0x00 -#define ADW_MC_QS_READY 0x01 -#define ADW_MC_QS_DONE 0x40 -#define ADW_MC_QS_ABORTED 0x80 - -/* RISC Queue List pointer values */ -#define ADW_MC_NULL_Q 0x00 -#define ADW_MC_BIOS_Q 0xFF - -/* ADW_SCSI_REQ_Q 'cntl' field values */ -#define ADW_MC_QC_START_MOTOR 0x02 /* Issue start motor. */ -#define ADW_MC_QC_NO_OVERRUN 0x04 /* Don't report overrun. */ -#define ADW_MC_QC_FIRST_DMA 0x08 /* Internal microcode flag. */ -#define ADW_MC_QC_ABORTED 0x10 /* Request aborted by host. */ -#define ADW_MC_QC_REQ_SENSE 0x20 /* Auto-Request Sense. */ -#define ADW_MC_QC_DOS_REQ 0x80 /* Request issued by DOS. */ +struct adw_carrier +{ + u_int32_t carr_offset; /* Carrier byte offset into our array */ + u_int32_t carr_ba; /* Carrier Bus Address */ + u_int32_t areq_ba; /* SCSI Req Queue Bus Address */ + u_int32_t next_ba; +#define ADW_RQ_DONE 0x00000001 +#define ADW_CQ_STOPPER 0x00000000 +#define ADW_NEXT_BA_MASK 0xFFFFFFF0 +}; /* * Microcode idle loop commands @@ -114,7 +121,9 @@ typedef enum { ADW_IDLE_CMD_SEND_INT = 0x0004, ADW_IDLE_CMD_ABORT = 0x0008, ADW_IDLE_CMD_DEVICE_RESET = 0x0010, - ADW_IDLE_CMD_SCSI_RESET = 0x0020 + ADW_IDLE_CMD_SCSI_RESET_START = 0x0020, + ADW_IDLE_CMD_SCSI_RESET_END = 0x0040, + ADW_IDLE_CMD_SCSIREQ = 0x0080 } adw_idle_cmd_t; typedef enum { diff --git a/sys/dev/advansys/adwvar.h b/sys/dev/advansys/adwvar.h index 1820b8a68ade..bc2e4839f65c 100644 --- a/sys/dev/advansys/adwvar.h +++ b/sys/dev/advansys/adwvar.h @@ -2,7 +2,7 @@ * Generic driver definitions and exported functions for the Advanced * Systems Inc. Second Generation SCSI controllers * - * Copyright (c) 1998 Justin Gibbs. + * Copyright (c) 1998, 1999, 2000 Justin Gibbs. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -10,7 +10,7 @@ * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions, and the following disclaimer, - * without modification, immediately at the beginning of the file. + * without modification. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. @@ -39,8 +39,8 @@ #include "adw.h" #include -struct adw_softc * adw_alloc(int unit, bus_space_tag_t tag, - bus_space_handle_t bsh); +struct adw_softc * adw_alloc(device_t dev, struct resource *regs, + int regs_type, int regs_id); void adw_map(void *arg, bus_dma_segment_t *segs, int nseg, int error); void adw_free(struct adw_softc *adw); -- cgit v1.3 From 098ca2bda93c701c5331d4e6aace072495b4caaa Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 6 Jan 2005 01:43:34 +0000 Subject: Start each of the license/copyright comments with /*-, minor shuffle of lines --- sys/dev/aac/aac_cam.c | 2 +- sys/dev/acpica/acpi_ec.c | 3 +- sys/dev/acpica/acpi_if.m | 2 +- sys/dev/acpica/acpi_pci.c | 2 +- sys/dev/advansys/adv_eisa.c | 2 +- sys/dev/advansys/adv_isa.c | 2 +- sys/dev/advansys/adv_pci.c | 2 +- sys/dev/advansys/advansys.c | 4 +-- sys/dev/advansys/advansys.h | 2 +- sys/dev/advansys/advlib.c | 4 +-- sys/dev/advansys/advlib.h | 4 +-- sys/dev/advansys/advmcode.c | 2 +- sys/dev/advansys/advmcode.h | 2 +- sys/dev/advansys/adw_pci.c | 2 +- sys/dev/advansys/adwcam.c | 2 +- sys/dev/advansys/adwlib.c | 4 +-- sys/dev/advansys/adwlib.h | 2 +- sys/dev/advansys/adwmcode.c | 2 +- sys/dev/advansys/adwmcode.h | 2 +- sys/dev/advansys/adwvar.h | 2 +- sys/dev/aha/aha.c | 2 +- sys/dev/aha/aha_isa.c | 2 +- sys/dev/aha/ahareg.h | 2 +- sys/dev/ahb/ahb.c | 2 +- sys/dev/ahb/ahbreg.h | 2 +- sys/dev/aic/aic6360reg.h | 2 +- sys/dev/aic7xxx/ahc_eisa.c | 2 +- sys/dev/aic7xxx/ahc_isa.c | 2 +- sys/dev/aic7xxx/ahc_pci.c | 2 +- sys/dev/aic7xxx/ahd_pci.c | 2 +- sys/dev/aic7xxx/aic7770.c | 2 +- sys/dev/aic7xxx/aic79xx.c | 2 +- sys/dev/aic7xxx/aic79xx.h | 2 +- sys/dev/aic7xxx/aic79xx.reg | 2 +- sys/dev/aic7xxx/aic79xx.seq | 2 +- sys/dev/aic7xxx/aic79xx_inline.h | 2 +- sys/dev/aic7xxx/aic79xx_osm.c | 2 +- sys/dev/aic7xxx/aic79xx_osm.h | 2 +- sys/dev/aic7xxx/aic79xx_pci.c | 2 +- sys/dev/aic7xxx/aic7xxx.c | 2 +- sys/dev/aic7xxx/aic7xxx.h | 2 +- sys/dev/aic7xxx/aic7xxx.reg | 2 +- sys/dev/aic7xxx/aic7xxx.seq | 2 +- sys/dev/aic7xxx/aic7xxx_93cx6.c | 2 +- sys/dev/aic7xxx/aic7xxx_93cx6.h | 2 +- sys/dev/aic7xxx/aic7xxx_inline.h | 2 +- sys/dev/aic7xxx/aic7xxx_osm.c | 2 +- sys/dev/aic7xxx/aic7xxx_osm.h | 2 +- sys/dev/aic7xxx/aic7xxx_pci.c | 2 +- sys/dev/aic7xxx/aic_osm_lib.c | 2 +- sys/dev/aic7xxx/aic_osm_lib.h | 2 +- sys/dev/aic7xxx/aicasm/aicasm.c | 2 +- sys/dev/aic7xxx/aicasm/aicasm.h | 2 +- sys/dev/aic7xxx/aicasm/aicasm_gram.y | 2 +- sys/dev/aic7xxx/aicasm/aicasm_insformat.h | 2 +- sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y | 2 +- sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l | 2 +- sys/dev/aic7xxx/aicasm/aicasm_scan.l | 2 +- sys/dev/aic7xxx/aicasm/aicasm_symbol.c | 2 +- sys/dev/aic7xxx/aicasm/aicasm_symbol.h | 2 +- sys/dev/amd/amd.c | 2 +- sys/dev/amd/amd.h | 2 +- sys/dev/amr/amr.c | 2 +- sys/dev/amr/amr_cam.c | 2 +- sys/dev/amr/amr_disk.c | 2 +- sys/dev/amr/amr_pci.c | 2 +- sys/dev/an/if_aironet_ieee.h | 2 +- sys/dev/an/if_an.c | 2 +- sys/dev/an/if_an_isa.c | 2 +- sys/dev/an/if_an_pccard.c | 2 +- sys/dev/an/if_anreg.h | 2 +- sys/dev/ar/if_ar.c | 2 +- sys/dev/ar/if_ar.h | 2 +- sys/dev/ar/if_ar_isa.c | 2 +- sys/dev/ar/if_arregs.h | 2 +- sys/dev/asr/dptalign.h | 2 +- sys/dev/asr/dptsig.h | 2 +- sys/dev/asr/i2oadptr.h | 3 +- sys/dev/asr/i2obscsi.h | 3 +- sys/dev/asr/i2odep.h | 3 +- sys/dev/asr/i2odpt.h | 3 +- sys/dev/asr/i2oexec.h | 3 +- sys/dev/asr/i2omsg.h | 3 +- sys/dev/asr/i2otypes.h | 3 +- sys/dev/asr/i2outil.h | 3 +- sys/dev/asr/osd_defs.h | 2 +- sys/dev/asr/osd_unix.h | 2 +- sys/dev/asr/osd_util.h | 2 +- sys/dev/asr/sys_info.h | 2 +- sys/dev/auxio/auxio.c | 2 +- sys/dev/auxio/auxioreg.h | 2 +- sys/dev/awi/if_awi_pccard.c | 2 +- sys/dev/bfe/if_bfe.c | 6 ++-- sys/dev/bfe/if_bfereg.h | 5 +-- sys/dev/bge/if_bge.c | 2 +- sys/dev/bge/if_bgereg.h | 2 +- sys/dev/bktr/bktr_audio.h | 2 +- sys/dev/bktr/bktr_card.h | 2 +- sys/dev/bktr/bktr_core.h | 2 +- sys/dev/bktr/bktr_mem.c | 2 +- sys/dev/bktr/bktr_mem.h | 2 +- sys/dev/bktr/bktr_os.h | 2 +- sys/dev/bktr/bktr_reg.h | 2 +- sys/dev/bktr/bktr_tuner.h | 2 +- sys/dev/bktr/ioctl_meteor.h | 2 +- sys/dev/buslogic/bt.c | 2 +- sys/dev/buslogic/bt_eisa.c | 2 +- sys/dev/buslogic/bt_isa.c | 2 +- sys/dev/buslogic/btreg.h | 2 +- sys/dev/cardbus/cardbus.c | 2 +- sys/dev/cardbus/cardbus_cis.c | 2 +- sys/dev/cardbus/cardbus_cis.h | 2 +- sys/dev/cardbus/cardbusreg.h | 2 +- sys/dev/cardbus/cardbusvar.h | 2 +- sys/dev/cnw/if_cnwioctl.h | 2 +- sys/dev/cp/cpddk.c | 2 +- sys/dev/cp/cpddk.h | 2 +- sys/dev/cp/if_cp.c | 2 +- sys/dev/cp/ng_cp.h | 2 +- sys/dev/cs/if_cs.c | 2 +- sys/dev/cs/if_cs_isa.c | 2 +- sys/dev/cs/if_cs_pccard.c | 2 +- sys/dev/cs/if_csreg.h | 2 +- sys/dev/cs/if_csvar.h | 2 +- sys/dev/ct/bshw_machdep.c | 2 +- sys/dev/ct/bshwvar.h | 2 +- sys/dev/ct/ct.c | 2 +- sys/dev/ct/ct_isa.c | 2 +- sys/dev/ct/ct_machdep.h | 2 +- sys/dev/ct/ctvar.h | 2 +- sys/dev/ctau/am8530.h | 2 +- sys/dev/ctau/ctau.c | 2 +- sys/dev/ctau/ctaureg.h | 2 +- sys/dev/ctau/ctddk.c | 2 +- sys/dev/ctau/ctddk.h | 2 +- sys/dev/ctau/ds2153.h | 2 +- sys/dev/ctau/hdc64570.h | 2 +- sys/dev/ctau/if_ct.c | 2 +- sys/dev/ctau/lxt318.h | 2 +- sys/dev/ctau/ng_ct.h | 2 +- sys/dev/cx/cronyxfw.h | 2 +- sys/dev/cx/csigma.c | 2 +- sys/dev/cx/cxddk.c | 2 +- sys/dev/cx/cxddk.h | 2 +- sys/dev/cx/cxreg.h | 2 +- sys/dev/cx/if_cx.c | 2 +- sys/dev/cx/machdep.h | 2 +- sys/dev/cx/ng_cx.h | 2 +- sys/dev/cy/cy_pci.c | 2 +- sys/dev/dc/dcphy.c | 2 +- sys/dev/dcons/dcons.c | 2 +- sys/dev/dcons/dcons.h | 2 +- sys/dev/dcons/dcons_crom.c | 2 +- sys/dev/dcons/dcons_os.c | 2 +- sys/dev/dcons/dcons_os.h | 2 +- sys/dev/dec/mc146818reg.h | 2 +- sys/dev/dec/mcclock.c | 2 +- sys/dev/dec/mcclock_if.m | 2 +- sys/dev/dec/mcclockvar.h | 2 +- sys/dev/dpt/dpt.h | 2 +- sys/dev/dpt/dpt_scsi.c | 2 +- sys/dev/drm/ati_pcigart.h | 4 +-- sys/dev/drm/drm.h | 2 +- sys/dev/drm/drmP.h | 4 +-- sys/dev/drm/drm_agpsupport.h | 4 +-- sys/dev/drm/drm_auth.h | 4 +-- sys/dev/drm/drm_bufs.h | 4 +-- sys/dev/drm/drm_context.h | 4 +-- sys/dev/drm/drm_dma.h | 4 +-- sys/dev/drm/drm_drawable.h | 4 +-- sys/dev/drm/drm_drv.h | 4 +-- sys/dev/drm/drm_fops.h | 4 +-- sys/dev/drm/drm_ioctl.h | 4 +-- sys/dev/drm/drm_irq.h | 4 +-- sys/dev/drm/drm_linux_list.h | 4 +-- sys/dev/drm/drm_lock.h | 4 +-- sys/dev/drm/drm_memory.h | 4 +-- sys/dev/drm/drm_memory_debug.h | 4 +-- sys/dev/drm/drm_os_freebsd.h | 2 +- sys/dev/drm/drm_pci.h | 2 +- sys/dev/drm/drm_sarea.h | 2 +- sys/dev/drm/drm_scatter.h | 4 +-- sys/dev/drm/drm_sysctl.h | 2 +- sys/dev/drm/drm_vm.h | 2 +- sys/dev/drm/mga.h | 4 +-- sys/dev/drm/mga_dma.c | 4 +-- sys/dev/drm/mga_drm.h | 4 +-- sys/dev/drm/mga_drv.c | 4 +-- sys/dev/drm/mga_drv.h | 4 +-- sys/dev/drm/mga_irq.c | 4 +-- sys/dev/drm/mga_state.c | 4 +-- sys/dev/drm/mga_ucode.h | 4 +-- sys/dev/drm/mga_warp.c | 4 +-- sys/dev/drm/r128.h | 4 +-- sys/dev/drm/r128_cce.c | 4 +-- sys/dev/drm/r128_drm.h | 4 +-- sys/dev/drm/r128_drv.c | 4 +-- sys/dev/drm/r128_drv.h | 4 +-- sys/dev/drm/r128_irq.c | 4 +-- sys/dev/drm/r128_state.c | 4 +-- sys/dev/drm/radeon.h | 4 +-- sys/dev/drm/radeon_cp.c | 4 +-- sys/dev/drm/radeon_drm.h | 4 +-- sys/dev/drm/radeon_drv.c | 4 +-- sys/dev/drm/radeon_drv.h | 4 +-- sys/dev/drm/radeon_irq.c | 4 +-- sys/dev/drm/radeon_mem.c | 4 +-- sys/dev/drm/radeon_state.c | 2 +- sys/dev/drm/sis.h | 4 +-- sys/dev/drm/sis_drv.c | 4 +-- sys/dev/drm/sis_drv.h | 4 +-- sys/dev/drm/sis_ds.c | 4 +-- sys/dev/drm/sis_ds.h | 4 +-- sys/dev/drm/sis_mm.c | 4 +-- sys/dev/drm/tdfx.h | 4 +-- sys/dev/drm/tdfx_drv.c | 4 +-- sys/dev/ed/if_ed.c | 2 +- sys/dev/ed/if_ed98.h | 2 +- sys/dev/ed/if_ed_cbus.c | 2 +- sys/dev/ed/if_ed_isa.c | 2 +- sys/dev/ed/if_ed_pccard.c | 2 +- sys/dev/ed/if_edreg.h | 2 +- sys/dev/ed/if_edvar.h | 2 +- sys/dev/eisa/eisa_if.m | 2 +- sys/dev/eisa/eisaconf.c | 2 +- sys/dev/eisa/eisaconf.h | 2 +- sys/dev/em/LICENSE | 2 ++ sys/dev/en/if_en_pci.c | 3 +- sys/dev/en/midway.c | 3 +- sys/dev/en/midwayvar.h | 3 +- sys/dev/ep/if_ep.c | 2 +- sys/dev/ep/if_ep_eisa.c | 2 +- sys/dev/ep/if_ep_isa.c | 2 +- sys/dev/ep/if_ep_pccard.c | 2 +- sys/dev/ep/if_epreg.h | 2 +- sys/dev/ep/if_epvar.h | 2 +- sys/dev/esp/ncr53c9x.c | 2 +- sys/dev/esp/ncr53c9xreg.h | 2 +- sys/dev/esp/ncr53c9xvar.h | 2 +- sys/dev/ex/if_ex.c | 2 +- sys/dev/ex/if_exreg.h | 2 +- sys/dev/exca/exca.c | 2 +- sys/dev/exca/excareg.h | 2 +- sys/dev/exca/excavar.h | 2 +- sys/dev/fatm/firmware.h | 2 +- sys/dev/fatm/if_fatm.c | 2 +- sys/dev/fatm/if_fatm_rate.h | 2 +- sys/dev/fatm/if_fatmreg.h | 2 +- sys/dev/fatm/if_fatmvar.h | 2 +- sys/dev/fb/gallant12x22.c | 2 +- sys/dev/fb/gallant12x22.h | 2 +- sys/dev/fb/gfb.h | 2 +- sys/dev/fb/tga.h | 2 +- sys/dev/fe/if_fe.c | 2 +- sys/dev/fe/if_fe_cbus.c | 2 +- sys/dev/fe/if_fe_isa.c | 2 +- sys/dev/fe/if_fe_pccard.c | 2 +- sys/dev/fe/if_fereg.h | 2 +- sys/dev/fe/if_fevar.h | 2 +- sys/dev/firewire/firewire.c | 2 +- sys/dev/firewire/firewire.h | 2 +- sys/dev/firewire/firewire_phy.h | 2 +- sys/dev/firewire/firewirereg.h | 2 +- sys/dev/firewire/fwdev.c | 2 +- sys/dev/firewire/fwdma.c | 2 +- sys/dev/firewire/fwdma.h | 2 +- sys/dev/firewire/fwmem.c | 2 +- sys/dev/firewire/fwmem.h | 2 +- sys/dev/firewire/fwohci.c | 2 +- sys/dev/firewire/fwohci_pci.c | 2 +- sys/dev/firewire/fwohcireg.h | 2 +- sys/dev/firewire/fwohcivar.h | 2 +- sys/dev/firewire/fwphyreg.h | 2 +- sys/dev/firewire/iec13213.h | 2 +- sys/dev/firewire/iec68113.h | 2 +- sys/dev/firewire/if_fwe.c | 2 +- sys/dev/firewire/if_fwevar.h | 2 +- sys/dev/firewire/if_fwip.c | 2 +- sys/dev/firewire/if_fwipvar.h | 2 +- sys/dev/firewire/sbp.c | 2 +- sys/dev/firewire/sbp.h | 2 +- sys/dev/firewire/sbp_targ.c | 2 +- sys/dev/fxp/if_fxpreg.h | 2 +- sys/dev/fxp/if_fxpvar.h | 2 +- sys/dev/fxp/rcvbundl.h | 2 +- sys/dev/gem/if_gem_pci.c | 2 +- sys/dev/gem/if_gemreg.h | 2 +- sys/dev/gem/if_gemvar.h | 2 +- sys/dev/gfb/gfb_pci.c | 2 +- sys/dev/gfb/gfb_pci.h | 2 +- sys/dev/harp/if_harp.c | 2 +- sys/dev/hatm/if_hatm.c | 2 +- sys/dev/hatm/if_hatm_intr.c | 2 +- sys/dev/hatm/if_hatm_ioctl.c | 2 +- sys/dev/hatm/if_hatm_rx.c | 2 +- sys/dev/hatm/if_hatm_tx.c | 2 +- sys/dev/hatm/if_hatmconf.h | 2 +- sys/dev/hatm/if_hatmreg.h | 2 +- sys/dev/hatm/if_hatmvar.h | 2 +- sys/dev/hfa/fore.h | 2 +- sys/dev/hfa/fore_aali.h | 2 +- sys/dev/hfa/fore_command.c | 2 +- sys/dev/hfa/fore_if.c | 2 +- sys/dev/hfa/fore_include.h | 2 +- sys/dev/hfa/fore_init.c | 2 +- sys/dev/hfa/fore_intr.c | 2 +- sys/dev/hfa/fore_output.c | 2 +- sys/dev/hfa/fore_slave.h | 2 +- sys/dev/hfa/fore_stats.c | 2 +- sys/dev/hfa/fore_stats.h | 2 +- sys/dev/hfa/fore_var.h | 2 +- sys/dev/hfa/fore_vcm.c | 2 +- sys/dev/hifn/hifn7751.c | 2 +- sys/dev/hifn/hifn7751reg.h | 2 +- sys/dev/hifn/hifn7751var.h | 2 +- sys/dev/hptmv/entry.c | 2 +- sys/dev/hptmv/global.h | 2 +- sys/dev/hptmv/hptintf.h | 2 +- sys/dev/hptmv/mv.c | 2 +- sys/dev/hptmv/mvOs.h | 2 +- sys/dev/hptmv/osbsd.h | 2 +- sys/dev/ic/cd180.h | 2 +- sys/dev/ic/hd64570.h | 2 +- sys/dev/ic/sab82532.h | 2 +- sys/dev/ic/wd33c93reg.h | 2 +- sys/dev/ic/z8530.h | 2 +- sys/dev/ichsmb/ichsmb.c | 3 +- sys/dev/ichsmb/ichsmb_reg.h | 3 +- sys/dev/ichsmb/ichsmb_var.h | 3 +- sys/dev/ichwd/ichwd.c | 2 +- sys/dev/ichwd/ichwd.h | 2 +- sys/dev/ida/ida_eisa.c | 2 +- sys/dev/idt/idt.c | 2 +- sys/dev/idt/idt_harp.c | 2 +- sys/dev/idt/idt_pci.c | 2 +- sys/dev/idt/idtreg.h | 2 +- sys/dev/idt/idtvar.h | 2 +- sys/dev/ie/if_iee16.h | 2 +- sys/dev/if_ndis/if_ndis.c | 2 +- sys/dev/if_ndis/if_ndis_pccard.c | 2 +- sys/dev/if_ndis/if_ndis_pci.c | 2 +- sys/dev/if_ndis/if_ndisvar.h | 2 +- sys/dev/iicbus/iicbb_if.m | 2 +- sys/dev/iicbus/iicbus_if.m | 2 +- sys/dev/iir/iir.c | 2 +- sys/dev/iir/iir.h | 2 +- sys/dev/iir/iir_ctrl.c | 2 +- sys/dev/isp/isp.c | 2 +- sys/dev/isp/isp_freebsd.c | 2 +- sys/dev/isp/isp_freebsd.h | 2 +- sys/dev/isp/isp_inline.h | 2 +- sys/dev/isp/isp_ioctl.h | 2 +- sys/dev/isp/isp_target.c | 2 +- sys/dev/isp/isp_target.h | 2 +- sys/dev/isp/isp_tpublic.h | 2 +- sys/dev/isp/ispmbox.h | 2 +- sys/dev/isp/ispreg.h | 2 +- sys/dev/isp/ispvar.h | 2 +- sys/dev/ispfw/asm_1000.h | 2 +- sys/dev/ispfw/asm_1040.h | 2 +- sys/dev/ispfw/asm_1080.h | 2 +- sys/dev/ispfw/asm_12160.h | 2 +- sys/dev/ispfw/asm_2100.h | 2 +- sys/dev/ispfw/asm_2200.h | 2 +- sys/dev/ispfw/asm_2300.h | 2 +- sys/dev/ixgb/LICENSE | 4 +++ sys/dev/ixgb/if_ixgb.c | 2 +- sys/dev/ixgb/if_ixgb.h | 2 +- sys/dev/ixgb/if_ixgb_osdep.h | 2 +- sys/dev/lge/if_lge.c | 2 +- sys/dev/lge/if_lgereg.h | 2 +- sys/dev/lnc/if_lnc_cbus.c | 2 +- sys/dev/lnc/if_lnc_isa.c | 2 +- sys/dev/matcd/creativeif.h | 3 +- sys/dev/matcd/matcd.c | 3 +- sys/dev/matcd/matcd_data.h | 3 +- sys/dev/matcd/matcd_isa.c | 3 +- sys/dev/matcd/matcddrv.h | 3 +- sys/dev/matcd/options.h | 3 +- sys/dev/mc146818/mc146818.c | 2 +- sys/dev/mc146818/mc146818reg.h | 2 +- sys/dev/mc146818/mc146818var.h | 2 +- sys/dev/mcd/mcd.c | 2 +- sys/dev/mcd/mcdreg.h | 2 +- sys/dev/md/md.c | 4 +-- sys/dev/mii/acphy.c | 2 +- sys/dev/mii/amphy.c | 2 +- sys/dev/mii/amphyreg.h | 2 +- sys/dev/mii/bmtphy.c | 2 +- sys/dev/mii/bmtphyreg.h | 1 - sys/dev/mii/brgphy.c | 2 +- sys/dev/mii/brgphyreg.h | 2 +- sys/dev/mii/ciphy.c | 2 +- sys/dev/mii/ciphyreg.h | 2 +- sys/dev/mii/dcphy.c | 2 +- sys/dev/mii/e1000phy.c | 2 +- sys/dev/mii/e1000phyreg.h | 4 +-- sys/dev/mii/exphy.c | 2 +- sys/dev/mii/lxtphy.c | 2 +- sys/dev/mii/mii.h | 2 +- sys/dev/mii/mlphy.c | 2 +- sys/dev/mii/nsgphy.c | 2 +- sys/dev/mii/nsgphyreg.h | 2 +- sys/dev/mii/nsphy.c | 2 +- sys/dev/mii/pnaphy.c | 2 +- sys/dev/mii/qsphy.c | 2 +- sys/dev/mii/rgephy.c | 2 +- sys/dev/mii/rgephyreg.h | 2 +- sys/dev/mii/rlphy.c | 2 +- sys/dev/mii/tdkphy.c | 2 +- sys/dev/mii/tdkphyreg.h | 2 +- sys/dev/mii/tlphy.c | 2 +- sys/dev/mii/tlphyreg.h | 2 +- sys/dev/mii/ukphy.c | 2 +- sys/dev/mii/xmphy.c | 2 +- sys/dev/mii/xmphyreg.h | 2 +- sys/dev/mpt/mpilib/fc_log.h | 2 +- sys/dev/mpt/mpilib/mpi.h | 2 +- sys/dev/mpt/mpilib/mpi_cnfg.h | 2 +- sys/dev/mpt/mpilib/mpi_fc.h | 2 +- sys/dev/mpt/mpilib/mpi_init.h | 2 +- sys/dev/mpt/mpilib/mpi_ioc.h | 2 +- sys/dev/mpt/mpilib/mpi_lan.h | 2 +- sys/dev/mpt/mpilib/mpi_raid.h | 2 +- sys/dev/mpt/mpilib/mpi_targ.h | 2 +- sys/dev/mpt/mpilib/mpi_type.h | 2 +- sys/dev/mpt/mpt.c | 2 +- sys/dev/mpt/mpt.h | 2 +- sys/dev/mpt/mpt_debug.c | 2 +- sys/dev/mpt/mpt_freebsd.c | 2 +- sys/dev/mpt/mpt_freebsd.h | 2 +- sys/dev/mse/mse.c | 2 +- sys/dev/mse/mse_cbus.c | 2 +- sys/dev/mse/mse_isa.c | 2 +- sys/dev/mse/msevar.h | 2 +- sys/dev/my/if_myreg.h | 2 +- sys/dev/ncv/ncr53c500.c | 2 +- sys/dev/ncv/ncr53c500_pccard.c | 2 +- sys/dev/ncv/ncr53c500hw.h | 2 +- sys/dev/ncv/ncr53c500hwtab.h | 2 +- sys/dev/ncv/ncr53c500reg.h | 2 +- sys/dev/ncv/ncr53c500var.h | 2 +- sys/dev/nge/if_nge.c | 2 +- sys/dev/nge/if_ngereg.h | 2 +- sys/dev/nmdm/nmdm.c | 2 +- sys/dev/nsp/nsp.c | 2 +- sys/dev/nsp/nsp_pccard.c | 2 +- sys/dev/nsp/nspreg.h | 2 +- sys/dev/nsp/nspvar.h | 2 +- sys/dev/ofw/ofw_bus_if.m | 1 + sys/dev/ofw/ofw_console.c | 2 +- sys/dev/ofw/ofw_disk.c | 2 +- sys/dev/ofw/openfirm.c | 4 +-- sys/dev/ofw/openfirm.h | 2 +- sys/dev/ofw/openfirmio.c | 2 +- sys/dev/ofw/openfirmio.h | 2 +- sys/dev/owi/if_owi.c | 2 +- sys/dev/owi/if_owi_pccard.c | 2 +- sys/dev/owi/if_wireg.h | 2 +- sys/dev/owi/if_wivar.h | 2 +- sys/dev/patm/genrtab/genrtab.c | 2 +- sys/dev/patm/idt77252reg.h | 2 +- sys/dev/patm/if_patm.c | 2 +- sys/dev/patm/if_patm_attach.c | 2 +- sys/dev/patm/if_patm_intr.c | 2 +- sys/dev/patm/if_patm_ioctl.c | 2 +- sys/dev/patm/if_patm_rx.c | 2 +- sys/dev/patm/if_patm_tx.c | 2 +- sys/dev/patm/if_patmvar.h | 2 +- sys/dev/pbio/pbio.c | 2 +- sys/dev/pbio/pbioio.h | 2 +- sys/dev/pccard/card_if.m | 2 +- sys/dev/pccard/pccard.c | 2 +- sys/dev/pccard/pccard_cis.c | 2 +- sys/dev/pccard/pccard_cis.h | 2 +- sys/dev/pccard/pccard_cis_quirks.c | 2 +- sys/dev/pccard/pccardreg.h | 2 +- sys/dev/pccard/pccardvar.h | 2 +- sys/dev/pccard/power_if.m | 2 +- sys/dev/pccbb/pccbb.c | 2 +- sys/dev/pccbb/pccbb_isa.c | 2 +- sys/dev/pccbb/pccbb_pci.c | 2 +- sys/dev/pccbb/pccbbdevid.h | 2 +- sys/dev/pccbb/pccbbreg.h | 2 +- sys/dev/pccbb/pccbbvar.h | 2 +- sys/dev/pci/pci.c | 2 +- sys/dev/pci/pci_if.m | 2 +- sys/dev/pci/pci_private.h | 2 +- sys/dev/pci/pcib_if.m | 2 +- sys/dev/pci/pcireg.h | 2 +- sys/dev/pci/pcivar.h | 2 +- sys/dev/ppbus/lpt.c | 2 +- sys/dev/ppbus/lptio.h | 2 +- sys/dev/ppbus/pcfclock.c | 2 +- sys/dev/ppbus/ppbus_if.m | 2 +- sys/dev/ppbus/pps.c | 2 +- sys/dev/ppc/ppcvar.h | 1 - sys/dev/puc/puc.c | 2 +- sys/dev/puc/puc_ebus.c | 2 +- sys/dev/puc/puc_pci.c | 2 +- sys/dev/puc/puc_sbus.c | 2 +- sys/dev/puc/pucdata.c | 2 +- sys/dev/puc/pucvar.h | 2 +- sys/dev/ray/if_ray.c | 2 +- sys/dev/ray/if_raydbg.h | 2 +- sys/dev/ray/if_raymib.h | 2 +- sys/dev/ray/if_rayreg.h | 2 +- sys/dev/ray/if_rayvar.h | 2 +- sys/dev/rc/rc.c | 2 +- sys/dev/rc/rcreg.h | 2 +- sys/dev/re/if_re.c | 2 +- sys/dev/rndtest/rndtest.c | 2 +- sys/dev/rndtest/rndtest.h | 2 +- sys/dev/rp/rp.c | 2 +- sys/dev/rp/rp_isa.c | 2 +- sys/dev/rp/rpreg.h | 2 +- sys/dev/rp/rpvar.h | 2 +- sys/dev/sab/sab.c | 2 +- sys/dev/sab/sab82532reg.h | 2 +- sys/dev/sbni/if_sbni.c | 2 +- sys/dev/sbni/if_sbni_isa.c | 2 +- sys/dev/sbni/if_sbnireg.h | 2 +- sys/dev/sbni/if_sbnivar.h | 2 +- sys/dev/sbsh/if_sbshreg.h | 2 +- sys/dev/si/si.c | 2 +- sys/dev/si/si.h | 2 +- sys/dev/si/si2_z280.c | 2 +- sys/dev/si/si3_t225.c | 2 +- sys/dev/si/si_eisa.c | 2 +- sys/dev/si/si_isa.c | 2 +- sys/dev/si/sireg.h | 2 +- sys/dev/si/sivar.h | 2 +- sys/dev/sio/sio_isa.c | 2 +- sys/dev/sio/sio_pccard.c | 2 +- sys/dev/smbus/smbus_if.m | 2 +- sys/dev/sn/if_sn.c | 2 +- sys/dev/sn/if_sn_isa.c | 2 +- sys/dev/sn/if_snreg.h | 2 +- sys/dev/sn/if_snvar.h | 2 +- sys/dev/snc/dp83932.c | 4 +-- sys/dev/snc/dp83932reg.h | 2 +- sys/dev/snc/dp83932subr.c | 2 +- sys/dev/snc/dp83932subr.h | 4 +-- sys/dev/snc/dp83932var.h | 5 ++- sys/dev/snc/if_snc.c | 2 +- sys/dev/snc/if_snc_cbus.c | 2 +- sys/dev/snc/if_snc_pccard.c | 2 +- sys/dev/snc/if_sncreg.h | 2 +- sys/dev/snc/if_sncvar.h | 2 +- sys/dev/snp/snp.c | 2 +- sys/dev/sound/driver.c | 2 +- sys/dev/sound/isa/ad1816.c | 2 +- sys/dev/sound/isa/ad1816.h | 2 +- sys/dev/sound/isa/es1888.c | 2 +- sys/dev/sound/isa/ess.c | 2 +- sys/dev/sound/isa/gusc.c | 2 +- sys/dev/sound/isa/mss.c | 2 +- sys/dev/sound/isa/mss.h | 58 +++++++++++++++--------------- sys/dev/sound/isa/sb16.c | 2 +- sys/dev/sound/isa/sb8.c | 2 +- sys/dev/sound/isa/sbc.c | 2 +- sys/dev/sound/isa/sndbuf_dma.c | 2 +- sys/dev/sound/pci/als4000.c | 2 +- sys/dev/sound/pci/als4000.h | 2 +- sys/dev/sound/pci/aureal.c | 2 +- sys/dev/sound/pci/aureal.h | 2 +- sys/dev/sound/pci/cmi.c | 2 +- sys/dev/sound/pci/cmireg.h | 2 +- sys/dev/sound/pci/cs4281.c | 2 +- sys/dev/sound/pci/cs4281.h | 2 +- sys/dev/sound/pci/csa.c | 2 +- sys/dev/sound/pci/csapcm.c | 2 +- sys/dev/sound/pci/ds1-fw.h | 3 +- sys/dev/sound/pci/ds1.c | 2 +- sys/dev/sound/pci/emu10k1.c | 2 +- sys/dev/sound/pci/es137x.c | 2 +- sys/dev/sound/pci/es137x.h | 2 +- sys/dev/sound/pci/fm801.c | 2 +- sys/dev/sound/pci/ich.c | 2 +- sys/dev/sound/pci/ich.h | 2 +- sys/dev/sound/pci/neomagic-coeff.h | 2 +- sys/dev/sound/pci/neomagic.c | 2 +- sys/dev/sound/pci/neomagic.h | 2 +- sys/dev/sound/pci/solo.c | 2 +- sys/dev/sound/pci/t4dwave.c | 2 +- sys/dev/sound/pci/t4dwave.h | 2 +- sys/dev/sound/pci/via8233.c | 2 +- sys/dev/sound/pci/via8233.h | 2 +- sys/dev/sound/pci/via82c686.c | 2 +- sys/dev/sound/pci/vibes.c | 2 +- sys/dev/sound/pci/vibes.h | 2 +- sys/dev/sound/pcm/ac97.c | 2 +- sys/dev/sound/pcm/ac97.h | 2 +- sys/dev/sound/pcm/ac97_if.m | 1 + sys/dev/sound/pcm/ac97_patch.c | 2 +- sys/dev/sound/pcm/ac97_patch.h | 2 +- sys/dev/sound/pcm/buffer.c | 2 +- sys/dev/sound/pcm/buffer.h | 2 +- sys/dev/sound/pcm/channel.c | 2 +- sys/dev/sound/pcm/channel.h | 2 +- sys/dev/sound/pcm/channel_if.m | 1 + sys/dev/sound/pcm/dsp.c | 2 +- sys/dev/sound/pcm/dsp.h | 2 +- sys/dev/sound/pcm/fake.c | 2 +- sys/dev/sound/pcm/feeder.c | 2 +- sys/dev/sound/pcm/feeder.h | 2 +- sys/dev/sound/pcm/feeder_fmt.c | 2 +- sys/dev/sound/pcm/feeder_if.m | 1 + sys/dev/sound/pcm/feeder_rate.c | 2 +- sys/dev/sound/pcm/mixer.c | 2 +- sys/dev/sound/pcm/mixer.h | 2 +- sys/dev/sound/pcm/mixer_if.m | 1 + sys/dev/sound/pcm/sndstat.c | 2 +- sys/dev/sound/pcm/sound.c | 2 +- sys/dev/sound/pcm/sound.h | 2 +- sys/dev/sound/pcm/vchan.c | 2 +- sys/dev/sound/pcm/vchan.h | 2 +- sys/dev/sound/sbus/apcdmareg.h | 2 +- sys/dev/sound/sbus/cs4231.c | 2 +- sys/dev/sound/sbus/cs4231.h | 2 +- sys/dev/sound/usb/uaudio.c | 2 +- sys/dev/sound/usb/uaudio.h | 2 +- sys/dev/sound/usb/uaudio_pcm.c | 2 +- sys/dev/sound/usb/uaudioreg.h | 2 +- sys/dev/sr/if_sr.c | 2 +- sys/dev/sr/if_sr.h | 2 +- sys/dev/sr/if_sr_isa.c | 2 +- sys/dev/sr/if_sr_pci.c | 2 +- sys/dev/sr/if_srregs.h | 2 +- sys/dev/stg/tmc18c30.c | 2 +- sys/dev/stg/tmc18c30_isa.c | 2 +- sys/dev/stg/tmc18c30_pccard.c | 2 +- sys/dev/stg/tmc18c30_subr.c | 2 +- sys/dev/stg/tmc18c30reg.h | 2 +- sys/dev/stg/tmc18c30var.h | 2 +- sys/dev/streams/streams.c | 2 +- sys/dev/sx/cd1865.h | 2 +- sys/dev/sx/sx.c | 2 +- sys/dev/sx/sx.h | 2 +- sys/dev/sx/sx_pci.c | 2 +- sys/dev/sx/sx_util.c | 2 +- sys/dev/sx/sx_util.h | 2 +- sys/dev/sx/sxvar.h | 2 +- sys/dev/sym/README.sym | 2 +- sys/dev/sym/sym_conf.h | 2 +- sys/dev/sym/sym_defs.h | 2 +- sys/dev/sym/sym_fw.h | 2 +- sys/dev/sym/sym_fw1.h | 2 +- sys/dev/sym/sym_fw2.h | 2 +- sys/dev/tdfx/tdfx_io.h | 2 +- sys/dev/tdfx/tdfx_linux.h | 2 +- sys/dev/tdfx/tdfx_pci.h | 2 +- sys/dev/tdfx/tdfx_vars.h | 2 +- sys/dev/tga/tga_pci.c | 2 +- sys/dev/tga/tga_pci.h | 2 +- sys/dev/trm/trm.c | 5 ++- sys/dev/trm/trm.h | 4 ++- sys/dev/txp/3c990img.h | 2 +- sys/dev/txp/if_txp.c | 2 +- sys/dev/txp/if_txpreg.h | 2 +- sys/dev/uart/uart.h | 2 +- sys/dev/uart/uart_bus.h | 2 +- sys/dev/uart/uart_bus_acpi.c | 2 +- sys/dev/uart/uart_bus_isa.c | 2 +- sys/dev/uart/uart_bus_pccard.c | 2 +- sys/dev/uart/uart_bus_pci.c | 2 +- sys/dev/uart/uart_core.c | 2 +- sys/dev/uart/uart_cpu.h | 2 +- sys/dev/uart/uart_cpu_alpha.c | 2 +- sys/dev/uart/uart_cpu_amd64.c | 2 +- sys/dev/uart/uart_cpu_i386.c | 2 +- sys/dev/uart/uart_cpu_ia64.c | 2 +- sys/dev/uart/uart_cpu_pc98.c | 2 +- sys/dev/uart/uart_cpu_sparc64.c | 2 +- sys/dev/uart/uart_dbg.c | 2 +- sys/dev/uart/uart_dev_ns8250.c | 2 +- sys/dev/uart/uart_dev_sab82532.c | 2 +- sys/dev/uart/uart_dev_z8530.c | 2 +- sys/dev/uart/uart_if.m | 1 + sys/dev/uart/uart_kbd_sun.h | 2 +- sys/dev/uart/uart_subr.c | 2 +- sys/dev/uart/uart_tty.c | 2 +- sys/dev/ubsec/ubsec.c | 2 +- sys/dev/ubsec/ubsecreg.h | 2 +- sys/dev/ubsec/ubsecvar.h | 2 +- sys/dev/usb/ehci.c | 2 +- sys/dev/usb/ehcireg.h | 2 +- sys/dev/usb/ehcivar.h | 2 +- sys/dev/usb/hid.c | 2 +- sys/dev/usb/hid.h | 2 +- sys/dev/usb/if_auereg.h | 2 +- sys/dev/usb/if_axe.c | 2 +- sys/dev/usb/if_axereg.h | 2 +- sys/dev/usb/if_cue.c | 2 +- sys/dev/usb/if_cuereg.h | 2 +- sys/dev/usb/if_kue.c | 2 +- sys/dev/usb/if_kuereg.h | 2 +- sys/dev/usb/if_udav.c | 2 +- sys/dev/usb/if_udavreg.h | 2 +- sys/dev/usb/kue_fw.h | 2 +- sys/dev/usb/ohci.c | 2 +- sys/dev/usb/ohcireg.h | 2 +- sys/dev/usb/ohcivar.h | 2 +- sys/dev/usb/rio500_usb.h | 3 +- sys/dev/usb/ubsa.c | 2 +- sys/dev/usb/ubser.c | 4 +-- sys/dev/usb/ubser.h | 2 +- sys/dev/usb/ucom.c | 2 +- sys/dev/usb/ucomvar.h | 2 +- sys/dev/usb/udbp.c | 2 +- sys/dev/usb/udbp.h | 2 +- sys/dev/usb/ufm.c | 2 +- sys/dev/usb/uftdi.c | 2 +- sys/dev/usb/ugen.c | 2 +- sys/dev/usb/ugraphire_rdesc.h | 2 +- sys/dev/usb/uhci.c | 2 +- sys/dev/usb/uhcireg.h | 2 +- sys/dev/usb/uhcivar.h | 2 +- sys/dev/usb/uhid.c | 2 +- sys/dev/usb/uhub.c | 2 +- sys/dev/usb/ukbd.c | 3 +- sys/dev/usb/ulpt.c | 2 +- sys/dev/usb/umodem.c | 2 +- sys/dev/usb/ums.c | 3 +- sys/dev/usb/uplcom.c | 2 +- sys/dev/usb/urio.c | 2 +- sys/dev/usb/usb.c | 2 +- sys/dev/usb/usb.h | 2 +- sys/dev/usb/usb_ethersubr.c | 2 +- sys/dev/usb/usb_ethersubr.h | 2 +- sys/dev/usb/usb_if.m | 2 +- sys/dev/usb/usb_mem.c | 2 +- sys/dev/usb/usb_mem.h | 2 +- sys/dev/usb/usb_port.h | 2 +- sys/dev/usb/usb_quirks.c | 2 +- sys/dev/usb/usb_quirks.h | 2 +- sys/dev/usb/usb_subr.c | 2 +- sys/dev/usb/usbcdc.h | 2 +- sys/dev/usb/usbdevs | 2 +- sys/dev/usb/usbdi.c | 2 +- sys/dev/usb/usbdi.h | 2 +- sys/dev/usb/usbdi_util.c | 2 +- sys/dev/usb/usbdi_util.h | 2 +- sys/dev/usb/usbdivar.h | 2 +- sys/dev/usb/usbhid.h | 2 +- sys/dev/usb/uscanner.c | 2 +- sys/dev/usb/uvisor.c | 2 +- sys/dev/utopia/idtphy.h | 2 +- sys/dev/utopia/suni.h | 2 +- sys/dev/utopia/utopia.c | 2 +- sys/dev/utopia/utopia.h | 2 +- sys/dev/vge/if_vge.c | 2 +- sys/dev/vge/if_vgereg.h | 2 +- sys/dev/vge/if_vgevar.h | 2 +- sys/dev/vkbd/vkbd.c | 2 +- sys/dev/vkbd/vkbd_var.h | 2 +- sys/dev/vx/if_vx.c | 2 +- sys/dev/vx/if_vx_eisa.c | 2 +- sys/dev/vx/if_vx_pci.c | 2 +- sys/dev/vx/if_vxreg.h | 2 +- sys/dev/vx/if_vxvar.h | 2 +- sys/dev/wds/wd7000.c | 2 +- sys/dev/wi/if_wavelan_ieee.h | 2 +- sys/dev/wi/if_wi.c | 2 +- sys/dev/wi/if_wi_pccard.c | 2 +- sys/dev/wi/if_wi_pci.c | 2 +- sys/dev/wi/if_wireg.h | 2 +- sys/dev/wi/if_wivar.h | 2 +- sys/dev/wi/spectrum24t_cf.h | 2 +- sys/dev/wl/if_wl.c | 2 +- sys/dev/wl/if_wl.h | 2 +- sys/dev/xe/if_xe.c | 2 +- sys/dev/xe/if_xe_pccard.c | 2 +- sys/dev/zs/z8530reg.h | 2 +- 774 files changed, 886 insertions(+), 868 deletions(-) (limited to 'sys/dev/advansys/adwmcode.h') diff --git a/sys/dev/aac/aac_cam.c b/sys/dev/aac/aac_cam.c index 946855425f70..3755e58de742 100644 --- a/sys/dev/aac/aac_cam.c +++ b/sys/dev/aac/aac_cam.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Adaptec, Inc. * All rights reserved. * diff --git a/sys/dev/acpica/acpi_ec.c b/sys/dev/acpica/acpi_ec.c index 17a9d6f14b0c..50cb84761bf7 100644 --- a/sys/dev/acpica/acpi_ec.c +++ b/sys/dev/acpica/acpi_ec.c @@ -25,7 +25,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/****************************************************************************** +/*- + ****************************************************************************** * * 1. Copyright Notice * diff --git a/sys/dev/acpica/acpi_if.m b/sys/dev/acpica/acpi_if.m index 48a060ab92a2..9c63b3e49fb1 100644 --- a/sys/dev/acpica/acpi_if.m +++ b/sys/dev/acpica/acpi_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 2004 Nate Lawson # All rights reserved. # diff --git a/sys/dev/acpica/acpi_pci.c b/sys/dev/acpica/acpi_pci.c index ad51129d7f4b..c935ae8ffd45 100644 --- a/sys/dev/acpica/acpi_pci.c +++ b/sys/dev/acpica/acpi_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, Stefan Esser * Copyright (c) 2000, Michael Smith * Copyright (c) 2000, BSDi diff --git a/sys/dev/advansys/adv_eisa.c b/sys/dev/advansys/adv_eisa.c index d71893861d57..e56cf29653f0 100644 --- a/sys/dev/advansys/adv_eisa.c +++ b/sys/dev/advansys/adv_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Device probe and attach routines for the following * Advanced Systems Inc. SCSI controllers: * diff --git a/sys/dev/advansys/adv_isa.c b/sys/dev/advansys/adv_isa.c index 96bdc7c77ea7..8a3a0790843b 100644 --- a/sys/dev/advansys/adv_isa.c +++ b/sys/dev/advansys/adv_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Device probe and attach routines for the following * Advanced Systems Inc. SCSI controllers: * diff --git a/sys/dev/advansys/adv_pci.c b/sys/dev/advansys/adv_pci.c index 9ac61f394fa9..aa97f1ba0712 100644 --- a/sys/dev/advansys/adv_pci.c +++ b/sys/dev/advansys/adv_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Device probe and attach routines for the following * Advanced Systems Inc. SCSI controllers: * diff --git a/sys/dev/advansys/advansys.c b/sys/dev/advansys/advansys.c index 1c2d645a3fb0..7b9cfb1e3fb8 100644 --- a/sys/dev/advansys/advansys.c +++ b/sys/dev/advansys/advansys.c @@ -1,4 +1,4 @@ -/* +/*- * Generic driver for the Advanced Systems Inc. SCSI controllers * Product specific probe and attach routines can be found in: * @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Ported from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters * diff --git a/sys/dev/advansys/advansys.h b/sys/dev/advansys/advansys.h index ab4e550a9afe..a8c560472860 100644 --- a/sys/dev/advansys/advansys.h +++ b/sys/dev/advansys/advansys.h @@ -1,4 +1,4 @@ -/* +/*- * Generic driver definitions and exported functions for the Advanced * Systems Inc. SCSI controllers * diff --git a/sys/dev/advansys/advlib.c b/sys/dev/advansys/advlib.c index 7b9b149d1fc5..4604571da52f 100644 --- a/sys/dev/advansys/advlib.c +++ b/sys/dev/advansys/advlib.c @@ -1,4 +1,4 @@ -/* +/*- * Low level routines for the Advanced Systems Inc. SCSI controllers chips * * Copyright (c) 1996-1997, 1999-2000 Justin Gibbs. @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Ported from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters * diff --git a/sys/dev/advansys/advlib.h b/sys/dev/advansys/advlib.h index ba9703db1b6d..f7a3acb633b5 100644 --- a/sys/dev/advansys/advlib.h +++ b/sys/dev/advansys/advlib.h @@ -1,4 +1,4 @@ -/* +/*- * Definitions for low level routines and data structures * for the Advanced Systems Inc. SCSI controllers chips. * @@ -31,7 +31,7 @@ * * $FreeBSD$ */ -/* +/*- * Ported from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters * diff --git a/sys/dev/advansys/advmcode.c b/sys/dev/advansys/advmcode.c index 730f161f31f9..d5e7bba9634a 100644 --- a/sys/dev/advansys/advmcode.c +++ b/sys/dev/advansys/advmcode.c @@ -1,4 +1,4 @@ -/* +/*- * Downloadable microcode for Advanced Systems Inc. SCSI controllers * * diff --git a/sys/dev/advansys/advmcode.h b/sys/dev/advansys/advmcode.h index 128efc4c9715..60b4e03cdb1a 100644 --- a/sys/dev/advansys/advmcode.h +++ b/sys/dev/advansys/advmcode.h @@ -1,4 +1,4 @@ -/* +/*- * Exported interface to downloadable microcode for AdvanSys SCSI Adapters * * $FreeBSD$ diff --git a/sys/dev/advansys/adw_pci.c b/sys/dev/advansys/adw_pci.c index e6050b885d7c..1f88d772a79e 100644 --- a/sys/dev/advansys/adw_pci.c +++ b/sys/dev/advansys/adw_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Device probe and attach routines for the following * Advanced Systems Inc. SCSI controllers: * diff --git a/sys/dev/advansys/adwcam.c b/sys/dev/advansys/adwcam.c index 400c0fca5271..c6c14fd99cc0 100644 --- a/sys/dev/advansys/adwcam.c +++ b/sys/dev/advansys/adwcam.c @@ -1,4 +1,4 @@ -/* +/*- * CAM SCSI interface for the the Advanced Systems Inc. * Second Generation SCSI controllers. * diff --git a/sys/dev/advansys/adwlib.c b/sys/dev/advansys/adwlib.c index d36ca351b977..9dbf21eb41a6 100644 --- a/sys/dev/advansys/adwlib.c +++ b/sys/dev/advansys/adwlib.c @@ -1,4 +1,4 @@ -/* +/*- * Low level routines for Second Generation * Advanced Systems Inc. SCSI controllers chips * @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Ported from: * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters * diff --git a/sys/dev/advansys/adwlib.h b/sys/dev/advansys/adwlib.h index 53834474e464..919622205a06 100644 --- a/sys/dev/advansys/adwlib.h +++ b/sys/dev/advansys/adwlib.h @@ -1,4 +1,4 @@ -/* +/*- * Definitions for low level routines and data structures * for the Advanced Systems Inc. SCSI controllers chips. * diff --git a/sys/dev/advansys/adwmcode.c b/sys/dev/advansys/adwmcode.c index 2b643291453f..a43720c423dd 100644 --- a/sys/dev/advansys/adwmcode.c +++ b/sys/dev/advansys/adwmcode.c @@ -1,4 +1,4 @@ -/* +/*- * Downloadable microcode for Second Generation * Advanced Systems Inc. SCSI controllers * diff --git a/sys/dev/advansys/adwmcode.h b/sys/dev/advansys/adwmcode.h index 221845489867..e3ab3f47a0ec 100644 --- a/sys/dev/advansys/adwmcode.h +++ b/sys/dev/advansys/adwmcode.h @@ -1,4 +1,4 @@ -/* +/*- * Exported interface to downloadable microcode for AdvanSys SCSI Adapters * * $FreeBSD$ diff --git a/sys/dev/advansys/adwvar.h b/sys/dev/advansys/adwvar.h index f4244f98a484..0510ab0185c3 100644 --- a/sys/dev/advansys/adwvar.h +++ b/sys/dev/advansys/adwvar.h @@ -1,4 +1,4 @@ -/* +/*- * Generic driver definitions and exported functions for the Advanced * Systems Inc. Second Generation SCSI controllers * diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index 919b1ecd6764..9a2232859c3a 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -1,4 +1,4 @@ -/* +/*- * Generic register and struct definitions for the Adaptech 154x/164x * SCSI host adapters. Product specific probe and attach routines can * be found in: diff --git a/sys/dev/aha/aha_isa.c b/sys/dev/aha/aha_isa.c index c43a428dda17..ba27bc5a20c0 100644 --- a/sys/dev/aha/aha_isa.c +++ b/sys/dev/aha/aha_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * Adaptec 154x. * diff --git a/sys/dev/aha/ahareg.h b/sys/dev/aha/ahareg.h index c64d8ea06a73..c5b61f813977 100644 --- a/sys/dev/aha/ahareg.h +++ b/sys/dev/aha/ahareg.h @@ -1,4 +1,4 @@ -/* +/*- * Generic register and struct definitions for the Adaptech 1540, 1542, * 1640, 1642 SCSI host adapters. Product specific probe and attach * routines can be found in: diff --git a/sys/dev/ahb/ahb.c b/sys/dev/ahb/ahb.c index 34b16afd3791..4d7249c5aaa6 100644 --- a/sys/dev/ahb/ahb.c +++ b/sys/dev/ahb/ahb.c @@ -1,4 +1,4 @@ -/* +/*- * CAM SCSI device driver for the Adaptec 174X SCSI Host adapter * * Copyright (c) 1998 Justin T. Gibbs diff --git a/sys/dev/ahb/ahbreg.h b/sys/dev/ahb/ahbreg.h index c72f068aa3b9..d4544434eadb 100644 --- a/sys/dev/ahb/ahbreg.h +++ b/sys/dev/ahb/ahbreg.h @@ -1,4 +1,4 @@ -/* +/*- * Hardware structure definitions for the Adaptec 174X CAM SCSI device driver. * * Copyright (c) 1998 Justin T. Gibbs diff --git a/sys/dev/aic/aic6360reg.h b/sys/dev/aic/aic6360reg.h index d08a66514228..53962aed9d35 100644 --- a/sys/dev/aic/aic6360reg.h +++ b/sys/dev/aic/aic6360reg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Charles Hannum. * Copyright (c) 1994 Jarle Greipsland. * All rights reserved. diff --git a/sys/dev/aic7xxx/ahc_eisa.c b/sys/dev/aic7xxx/ahc_eisa.c index b3fa8e3782a4..f98059f69016 100644 --- a/sys/dev/aic7xxx/ahc_eisa.c +++ b/sys/dev/aic7xxx/ahc_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD, EISA product support functions * * diff --git a/sys/dev/aic7xxx/ahc_isa.c b/sys/dev/aic7xxx/ahc_isa.c index 1515a68d60b9..d01ffc96d3f8 100644 --- a/sys/dev/aic7xxx/ahc_isa.c +++ b/sys/dev/aic7xxx/ahc_isa.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD, VLB/ISA product support functions * * Copyright (c) 2004 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/ahc_pci.c b/sys/dev/aic7xxx/ahc_pci.c index ba6ab22aa8ee..a9d4478420af 100644 --- a/sys/dev/aic7xxx/ahc_pci.c +++ b/sys/dev/aic7xxx/ahc_pci.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD, PCI product support functions * * Copyright (c) 1995-2001 Justin T. Gibbs diff --git a/sys/dev/aic7xxx/ahd_pci.c b/sys/dev/aic7xxx/ahd_pci.c index 18ac5f3225e9..01439442b7cf 100644 --- a/sys/dev/aic7xxx/ahd_pci.c +++ b/sys/dev/aic7xxx/ahd_pci.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD, PCI product support functions * * Copyright (c) 1995-2001 Justin T. Gibbs diff --git a/sys/dev/aic7xxx/aic7770.c b/sys/dev/aic7xxx/aic7770.c index d6b35a04f731..1ce48f9b8df9 100644 --- a/sys/dev/aic7xxx/aic7770.c +++ b/sys/dev/aic7xxx/aic7770.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * 27/284X and aic7770 motherboard SCSI controllers * diff --git a/sys/dev/aic7xxx/aic79xx.c b/sys/dev/aic7xxx/aic79xx.c index 16b30463566b..9e73b6406bf4 100644 --- a/sys/dev/aic7xxx/aic79xx.c +++ b/sys/dev/aic7xxx/aic79xx.c @@ -1,4 +1,4 @@ -/* +/*- * Core routines and tables shareable across OS platforms. * * Copyright (c) 1994-2002, 2004 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx.h b/sys/dev/aic7xxx/aic79xx.h index cecb691c0c1d..c8de9b776dfe 100644 --- a/sys/dev/aic7xxx/aic79xx.h +++ b/sys/dev/aic7xxx/aic79xx.h @@ -1,4 +1,4 @@ -/* +/*- * Core definitions and data structures shareable across OS platforms. * * Copyright (c) 1994-2002 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx.reg b/sys/dev/aic7xxx/aic79xx.reg index e3cc7c5deff2..e856b6236eae 100644 --- a/sys/dev/aic7xxx/aic79xx.reg +++ b/sys/dev/aic7xxx/aic79xx.reg @@ -1,4 +1,4 @@ -/* +/*- * Aic79xx register and scratch ram definitions. * * Copyright (c) 1994-2001, 2004 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx.seq b/sys/dev/aic7xxx/aic79xx.seq index 56ac75505a09..d8d4f921380c 100644 --- a/sys/dev/aic7xxx/aic79xx.seq +++ b/sys/dev/aic7xxx/aic79xx.seq @@ -1,4 +1,4 @@ -/* +/*- * Adaptec U320 device driver firmware for Linux and FreeBSD. * * Copyright (c) 1994-2001, 2004 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx_inline.h b/sys/dev/aic7xxx/aic79xx_inline.h index 0498ab312940..064a5e8ddd7f 100644 --- a/sys/dev/aic7xxx/aic79xx_inline.h +++ b/sys/dev/aic7xxx/aic79xx_inline.h @@ -1,4 +1,4 @@ -/* +/*- * Inline routines shareable across OS platforms. * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx_osm.c b/sys/dev/aic7xxx/aic79xx_osm.c index 458f634727d3..2319da871a7f 100644 --- a/sys/dev/aic7xxx/aic79xx_osm.c +++ b/sys/dev/aic7xxx/aic79xx_osm.c @@ -1,4 +1,4 @@ -/* +/*- * Bus independent FreeBSD shim for the aic79xx based Adaptec SCSI controllers * * Copyright (c) 1994-2002, 2004 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic79xx_osm.h b/sys/dev/aic7xxx/aic79xx_osm.h index 924ef1bb4689..c6f36f1d8700 100644 --- a/sys/dev/aic7xxx/aic79xx_osm.h +++ b/sys/dev/aic7xxx/aic79xx_osm.h @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD platform specific driver option settings, data structures, * function declarations and includes. * diff --git a/sys/dev/aic7xxx/aic79xx_pci.c b/sys/dev/aic7xxx/aic79xx_pci.c index 6f917b90da24..7c8adde6a9f7 100644 --- a/sys/dev/aic7xxx/aic79xx_pci.c +++ b/sys/dev/aic7xxx/aic79xx_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * aic7901 and aic7902 SCSI controllers * diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c index c60a770ccab0..c48b850e98e3 100644 --- a/sys/dev/aic7xxx/aic7xxx.c +++ b/sys/dev/aic7xxx/aic7xxx.c @@ -1,4 +1,4 @@ -/* +/*- * Core routines and tables shareable across OS platforms. * * Copyright (c) 1994-2002 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx.h b/sys/dev/aic7xxx/aic7xxx.h index d1f7cbabca47..0ac10be92752 100644 --- a/sys/dev/aic7xxx/aic7xxx.h +++ b/sys/dev/aic7xxx/aic7xxx.h @@ -1,4 +1,4 @@ -/* +/*- * Core definitions and data structures shareable across OS platforms. * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx.reg b/sys/dev/aic7xxx/aic7xxx.reg index e196d83b93c7..076c2ba49f92 100644 --- a/sys/dev/aic7xxx/aic7xxx.reg +++ b/sys/dev/aic7xxx/aic7xxx.reg @@ -1,4 +1,4 @@ -/* +/*- * Aic7xxx register and scratch ram definitions. * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx.seq b/sys/dev/aic7xxx/aic7xxx.seq index 810d766beeaf..0eefaaa41b79 100644 --- a/sys/dev/aic7xxx/aic7xxx.seq +++ b/sys/dev/aic7xxx/aic7xxx.seq @@ -1,4 +1,4 @@ -/* +/*- * Adaptec 274x/284x/294x device driver firmware for Linux and FreeBSD. * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx_93cx6.c b/sys/dev/aic7xxx/aic7xxx_93cx6.c index 6d08d2563848..b9738bb5302c 100644 --- a/sys/dev/aic7xxx/aic7xxx_93cx6.c +++ b/sys/dev/aic7xxx/aic7xxx_93cx6.c @@ -1,4 +1,4 @@ -/* +-e/* * Interface for the 93C66/56/46/26/06 serial eeprom parts. * * Copyright (c) 1995, 1996 Daniel M. Eischen diff --git a/sys/dev/aic7xxx/aic7xxx_93cx6.h b/sys/dev/aic7xxx/aic7xxx_93cx6.h index 859c43ccdd46..3827015edcbb 100644 --- a/sys/dev/aic7xxx/aic7xxx_93cx6.h +++ b/sys/dev/aic7xxx/aic7xxx_93cx6.h @@ -1,4 +1,4 @@ -/* +/*- * Interface to the 93C46/56 serial EEPROM that is used to store BIOS * settings for the aic7xxx based adaptec SCSI controllers. It can * also be used for 93C26 and 93C06 serial EEPROMS. diff --git a/sys/dev/aic7xxx/aic7xxx_inline.h b/sys/dev/aic7xxx/aic7xxx_inline.h index e25e1049df2a..989ac79dfc24 100644 --- a/sys/dev/aic7xxx/aic7xxx_inline.h +++ b/sys/dev/aic7xxx/aic7xxx_inline.h @@ -1,4 +1,4 @@ -/* +/*- * Inline routines shareable across OS platforms. * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx_osm.c b/sys/dev/aic7xxx/aic7xxx_osm.c index ba1eca22cd97..a1b65bb860f3 100644 --- a/sys/dev/aic7xxx/aic7xxx_osm.c +++ b/sys/dev/aic7xxx/aic7xxx_osm.c @@ -1,4 +1,4 @@ -/* +/*- * Bus independent FreeBSD shim for the aic7xxx based Adaptec SCSI controllers * * Copyright (c) 1994-2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic7xxx_osm.h b/sys/dev/aic7xxx/aic7xxx_osm.h index 55d9697b6588..07752a3b5bc4 100644 --- a/sys/dev/aic7xxx/aic7xxx_osm.h +++ b/sys/dev/aic7xxx/aic7xxx_osm.h @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD platform specific driver option settings, data structures, * function declarations and includes. * diff --git a/sys/dev/aic7xxx/aic7xxx_pci.c b/sys/dev/aic7xxx/aic7xxx_pci.c index fcb90b92174f..d37607daadd5 100644 --- a/sys/dev/aic7xxx/aic7xxx_pci.c +++ b/sys/dev/aic7xxx/aic7xxx_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * 3940, 2940, aic7895, aic7890, aic7880, * aic7870, aic7860 and aic7850 SCSI controllers diff --git a/sys/dev/aic7xxx/aic_osm_lib.c b/sys/dev/aic7xxx/aic_osm_lib.c index 525fdcc2c00d..8919789c6db0 100644 --- a/sys/dev/aic7xxx/aic_osm_lib.c +++ b/sys/dev/aic7xxx/aic_osm_lib.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD OSM Library for the aic7xxx aic79xx based Adaptec SCSI controllers * * Copyright (c) 1994-2002 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aic_osm_lib.h b/sys/dev/aic7xxx/aic_osm_lib.h index 86a2db45d0a8..1c8678b58bf7 100644 --- a/sys/dev/aic7xxx/aic_osm_lib.h +++ b/sys/dev/aic7xxx/aic_osm_lib.h @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD platform specific, shared driver option settings, data structures, * function declarations and includes. * diff --git a/sys/dev/aic7xxx/aicasm/aicasm.c b/sys/dev/aic7xxx/aicasm/aicasm.c index 0c780f9065be..ad010649c8b5 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm.c +++ b/sys/dev/aic7xxx/aicasm/aicasm.c @@ -1,4 +1,4 @@ -/* +/*- * Aic7xxx SCSI host adapter firmware asssembler * * Copyright (c) 1997, 1998, 2000, 2001 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aicasm/aicasm.h b/sys/dev/aic7xxx/aicasm/aicasm.h index 51678dd46ff7..440cb495f955 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm.h +++ b/sys/dev/aic7xxx/aicasm/aicasm.h @@ -1,4 +1,4 @@ -/* +/*- * Assembler for the sequencer program downloaded to Aic7xxx SCSI host adapters * * Copyright (c) 1997 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aicasm/aicasm_gram.y b/sys/dev/aic7xxx/aicasm/aicasm_gram.y index 67e046d96625..f96116d0f9cb 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_gram.y +++ b/sys/dev/aic7xxx/aicasm/aicasm_gram.y @@ -1,5 +1,5 @@ %{ -/* +/*- * Parser for the Aic7xxx SCSI Host adapter sequencer assembler. * * Copyright (c) 1997, 1998, 2000 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aicasm/aicasm_insformat.h b/sys/dev/aic7xxx/aicasm/aicasm_insformat.h index 3e80f07df49c..820310b469cd 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_insformat.h +++ b/sys/dev/aic7xxx/aicasm/aicasm_insformat.h @@ -1,4 +1,4 @@ -/* +/*- * Instruction formats for the sequencer program downloaded to * Aic7xxx SCSI host adapters * diff --git a/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y b/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y index 439f760b34b5..48551c6b0f84 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y +++ b/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y @@ -1,5 +1,5 @@ %{ -/* +/*- * Sub-parser for macro invocation in the Aic7xxx SCSI * Host adapter sequencer assembler. * diff --git a/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l b/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l index f06e7035cb35..49557a8837f8 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l +++ b/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l @@ -1,5 +1,5 @@ %{ -/* +/*- * Sub-Lexical Analyzer for macro invokation in * the Aic7xxx SCSI Host adapter sequencer assembler. * diff --git a/sys/dev/aic7xxx/aicasm/aicasm_scan.l b/sys/dev/aic7xxx/aicasm/aicasm_scan.l index 45c0b233d0bc..ced09dc2b12b 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_scan.l +++ b/sys/dev/aic7xxx/aicasm/aicasm_scan.l @@ -1,5 +1,5 @@ %{ -/* +/*- * Lexical Analyzer for the Aic7xxx SCSI Host adapter sequencer assembler. * * Copyright (c) 1997, 1998, 2000 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c index f1f448dff569..9770a71b8d09 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_symbol.c +++ b/sys/dev/aic7xxx/aicasm/aicasm_symbol.c @@ -1,4 +1,4 @@ -/* +/*- * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation * * Copyright (c) 1997 Justin T. Gibbs. diff --git a/sys/dev/aic7xxx/aicasm/aicasm_symbol.h b/sys/dev/aic7xxx/aicasm/aicasm_symbol.h index afc22e8b4903..1496c3768c81 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm_symbol.h +++ b/sys/dev/aic7xxx/aicasm/aicasm_symbol.h @@ -1,4 +1,4 @@ -/* +/*- * Aic7xxx SCSI host adapter firmware asssembler symbol table definitions * * Copyright (c) 1997 Justin T. Gibbs. diff --git a/sys/dev/amd/amd.c b/sys/dev/amd/amd.c index b885bf44464e..0c9f28979f36 100644 --- a/sys/dev/amd/amd.c +++ b/sys/dev/amd/amd.c @@ -1,4 +1,4 @@ -/* +/*- ********************************************************************* * FILE NAME : amd.c * BY : C.L. Huang (ching@tekram.com.tw) diff --git a/sys/dev/amd/amd.h b/sys/dev/amd/amd.h index 6171bcfe322a..d9b8cd209b34 100644 --- a/sys/dev/amd/amd.h +++ b/sys/dev/amd/amd.h @@ -1,4 +1,4 @@ -/* +/*- ********************************************************************* * FILE NAME : amd.h * BY : C.L. Huang (ching@tekram.com.tw) diff --git a/sys/dev/amr/amr.c b/sys/dev/amr/amr.c index 8762a019159a..62ce551d3b6e 100644 --- a/sys/dev/amr/amr.c +++ b/sys/dev/amr/amr.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 2002 Eric Moore * Copyright (c) 2002 LSI Logic Corporation * All rights reserved. diff --git a/sys/dev/amr/amr_cam.c b/sys/dev/amr/amr_cam.c index bd4cdb99c4fd..17cd8356f7f1 100644 --- a/sys/dev/amr/amr_cam.c +++ b/sys/dev/amr/amr_cam.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 2002 Eric Moore * Copyright (c) 2002 LSI Logic Corporation * All rights reserved. diff --git a/sys/dev/amr/amr_disk.c b/sys/dev/amr/amr_disk.c index 8c520adc5a47..da7e94eb8a43 100644 --- a/sys/dev/amr/amr_disk.c +++ b/sys/dev/amr/amr_disk.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 2002 Eric Moore * Copyright (c) 2002 LSI Logic Corporation * All rights reserved. diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c index f4cf4ac4356e..8f3ef11b1b2e 100644 --- a/sys/dev/amr/amr_pci.c +++ b/sys/dev/amr/amr_pci.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 2002 Eric Moore * Copyright (c) 2002 LSI Logic Corporation * All rights reserved. diff --git a/sys/dev/an/if_aironet_ieee.h b/sys/dev/an/if_aironet_ieee.h index a838424f5a81..28e4f72148e9 100644 --- a/sys/dev/an/if_aironet_ieee.h +++ b/sys/dev/an/if_aironet_ieee.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index c3487386e14f..29b0adb571c8 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c index 92b9d1c379eb..7144cc8778ad 100644 --- a/sys/dev/an/if_an_isa.c +++ b/sys/dev/an/if_an_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c index 7b22eace94ad..ad37b67de5a2 100644 --- a/sys/dev/an/if_an_pccard.c +++ b/sys/dev/an/if_an_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/an/if_anreg.h b/sys/dev/an/if_anreg.h index 47db1be4e98f..12a03f004ade 100644 --- a/sys/dev/an/if_anreg.h +++ b/sys/dev/an/if_anreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c index 7777e89348b7..70abc1d04b0c 100644 --- a/sys/dev/ar/if_ar.c +++ b/sys/dev/ar/if_ar.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 - 2001 John Hay. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ar/if_ar.h b/sys/dev/ar/if_ar.h index 875e42a6745c..a6fc8cf088ec 100644 --- a/sys/dev/ar/if_ar.h +++ b/sys/dev/ar/if_ar.h @@ -1,4 +1,4 @@ -/* +/*- * if_ar.h * * Copyright (C) 1997-1999 Whistle Communications Inc. diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c index fe07afb8d5b7..81c001f35e8a 100644 --- a/sys/dev/ar/if_ar_isa.c +++ b/sys/dev/ar/if_ar_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 - 2001 John Hay. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ar/if_arregs.h b/sys/dev/ar/if_arregs.h index f73543522760..d643cafee44c 100644 --- a/sys/dev/ar/if_arregs.h +++ b/sys/dev/ar/if_arregs.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 - 2001 John Hay. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/asr/dptalign.h b/sys/dev/asr/dptalign.h index bb72c5b67fb4..038dc6f4b5bb 100644 --- a/sys/dev/asr/dptalign.h +++ b/sys/dev/asr/dptalign.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-1999 Distributed Processing Technology Corporation * All rights reserved. * diff --git a/sys/dev/asr/dptsig.h b/sys/dev/asr/dptsig.h index 94c0810ae3a1..a70ad114bdc3 100644 --- a/sys/dev/asr/dptsig.h +++ b/sys/dev/asr/dptsig.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000-2001 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2oadptr.h b/sys/dev/asr/i2oadptr.h index d880e4793a30..c189d8d658d9 100644 --- a/sys/dev/asr/i2oadptr.h +++ b/sys/dev/asr/i2oadptr.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corproation. * All rights reserved. diff --git a/sys/dev/asr/i2obscsi.h b/sys/dev/asr/i2obscsi.h index 06ee30ce662c..a6666feb661b 100644 --- a/sys/dev/asr/i2obscsi.h +++ b/sys/dev/asr/i2obscsi.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2odep.h b/sys/dev/asr/i2odep.h index 6b2fe5c5ee60..c1e6e5067ce2 100644 --- a/sys/dev/asr/i2odep.h +++ b/sys/dev/asr/i2odep.h @@ -1,4 +1,5 @@ -/**************************************************************************** +/*- + **************************************************************************** * * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. diff --git a/sys/dev/asr/i2odpt.h b/sys/dev/asr/i2odpt.h index 9435b7cf19a5..4c9a9d462318 100644 --- a/sys/dev/asr/i2odpt.h +++ b/sys/dev/asr/i2odpt.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + ***************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2oexec.h b/sys/dev/asr/i2oexec.h index e80030576568..ae4327a6cb80 100644 --- a/sys/dev/asr/i2oexec.h +++ b/sys/dev/asr/i2oexec.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2omsg.h b/sys/dev/asr/i2omsg.h index 23f2791aa3a3..833bd9173d38 100644 --- a/sys/dev/asr/i2omsg.h +++ b/sys/dev/asr/i2omsg.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2otypes.h b/sys/dev/asr/i2otypes.h index eaa97c71342f..c85d92dd2c32 100644 --- a/sys/dev/asr/i2otypes.h +++ b/sys/dev/asr/i2otypes.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/i2outil.h b/sys/dev/asr/i2outil.h index 3262dcda5244..c7e3061dbb28 100644 --- a/sys/dev/asr/i2outil.h +++ b/sys/dev/asr/i2outil.h @@ -1,4 +1,5 @@ -/**************************************************************** +/*- + **************************************************************** * Copyright (c) 1996-2000 Distributed Processing Technology Corporation * Copyright (c) 2000 Adaptec Corporation. * All rights reserved. diff --git a/sys/dev/asr/osd_defs.h b/sys/dev/asr/osd_defs.h index 871d8f92c1ca..c954be9816b1 100644 --- a/sys/dev/asr/osd_defs.h +++ b/sys/dev/asr/osd_defs.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-1999 Distributed Processing Technology Corporation * All rights reserved. * diff --git a/sys/dev/asr/osd_unix.h b/sys/dev/asr/osd_unix.h index e1309e4f0ddc..04f7a29b6969 100644 --- a/sys/dev/asr/osd_unix.h +++ b/sys/dev/asr/osd_unix.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-1999 Distributed Processing Technology Corporation * All rights reserved. * diff --git a/sys/dev/asr/osd_util.h b/sys/dev/asr/osd_util.h index a243c04d1edb..baa233804a3f 100644 --- a/sys/dev/asr/osd_util.h +++ b/sys/dev/asr/osd_util.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-1999 Distributed Processing Technology Corporation * All rights reserved. * diff --git a/sys/dev/asr/sys_info.h b/sys/dev/asr/sys_info.h index 80da928e7cbb..b4c78fe819fd 100644 --- a/sys/dev/asr/sys_info.h +++ b/sys/dev/asr/sys_info.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-1999 Distributed Processing Technology Corporation * All rights reserved. * diff --git a/sys/dev/auxio/auxio.c b/sys/dev/auxio/auxio.c index 74d68808b743..ebd0e254b18e 100644 --- a/sys/dev/auxio/auxio.c +++ b/sys/dev/auxio/auxio.c @@ -27,7 +27,7 @@ /* $NetBSD: auxio.c,v 1.11 2003/07/15 03:36:04 lukem Exp $ */ -/* +/*- * Copyright (c) 2000, 2001 Matthew R. Green * All rights reserved. * diff --git a/sys/dev/auxio/auxioreg.h b/sys/dev/auxio/auxioreg.h index 439bf3487434..0c9ce8e9fa93 100644 --- a/sys/dev/auxio/auxioreg.h +++ b/sys/dev/auxio/auxioreg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $NetBSD: auxioreg.h,v 1.4 2001/10/22 07:31:41 mrg Exp $ */ -/* +/*- * Copyright (c) 2000 Matthew R. Green * All rights reserved. * diff --git a/sys/dev/awi/if_awi_pccard.c b/sys/dev/awi/if_awi_pccard.c index 683790a5cb80..1f00ff7a51a1 100644 --- a/sys/dev/awi/if_awi_pccard.c +++ b/sys/dev/awi/if_awi_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Atsushi Onoe * All rights reserved. * diff --git a/sys/dev/bfe/if_bfe.c b/sys/dev/bfe/if_bfe.c index 4d9a4627f8d2..c6e93a26b517 100644 --- a/sys/dev/bfe/if_bfe.c +++ b/sys/dev/bfe/if_bfe.c @@ -1,9 +1,7 @@ -/* +/*- * Copyright (c) 2003 Stuart Walsh * and Duncan Barclay - */ - -/* + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/bfe/if_bfereg.h b/sys/dev/bfe/if_bfereg.h index 383154f22db7..c76779a91a93 100644 --- a/sys/dev/bfe/if_bfereg.h +++ b/sys/dev/bfe/if_bfereg.h @@ -1,5 +1,6 @@ -/* Copyright (c) 2003 Stuart Walsh */ -/* +/*- + * Copyright (c) 2003 Stuart Walsh + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index 4563f32b15dc..9c5e4b5f10ec 100644 --- a/sys/dev/bge/if_bge.c +++ b/sys/dev/bge/if_bge.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/bge/if_bgereg.h b/sys/dev/bge/if_bgereg.h index 026ec81280ac..c95265597ed5 100644 --- a/sys/dev/bge/if_bgereg.h +++ b/sys/dev/bge/if_bgereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/bktr/bktr_audio.h b/sys/dev/bktr/bktr_audio.h index 9b7500703b24..c05e40c31ea3 100644 --- a/sys/dev/bktr/bktr_audio.h +++ b/sys/dev/bktr/bktr_audio.h @@ -13,7 +13,7 @@ * */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_card.h b/sys/dev/bktr/bktr_card.h index 720a798f4982..77ccaf44ab0a 100644 --- a/sys/dev/bktr/bktr_card.h +++ b/sys/dev/bktr/bktr_card.h @@ -14,7 +14,7 @@ * */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_core.h b/sys/dev/bktr/bktr_core.h index 315566f31a40..980ced76621a 100644 --- a/sys/dev/bktr/bktr_core.h +++ b/sys/dev/bktr/bktr_core.h @@ -15,7 +15,7 @@ * */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_mem.c b/sys/dev/bktr/bktr_mem.c index 3adacce803a9..5683410db415 100644 --- a/sys/dev/bktr/bktr_mem.c +++ b/sys/dev/bktr/bktr_mem.c @@ -11,7 +11,7 @@ * time the bktr driver is loaded. */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 2000 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_mem.h b/sys/dev/bktr/bktr_mem.h index 4c6d7a508ac7..8feb55206c11 100644 --- a/sys/dev/bktr/bktr_mem.h +++ b/sys/dev/bktr/bktr_mem.h @@ -13,7 +13,7 @@ * time the bktr driver is loaded. */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 2000 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_os.h b/sys/dev/bktr/bktr_os.h index d2826022a94d..1cd708df3c6a 100644 --- a/sys/dev/bktr/bktr_os.h +++ b/sys/dev/bktr/bktr_os.h @@ -10,7 +10,7 @@ * */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/bktr_reg.h b/sys/dev/bktr/bktr_reg.h index c8fc4d4bc7ea..e03b99a96e3d 100644 --- a/sys/dev/bktr/bktr_reg.h +++ b/sys/dev/bktr/bktr_reg.h @@ -1,4 +1,4 @@ -/* +/*- * $FreeBSD$ * * Copyright (c) 1999 Roger Hardiman diff --git a/sys/dev/bktr/bktr_tuner.h b/sys/dev/bktr/bktr_tuner.h index 338d1168f543..a1aa64a28d4a 100644 --- a/sys/dev/bktr/bktr_tuner.h +++ b/sys/dev/bktr/bktr_tuner.h @@ -10,7 +10,7 @@ * */ -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. diff --git a/sys/dev/bktr/ioctl_meteor.h b/sys/dev/bktr/ioctl_meteor.h index 5f70a4b87ecd..681990aa03c0 100644 --- a/sys/dev/bktr/ioctl_meteor.h +++ b/sys/dev/bktr/ioctl_meteor.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 Mark Tinguely and Jim Lowe * All rights reserved. * diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index 4920cdb351dc..74ad13b81875 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -1,4 +1,4 @@ -/* +/*- * Generic driver for the BusLogic MultiMaster SCSI host adapters * Product specific probe and attach routines can be found in: * sys/dev/buslogic/bt_isa.c BT-54X, BT-445 cards diff --git a/sys/dev/buslogic/bt_eisa.c b/sys/dev/buslogic/bt_eisa.c index 3157503513a3..b1c40107aa78 100644 --- a/sys/dev/buslogic/bt_eisa.c +++ b/sys/dev/buslogic/bt_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * Buslogic BT74x SCSI controllers * diff --git a/sys/dev/buslogic/bt_isa.c b/sys/dev/buslogic/bt_isa.c index 3241abdb00c0..78f4b2e1133b 100644 --- a/sys/dev/buslogic/bt_isa.c +++ b/sys/dev/buslogic/bt_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * Buslogic BT-54X and BT-445 cards * diff --git a/sys/dev/buslogic/btreg.h b/sys/dev/buslogic/btreg.h index 4a796f2a5813..be6e74f90ebe 100644 --- a/sys/dev/buslogic/btreg.h +++ b/sys/dev/buslogic/btreg.h @@ -1,4 +1,4 @@ -/* +/*- * Generic register and struct definitions for the BusLogic * MultiMaster SCSI host adapters. Product specific probe and * attach routines can be found in: diff --git a/sys/dev/cardbus/cardbus.c b/sys/dev/cardbus/cardbus.c index 29557d20fb13..ba3f1ca42d3e 100644 --- a/sys/dev/cardbus/cardbus.c +++ b/sys/dev/cardbus/cardbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 M. Warner Losh. All Rights Reserved. * Copyright (c) 2000,2001 Jonathan Chen. All rights reserved. * diff --git a/sys/dev/cardbus/cardbus_cis.c b/sys/dev/cardbus/cardbus_cis.c index e17b935aed2d..6c4a3727a49e 100644 --- a/sys/dev/cardbus/cardbus_cis.c +++ b/sys/dev/cardbus/cardbus_cis.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/cardbus/cardbus_cis.h b/sys/dev/cardbus/cardbus_cis.h index a56d13b9df97..43adcfa01ce1 100644 --- a/sys/dev/cardbus/cardbus_cis.h +++ b/sys/dev/cardbus/cardbus_cis.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/cardbus/cardbusreg.h b/sys/dev/cardbus/cardbusreg.h index c356323d2125..56171aad3982 100644 --- a/sys/dev/cardbus/cardbusreg.h +++ b/sys/dev/cardbus/cardbusreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/cardbus/cardbusvar.h b/sys/dev/cardbus/cardbusvar.h index b8276894912d..d200f59e539e 100644 --- a/sys/dev/cardbus/cardbusvar.h +++ b/sys/dev/cardbus/cardbusvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/cnw/if_cnwioctl.h b/sys/dev/cnw/if_cnwioctl.h index 04e8c3b23727..cc1b54890a99 100644 --- a/sys/dev/cnw/if_cnwioctl.h +++ b/sys/dev/cnw/if_cnwioctl.h @@ -1,7 +1,7 @@ /* $NetBSD: if_cnwioctl.h,v 1.2 1999/11/29 12:54:00 itojun Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1996, 1997 Berkeley Software Design, Inc. * All rights reserved. * diff --git a/sys/dev/cp/cpddk.c b/sys/dev/cp/cpddk.c index 1fbd22d57fea..7c82f9b85208 100644 --- a/sys/dev/cp/cpddk.c +++ b/sys/dev/cp/cpddk.c @@ -1,4 +1,4 @@ -/* +/*- * Low-level subroutines for Cronyx Tau-PCI adapter. * * Copyright (C) 1999-2003 Cronyx Engineering. diff --git a/sys/dev/cp/cpddk.h b/sys/dev/cp/cpddk.h index 69d0512d66cb..3ff40bbd68d1 100644 --- a/sys/dev/cp/cpddk.h +++ b/sys/dev/cp/cpddk.h @@ -1,4 +1,4 @@ -/* +/*- * Cronyx Tau-PCI DDK definitions. * * Copyright (C) 1999-2003 Cronyx Engineering. diff --git a/sys/dev/cp/if_cp.c b/sys/dev/cp/if_cp.c index 2674c90ba391..bcc818f53bdd 100644 --- a/sys/dev/cp/if_cp.c +++ b/sys/dev/cp/if_cp.c @@ -1,4 +1,4 @@ -/* +/*- * Cronyx-Tau-PCI adapter driver for FreeBSD. * Supports PPP/HDLC, Cisco/HDLC and FrameRelay protocol in synchronous mode, * and asyncronous channels with full modem control. diff --git a/sys/dev/cp/ng_cp.h b/sys/dev/cp/ng_cp.h index 0dd65618cce3..f35d81760499 100644 --- a/sys/dev/cp/ng_cp.h +++ b/sys/dev/cp/ng_cp.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Tau-PCI adapter driver. * * Copyright (C) 1999-2004 Cronyx Engineering. diff --git a/sys/dev/cs/if_cs.c b/sys/dev/cs/if_cs.c index 939c2080c815..a8f058068f53 100644 --- a/sys/dev/cs/if_cs.c +++ b/sys/dev/cs/if_cs.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997,1998 Maxim Bolotin and Oleg Sharoiko. * All rights reserved. * diff --git a/sys/dev/cs/if_cs_isa.c b/sys/dev/cs/if_cs_isa.c index dcbd02f06869..8064f4b3a7a4 100644 --- a/sys/dev/cs/if_cs_isa.c +++ b/sys/dev/cs/if_cs_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997,1998 Maxim Bolotin and Oleg Sharoiko. * All rights reserved. * diff --git a/sys/dev/cs/if_cs_pccard.c b/sys/dev/cs/if_cs_pccard.c index 721a49a9de91..dbd3e54aad14 100644 --- a/sys/dev/cs/if_cs_pccard.c +++ b/sys/dev/cs/if_cs_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/cs/if_csreg.h b/sys/dev/cs/if_csreg.h index 5a93643591d5..dc844c8cc810 100644 --- a/sys/dev/cs/if_csreg.h +++ b/sys/dev/cs/if_csreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997,1998 Maxim Bolotin and Oleg Sharoiko. * All rights reserved. * diff --git a/sys/dev/cs/if_csvar.h b/sys/dev/cs/if_csvar.h index 0f62c62d934d..0222841fcf08 100644 --- a/sys/dev/cs/if_csvar.h +++ b/sys/dev/cs/if_csvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/ct/bshw_machdep.c b/sys/dev/ct/bshw_machdep.c index 5528f439f1ce..0e48f77ad286 100644 --- a/sys/dev/ct/bshw_machdep.c +++ b/sys/dev/ct/bshw_machdep.c @@ -4,7 +4,7 @@ __FBSDID("$FreeBSD$"); /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ct/bshwvar.h b/sys/dev/ct/bshwvar.h index 9e2259c94c76..ba42a7206979 100644 --- a/sys/dev/ct/bshwvar.h +++ b/sys/dev/ct/bshwvar.h @@ -2,7 +2,7 @@ /* $NecBSD: bshwvar.h,v 1.3.14.3 2001/06/21 04:07:37 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1994, 1995, 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ct/ct.c b/sys/dev/ct/ct.c index eb87dbfb7e55..602e094509ca 100644 --- a/sys/dev/ct/ct.c +++ b/sys/dev/ct/ct.c @@ -7,7 +7,7 @@ __FBSDID("$FreeBSD$"); #define CT_DEBUG #define CT_IO_CONTROL_FLAGS (CT_USE_CCSEQ | CT_FAST_INTR) -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ct/ct_isa.c b/sys/dev/ct/ct_isa.c index 15173e23a550..b16b1d872f0e 100644 --- a/sys/dev/ct/ct_isa.c +++ b/sys/dev/ct/ct_isa.c @@ -4,7 +4,7 @@ __FBSDID("$FreeBSD$"); /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ct/ct_machdep.h b/sys/dev/ct/ct_machdep.h index 18a9ec86673c..2e069f5d33a1 100644 --- a/sys/dev/ct/ct_machdep.h +++ b/sys/dev/ct/ct_machdep.h @@ -2,7 +2,7 @@ /* $NecBSD: ct_machdep.h,v 1.4.12.2 2001/06/20 06:13:34 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ct/ctvar.h b/sys/dev/ct/ctvar.h index 4e7ba1569edc..8c63445e0200 100644 --- a/sys/dev/ct/ctvar.h +++ b/sys/dev/ct/ctvar.h @@ -2,7 +2,7 @@ /* $NecBSD: ctvar.h,v 1.4.14.3 2001/06/20 06:13:34 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ctau/am8530.h b/sys/dev/ctau/am8530.h index 0ab2d4eaeb45..09831c624ed7 100644 --- a/sys/dev/ctau/am8530.h +++ b/sys/dev/ctau/am8530.h @@ -1,4 +1,4 @@ -/* +/*- * AMD Am83C30 serial communication controller registers. * * Copyright (C) 1996 Cronyx Engineering. diff --git a/sys/dev/ctau/ctau.c b/sys/dev/ctau/ctau.c index 37cbd4698caa..9b4f40475af3 100644 --- a/sys/dev/ctau/ctau.c +++ b/sys/dev/ctau/ctau.c @@ -1,4 +1,4 @@ -/* +/*- * Low-level subroutines for Cronyx-Tau adapter. * * Copyright (C) 1994-2001 Cronyx Engineering. diff --git a/sys/dev/ctau/ctaureg.h b/sys/dev/ctau/ctaureg.h index 9097a5522a1e..3cd2ce21cedd 100644 --- a/sys/dev/ctau/ctaureg.h +++ b/sys/dev/ctau/ctaureg.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Tau adapter, based on Hitachi HD64570 controller. * * Copyright (C) 1996 Cronyx Engineering. diff --git a/sys/dev/ctau/ctddk.c b/sys/dev/ctau/ctddk.c index 92f98056697f..0a9dbd2fd46b 100644 --- a/sys/dev/ctau/ctddk.c +++ b/sys/dev/ctau/ctddk.c @@ -1,4 +1,4 @@ -/* +/*- * DDK library for Cronyx-Tau adapters. * * Copyright (C) 1998-1999 Cronyx Engineering. diff --git a/sys/dev/ctau/ctddk.h b/sys/dev/ctau/ctddk.h index d48e1092319a..99620902fc96 100644 --- a/sys/dev/ctau/ctddk.h +++ b/sys/dev/ctau/ctddk.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Tau adapter driver. * * Copyright (C) 1994-2003 Cronyx Engineering. diff --git a/sys/dev/ctau/ds2153.h b/sys/dev/ctau/ds2153.h index bb0241464a55..44ab02d41fe9 100644 --- a/sys/dev/ctau/ds2153.h +++ b/sys/dev/ctau/ds2153.h @@ -1,4 +1,4 @@ -/* +/*- * Dallas DS2153, DS21x54 single-chip E1 tranceiver registers. * * Copyright (C) 1996 Cronyx Engineering. diff --git a/sys/dev/ctau/hdc64570.h b/sys/dev/ctau/hdc64570.h index 978ff6ab20c5..29d28cddb04c 100644 --- a/sys/dev/ctau/hdc64570.h +++ b/sys/dev/ctau/hdc64570.h @@ -1,4 +1,4 @@ -/* +/*- * Hitachi HD64570 serial communications adaptor registers. * * Copyright (C) 1996 Cronyx Engineering. diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index 0292be058fb3..b18dc9497b4a 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -1,4 +1,4 @@ -/* +/*- * Cronyx-Tau adapter driver for FreeBSD. * Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode, * and asyncronous channels with full modem control. diff --git a/sys/dev/ctau/lxt318.h b/sys/dev/ctau/lxt318.h index f194b7bda03b..a1064afca67c 100644 --- a/sys/dev/ctau/lxt318.h +++ b/sys/dev/ctau/lxt318.h @@ -1,4 +1,4 @@ -/* +/*- * Level One LXT318 E1 transceiver registers. * Crystal CS61318 E1 Line Interface Unit registers. * Crystal CS61581 T1/E1 Line Interface Unit registers. diff --git a/sys/dev/ctau/ng_ct.h b/sys/dev/ctau/ng_ct.h index 5fba87812cda..bd4d208e1204 100644 --- a/sys/dev/ctau/ng_ct.h +++ b/sys/dev/ctau/ng_ct.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Tau adapter driver. * * Copyright (C) 1999-2004 Cronyx Engineering. diff --git a/sys/dev/cx/cronyxfw.h b/sys/dev/cx/cronyxfw.h index 70264136ec14..56b2033b09ab 100644 --- a/sys/dev/cx/cronyxfw.h +++ b/sys/dev/cx/cronyxfw.h @@ -1,4 +1,4 @@ -/* +/*- * Cronyx firmware definitions. * * Copyright (C) 1996 Cronyx Engineering. diff --git a/sys/dev/cx/csigma.c b/sys/dev/cx/csigma.c index db2c1380c264..e880b88cbef0 100644 --- a/sys/dev/cx/csigma.c +++ b/sys/dev/cx/csigma.c @@ -1,4 +1,4 @@ -/* +/*- * Low-level subroutines for Cronyx-Sigma adapter. * * Copyright (C) 1994-2000 Cronyx Engineering. diff --git a/sys/dev/cx/cxddk.c b/sys/dev/cx/cxddk.c index e4328b59b127..bbcc904051e8 100644 --- a/sys/dev/cx/cxddk.c +++ b/sys/dev/cx/cxddk.c @@ -1,4 +1,4 @@ -/* +/*- * Cronyx-Sigma Driver Development Kit. * * Copyright (C) 1998 Cronyx Engineering. diff --git a/sys/dev/cx/cxddk.h b/sys/dev/cx/cxddk.h index 75b40c04884d..bd95aa6e254c 100644 --- a/sys/dev/cx/cxddk.h +++ b/sys/dev/cx/cxddk.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Sigma adapter driver. * * Copyright (C) 1994-2001 Cronyx Engineering. diff --git a/sys/dev/cx/cxreg.h b/sys/dev/cx/cxreg.h index 0cfc6b0f101a..70a937d11280 100644 --- a/sys/dev/cx/cxreg.h +++ b/sys/dev/cx/cxreg.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Sigma adapter, based on Cirrus Logic multiprotocol * controller RISC processor CL-CD2400/2401. * diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c index c7f667344c04..8ff12c029dc2 100644 --- a/sys/dev/cx/if_cx.c +++ b/sys/dev/cx/if_cx.c @@ -1,4 +1,4 @@ -/* +/*- * Cronyx-Sigma adapter driver for FreeBSD. * Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode, * and asyncronous channels with full modem control. diff --git a/sys/dev/cx/machdep.h b/sys/dev/cx/machdep.h index 0a622f1e8cc7..c4affc46923a 100644 --- a/sys/dev/cx/machdep.h +++ b/sys/dev/cx/machdep.h @@ -1,4 +1,4 @@ -/* +/*- * Cronyx DDK: platform dependent definitions. * * Copyright (C) 1998-1999 Cronyx Engineering diff --git a/sys/dev/cx/ng_cx.h b/sys/dev/cx/ng_cx.h index a878e9872dfa..30b3c14daa4e 100644 --- a/sys/dev/cx/ng_cx.h +++ b/sys/dev/cx/ng_cx.h @@ -1,4 +1,4 @@ -/* +/*- * Defines for Cronyx-Tau adapter driver. * * Copyright (C) 1999-2004 Cronyx Engineering. diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index 98c21973b3a2..dd119e9145a2 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996, David Greenman * All rights reserved. * diff --git a/sys/dev/dc/dcphy.c b/sys/dev/dc/dcphy.c index 28affb81063c..ddf9b7e2a605 100644 --- a/sys/dev/dc/dcphy.c +++ b/sys/dev/dc/dcphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/dcons/dcons.c b/sys/dev/dcons/dcons.c index b48a5040d24e..0bfbbe2fce8a 100644 --- a/sys/dev/dcons/dcons.c +++ b/sys/dev/dcons/dcons.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003,2004 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/dcons/dcons.h b/sys/dev/dcons/dcons.h index 988c81f2722c..daf9cb4e3b0e 100644 --- a/sys/dev/dcons/dcons.h +++ b/sys/dev/dcons/dcons.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2002-2004 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/dcons/dcons_crom.c b/sys/dev/dcons/dcons_crom.c index 32ae15a01be9..bfa91464a834 100644 --- a/sys/dev/dcons/dcons_crom.c +++ b/sys/dev/dcons/dcons_crom.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/dcons/dcons_os.c b/sys/dev/dcons/dcons_os.c index 3bdbb69039da..8ca20aa272f3 100644 --- a/sys/dev/dcons/dcons_os.c +++ b/sys/dev/dcons/dcons_os.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003,2004 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/dcons/dcons_os.h b/sys/dev/dcons/dcons_os.h index f88738b5b221..b1d1c627589c 100644 --- a/sys/dev/dcons/dcons_os.h +++ b/sys/dev/dcons/dcons_os.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2002-2004 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/dec/mc146818reg.h b/sys/dev/dec/mc146818reg.h index e60d043f13dd..4a3df1c117b0 100644 --- a/sys/dev/dec/mc146818reg.h +++ b/sys/dev/dec/mc146818reg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $NetBSD: mc146818reg.h,v 1.2 1997/03/12 06:53:42 cgd Exp $ */ -/* +/*- * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/dec/mcclock.c b/sys/dev/dec/mcclock.c index 5c1472cb1975..da8664e007af 100644 --- a/sys/dev/dec/mcclock.c +++ b/sys/dev/dec/mcclock.c @@ -3,7 +3,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/dec/mcclock_if.m b/sys/dev/dec/mcclock_if.m index a67caca2604e..89bc6c481194 100644 --- a/sys/dev/dec/mcclock_if.m +++ b/sys/dev/dec/mcclock_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1998 Doug Rabson # All rights reserved. # diff --git a/sys/dev/dec/mcclockvar.h b/sys/dev/dec/mcclockvar.h index 196209be3bce..b0df9d2eff2c 100644 --- a/sys/dev/dec/mcclockvar.h +++ b/sys/dev/dec/mcclockvar.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $NetBSD: mcclockvar.h,v 1.4 1997/06/22 08:02:19 jonathan Exp $ */ -/* +/*- * Copyright (c) 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/dpt/dpt.h b/sys/dev/dpt/dpt.h index d04c95a3b8bb..39171950f414 100644 --- a/sys/dev/dpt/dpt.h +++ b/sys/dev/dpt/dpt.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997 by Simon Shapiro * All Rights Reserved * diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c index 59256872916f..db2f7b06603c 100644 --- a/sys/dev/dpt/dpt_scsi.c +++ b/sys/dev/dpt/dpt_scsi.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997 by Simon Shapiro * All Rights Reserved * diff --git a/sys/dev/drm/ati_pcigart.h b/sys/dev/drm/ati_pcigart.h index dd1141f5303a..0bdb3363313b 100644 --- a/sys/dev/drm/ati_pcigart.h +++ b/sys/dev/drm/ati_pcigart.h @@ -1,6 +1,6 @@ /* ati_pcigart.h -- ATI PCI GART support -*- linux-c -*- - * Created: Wed Dec 13 21:52:19 2000 by gareth@valinux.com - * + * Created: Wed Dec 13 21:52:19 2000 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/drm.h b/sys/dev/drm/drm.h index 36e86b364e1a..167578308eb3 100644 --- a/sys/dev/drm/drm.h +++ b/sys/dev/drm/drm.h @@ -8,7 +8,7 @@ * Dec 1999, Richard Henderson , move to generic \c cmpxchg. */ -/* +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/drmP.h b/sys/dev/drm/drmP.h index e45bad4fda9a..c30ab875a8b8 100644 --- a/sys/dev/drm/drmP.h +++ b/sys/dev/drm/drmP.h @@ -1,6 +1,6 @@ /* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*- - * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com - * + * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/drm_agpsupport.h b/sys/dev/drm/drm_agpsupport.h index fc2f4d1e5663..4758a88e9d3c 100644 --- a/sys/dev/drm/drm_agpsupport.h +++ b/sys/dev/drm/drm_agpsupport.h @@ -1,6 +1,6 @@ /* drm_agpsupport.h -- DRM support for AGP/GART backend -*- linux-c -*- - * Created: Mon Dec 13 09:56:45 1999 by faith@precisioninsight.com - * + * Created: Mon Dec 13 09:56:45 1999 by faith@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_auth.h b/sys/dev/drm/drm_auth.h index 9141d5778b06..faa3ffcb0234 100644 --- a/sys/dev/drm/drm_auth.h +++ b/sys/dev/drm/drm_auth.h @@ -1,6 +1,6 @@ /* drm_auth.h -- IOCTLs for authentication -*- linux-c -*- - * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com - * + * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_bufs.h b/sys/dev/drm/drm_bufs.h index 8b40f9847430..841fb1360da0 100644 --- a/sys/dev/drm/drm_bufs.h +++ b/sys/dev/drm/drm_bufs.h @@ -1,6 +1,6 @@ /* drm_bufs.h -- Generic buffer template -*- linux-c -*- - * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com - * + * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com */ +/*- * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_context.h b/sys/dev/drm/drm_context.h index 9d832641fb7d..177bd5967399 100644 --- a/sys/dev/drm/drm_context.h +++ b/sys/dev/drm/drm_context.h @@ -1,6 +1,6 @@ /* drm_context.h -- IOCTLs for generic contexts -*- linux-c -*- - * Created: Fri Nov 24 18:31:37 2000 by gareth@valinux.com - * + * Created: Fri Nov 24 18:31:37 2000 by gareth@valinux.com */ +/*- * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_dma.h b/sys/dev/drm/drm_dma.h index 7cf3d174653d..9a0f2aa27062 100644 --- a/sys/dev/drm/drm_dma.h +++ b/sys/dev/drm/drm_dma.h @@ -1,6 +1,6 @@ /* drm_dma.c -- DMA IOCTL and function support -*- linux-c -*- - * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com - * + * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com */ +/*- * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_drawable.h b/sys/dev/drm/drm_drawable.h index 7f3938d62090..d7381f17b110 100644 --- a/sys/dev/drm/drm_drawable.h +++ b/sys/dev/drm/drm_drawable.h @@ -1,6 +1,6 @@ /* drm_drawable.h -- IOCTLs for drawables -*- linux-c -*- - * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com - * + * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_drv.h b/sys/dev/drm/drm_drv.h index 1227296eb6ac..59bf0c83dc6c 100644 --- a/sys/dev/drm/drm_drv.h +++ b/sys/dev/drm/drm_drv.h @@ -1,6 +1,6 @@ /* drm_drv.h -- Generic driver template -*- linux-c -*- - * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com - * + * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com */ +/*- * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_fops.h b/sys/dev/drm/drm_fops.h index 4c79fe117237..0e4b24c97297 100644 --- a/sys/dev/drm/drm_fops.h +++ b/sys/dev/drm/drm_fops.h @@ -1,6 +1,6 @@ /* drm_fops.h -- File operations for DRM -*- linux-c -*- - * Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com - * + * Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_ioctl.h b/sys/dev/drm/drm_ioctl.h index d34851937721..e04e47bd0609 100644 --- a/sys/dev/drm/drm_ioctl.h +++ b/sys/dev/drm/drm_ioctl.h @@ -1,6 +1,6 @@ /* drm_ioctl.h -- IOCTL processing for DRM -*- linux-c -*- - * Created: Fri Jan 8 09:01:26 1999 by faith@valinux.com - * + * Created: Fri Jan 8 09:01:26 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_irq.h b/sys/dev/drm/drm_irq.h index 8f7d747f4799..89f5cda6b745 100644 --- a/sys/dev/drm/drm_irq.h +++ b/sys/dev/drm/drm_irq.h @@ -1,6 +1,6 @@ /* drm_dma.c -- DMA IOCTL and function support - * Created: Fri Oct 18 2003 by anholt@FreeBSD.org - * + * Created: Fri Oct 18 2003 by anholt@FreeBSD.org */ +/*- * Copyright 2003 Eric Anholt * All Rights Reserved. * diff --git a/sys/dev/drm/drm_linux_list.h b/sys/dev/drm/drm_linux_list.h index 4fef61c528b6..12de8233f150 100644 --- a/sys/dev/drm/drm_linux_list.h +++ b/sys/dev/drm/drm_linux_list.h @@ -1,6 +1,6 @@ /* drm_linux_list.h -- linux list functions for the BSDs. - * Created: Mon Apr 7 14:30:16 1999 by anholt@FreeBSD.org - * + * Created: Mon Apr 7 14:30:16 1999 by anholt@FreeBSD.org */ +/*- * Copyright 2003 Eric Anholt * All Rights Reserved. * diff --git a/sys/dev/drm/drm_lock.h b/sys/dev/drm/drm_lock.h index f0937076e552..bcdcbfe3dc05 100644 --- a/sys/dev/drm/drm_lock.h +++ b/sys/dev/drm/drm_lock.h @@ -1,6 +1,6 @@ /* lock.c -- IOCTLs for locking -*- linux-c -*- - * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com - * + * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_memory.h b/sys/dev/drm/drm_memory.h index 917cb1e15e7a..1bf0e8e1470f 100644 --- a/sys/dev/drm/drm_memory.h +++ b/sys/dev/drm/drm_memory.h @@ -1,6 +1,6 @@ /* drm_memory.h -- Memory management wrappers for DRM -*- linux-c -*- - * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com - * + * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_memory_debug.h b/sys/dev/drm/drm_memory_debug.h index a627fb4281de..1ce7ffe403c6 100644 --- a/sys/dev/drm/drm_memory_debug.h +++ b/sys/dev/drm/drm_memory_debug.h @@ -1,6 +1,6 @@ /* drm_memory.h -- Memory management wrappers for DRM -*- linux-c -*- - * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com - * + * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/drm_os_freebsd.h b/sys/dev/drm/drm_os_freebsd.h index a9a7308ccd3d..c2fafad2fc32 100644 --- a/sys/dev/drm/drm_os_freebsd.h +++ b/sys/dev/drm/drm_os_freebsd.h @@ -5,7 +5,7 @@ * \author Eric Anholt */ -/* +/*- * Copyright 2003 Eric Anholt * All Rights Reserved. * diff --git a/sys/dev/drm/drm_pci.h b/sys/dev/drm/drm_pci.h index 2a0569d06d0c..12add61778e5 100644 --- a/sys/dev/drm/drm_pci.h +++ b/sys/dev/drm/drm_pci.h @@ -5,7 +5,7 @@ * \author Eric Anholt */ -/* +/*- * Copyright 2003 Eric Anholt. * All Rights Reserved. * diff --git a/sys/dev/drm/drm_sarea.h b/sys/dev/drm/drm_sarea.h index 45bef824e7cc..cee32192f0b3 100644 --- a/sys/dev/drm/drm_sarea.h +++ b/sys/dev/drm/drm_sarea.h @@ -5,7 +5,7 @@ * \author Michel D�zer */ -/* +/*- * Copyright 2002 Tungsten Graphics, Inc., Cedar Park, Texas. * All Rights Reserved. * diff --git a/sys/dev/drm/drm_scatter.h b/sys/dev/drm/drm_scatter.h index 4da0a1b6f1ca..a67f1c62d95c 100644 --- a/sys/dev/drm/drm_scatter.h +++ b/sys/dev/drm/drm_scatter.h @@ -1,6 +1,6 @@ /* drm_scatter.h -- IOCTLs to manage scatter/gather memory -*- linux-c -*- - * Created: Mon Dec 18 23:20:54 2000 by gareth@valinux.com - * + * Created: Mon Dec 18 23:20:54 2000 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/drm_sysctl.h b/sys/dev/drm/drm_sysctl.h index c7e6eef980a1..64b3408e9ca1 100644 --- a/sys/dev/drm/drm_sysctl.h +++ b/sys/dev/drm/drm_sysctl.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright 2003 Eric Anholt * All Rights Reserved. * diff --git a/sys/dev/drm/drm_vm.h b/sys/dev/drm/drm_vm.h index 2637a83998ed..23a6de74a47a 100644 --- a/sys/dev/drm/drm_vm.h +++ b/sys/dev/drm/drm_vm.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright 2003 Eric Anholt * All Rights Reserved. * diff --git a/sys/dev/drm/mga.h b/sys/dev/drm/mga.h index 74a98ac40ef4..6f463c31c8b4 100644 --- a/sys/dev/drm/mga.h +++ b/sys/dev/drm/mga.h @@ -1,6 +1,6 @@ /* mga.h -- Matrox G200/G400 DRM template customization -*- linux-c -*- - * Created: Thu Jan 11 21:29:32 2001 by gareth@valinux.com - * + * Created: Thu Jan 11 21:29:32 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/mga_dma.c b/sys/dev/drm/mga_dma.c index 3f75d7663f2a..57db72d6dad6 100644 --- a/sys/dev/drm/mga_dma.c +++ b/sys/dev/drm/mga_dma.c @@ -1,6 +1,6 @@ /* mga_dma.c -- DMA support for mga g200/g400 -*- linux-c -*- - * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com - * + * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/mga_drm.h b/sys/dev/drm/mga_drm.h index 57ecc16c5719..fb851a9890bc 100644 --- a/sys/dev/drm/mga_drm.h +++ b/sys/dev/drm/mga_drm.h @@ -1,6 +1,6 @@ /* mga_drm.h -- Public header for the Matrox g200/g400 driver -*- linux-c -*- - * Created: Tue Jan 25 01:50:01 1999 by jhartmann@precisioninsight.com - * + * Created: Tue Jan 25 01:50:01 1999 by jhartmann@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/mga_drv.c b/sys/dev/drm/mga_drv.c index cbec2999beb5..6de110a04e98 100644 --- a/sys/dev/drm/mga_drv.c +++ b/sys/dev/drm/mga_drv.c @@ -1,6 +1,6 @@ /* mga_drv.c -- Matrox G200/G400 driver -*- linux-c -*- - * Created: Mon Dec 13 01:56:22 1999 by jhartmann@precisioninsight.com - * + * Created: Mon Dec 13 01:56:22 1999 by jhartmann@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/mga_drv.h b/sys/dev/drm/mga_drv.h index c84c9ea5b963..b4f333a6c09d 100644 --- a/sys/dev/drm/mga_drv.h +++ b/sys/dev/drm/mga_drv.h @@ -1,6 +1,6 @@ /* mga_drv.h -- Private header for the Matrox G200/G400 driver -*- linux-c -*- - * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com - * + * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/mga_irq.c b/sys/dev/drm/mga_irq.c index 1c9a93f5940a..82a2705add19 100644 --- a/sys/dev/drm/mga_irq.c +++ b/sys/dev/drm/mga_irq.c @@ -1,5 +1,5 @@ -/* mga_irq.c -- IRQ handling for radeon -*- linux-c -*- - * +/* mga_irq.c -- IRQ handling for radeon -*- linux-c -*- */ +/*- * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved. * * The Weather Channel (TM) funded Tungsten Graphics to develop the diff --git a/sys/dev/drm/mga_state.c b/sys/dev/drm/mga_state.c index b4a7d6f07d9f..8e72f2200f67 100644 --- a/sys/dev/drm/mga_state.c +++ b/sys/dev/drm/mga_state.c @@ -1,6 +1,6 @@ /* mga_state.c -- State support for MGA G200/G400 -*- linux-c -*- - * Created: Thu Jan 27 02:53:43 2000 by jhartmann@precisioninsight.com - * + * Created: Thu Jan 27 02:53:43 2000 by jhartmann@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/mga_ucode.h b/sys/dev/drm/mga_ucode.h index 3dd85e3bea2f..575166e96d24 100644 --- a/sys/dev/drm/mga_ucode.h +++ b/sys/dev/drm/mga_ucode.h @@ -1,6 +1,6 @@ /* mga_ucode.h -- Matrox G200/G400 WARP engine microcode -*- linux-c -*- - * Created: Thu Jan 11 21:20:43 2001 by gareth@valinux.com - * + * Created: Thu Jan 11 21:20:43 2001 by gareth@valinux.com */ +/*- * Copyright 1999 Matrox Graphics Inc. * All Rights Reserved. * diff --git a/sys/dev/drm/mga_warp.c b/sys/dev/drm/mga_warp.c index 035d04589add..db292dd69bdd 100644 --- a/sys/dev/drm/mga_warp.c +++ b/sys/dev/drm/mga_warp.c @@ -1,6 +1,6 @@ /* mga_warp.c -- Matrox G200/G400 WARP engine management -*- linux-c -*- - * Created: Thu Jan 11 21:29:32 2001 by gareth@valinux.com - * + * Created: Thu Jan 11 21:29:32 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/r128.h b/sys/dev/drm/r128.h index 3a22671f3724..0b0fc928b181 100644 --- a/sys/dev/drm/r128.h +++ b/sys/dev/drm/r128.h @@ -1,6 +1,6 @@ /* r128.h -- ATI Rage 128 DRM template customization -*- linux-c -*- - * Created: Wed Feb 14 16:07:10 2001 by gareth@valinux.com - * + * Created: Wed Feb 14 16:07:10 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/r128_cce.c b/sys/dev/drm/r128_cce.c index e7160bd9a5da..75a3c3015337 100644 --- a/sys/dev/drm/r128_cce.c +++ b/sys/dev/drm/r128_cce.c @@ -1,6 +1,6 @@ /* r128_cce.c -- ATI Rage 128 driver -*- linux-c -*- - * Created: Wed Apr 5 19:24:19 2000 by kevin@precisioninsight.com - * + * Created: Wed Apr 5 19:24:19 2000 by kevin@precisioninsight.com */ +/*- * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/r128_drm.h b/sys/dev/drm/r128_drm.h index 30b8b3eaf548..32a58daa13b0 100644 --- a/sys/dev/drm/r128_drm.h +++ b/sys/dev/drm/r128_drm.h @@ -1,6 +1,6 @@ /* r128_drm.h -- Public header for the r128 driver -*- linux-c -*- - * Created: Wed Apr 5 19:24:19 2000 by kevin@precisioninsight.com - * + * Created: Wed Apr 5 19:24:19 2000 by kevin@precisioninsight.com */ +/*- * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/r128_drv.c b/sys/dev/drm/r128_drv.c index b9df5ecf9708..16035fccd747 100644 --- a/sys/dev/drm/r128_drv.c +++ b/sys/dev/drm/r128_drv.c @@ -1,6 +1,6 @@ /* r128_drv.c -- ATI Rage 128 driver -*- linux-c -*- - * Created: Mon Dec 13 09:47:27 1999 by faith@precisioninsight.com - * + * Created: Mon Dec 13 09:47:27 1999 by faith@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/r128_drv.h b/sys/dev/drm/r128_drv.h index 0695684c1db2..8d8f87794330 100644 --- a/sys/dev/drm/r128_drv.h +++ b/sys/dev/drm/r128_drv.h @@ -1,6 +1,6 @@ /* r128_drv.h -- Private header for r128 driver -*- linux-c -*- - * Created: Mon Dec 13 09:51:11 1999 by faith@precisioninsight.com - * + * Created: Mon Dec 13 09:51:11 1999 by faith@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/r128_irq.c b/sys/dev/drm/r128_irq.c index 2da58d61b4bf..fa3fb43f3cfe 100644 --- a/sys/dev/drm/r128_irq.c +++ b/sys/dev/drm/r128_irq.c @@ -1,5 +1,5 @@ -/* r128_irq.c -- IRQ handling for radeon -*- linux-c -*- - * +/* r128_irq.c -- IRQ handling for radeon -*- linux-c -*- */ +/*- * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved. * * The Weather Channel (TM) funded Tungsten Graphics to develop the diff --git a/sys/dev/drm/r128_state.c b/sys/dev/drm/r128_state.c index 703d5508e42e..5286e29c606f 100644 --- a/sys/dev/drm/r128_state.c +++ b/sys/dev/drm/r128_state.c @@ -1,6 +1,6 @@ /* r128_state.c -- State support for r128 -*- linux-c -*- - * Created: Thu Jan 27 02:53:43 2000 by gareth@valinux.com - * + * Created: Thu Jan 27 02:53:43 2000 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/radeon.h b/sys/dev/drm/radeon.h index 517d9d27cccf..f7f9708c07b4 100644 --- a/sys/dev/drm/radeon.h +++ b/sys/dev/drm/radeon.h @@ -1,6 +1,6 @@ /* radeon.h -- ATI Radeon DRM template customization -*- linux-c -*- - * Created: Wed Feb 14 17:07:34 2001 by gareth@valinux.com - * + * Created: Wed Feb 14 17:07:34 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/radeon_cp.c b/sys/dev/drm/radeon_cp.c index 59cd9ff58b01..2418f803a871 100644 --- a/sys/dev/drm/radeon_cp.c +++ b/sys/dev/drm/radeon_cp.c @@ -1,5 +1,5 @@ -/* radeon_cp.c -- CP support for Radeon -*- linux-c -*- - * +/* radeon_cp.c -- CP support for Radeon -*- linux-c -*- */ +/*- * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Fremont, California. * All Rights Reserved. diff --git a/sys/dev/drm/radeon_drm.h b/sys/dev/drm/radeon_drm.h index 51bbacfbf424..b0e59aa620a8 100644 --- a/sys/dev/drm/radeon_drm.h +++ b/sys/dev/drm/radeon_drm.h @@ -1,5 +1,5 @@ -/* radeon_drm.h -- Public header for the radeon driver -*- linux-c -*- - * +/* radeon_drm.h -- Public header for the radeon driver -*- linux-c -*- */ +/*- * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Fremont, California. * Copyright 2002 Tungsten Graphics, Inc., Cedar Park, Texas. diff --git a/sys/dev/drm/radeon_drv.c b/sys/dev/drm/radeon_drv.c index 37dcc2bcf7ac..ca94080d2696 100644 --- a/sys/dev/drm/radeon_drv.c +++ b/sys/dev/drm/radeon_drv.c @@ -1,6 +1,6 @@ /* radeon_drv.c -- ATI Radeon driver -*- linux-c -*- - * Created: Wed Feb 14 17:10:04 2001 by gareth@valinux.com - * + * Created: Wed Feb 14 17:10:04 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/radeon_drv.h b/sys/dev/drm/radeon_drv.h index d14d34204afd..ab694dec9f8a 100644 --- a/sys/dev/drm/radeon_drv.h +++ b/sys/dev/drm/radeon_drv.h @@ -1,5 +1,5 @@ -/* radeon_drv.h -- Private header for radeon driver -*- linux-c -*- - * +/* radeon_drv.h -- Private header for radeon driver -*- linux-c -*- */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Fremont, California. * All rights reserved. diff --git a/sys/dev/drm/radeon_irq.c b/sys/dev/drm/radeon_irq.c index 636653c2ae1e..2d600a4e51c1 100644 --- a/sys/dev/drm/radeon_irq.c +++ b/sys/dev/drm/radeon_irq.c @@ -1,5 +1,5 @@ -/* radeon_irq.c -- IRQ handling for radeon -*- linux-c -*- - * +/* radeon_irq.c -- IRQ handling for radeon -*- linux-c -*- */ +/*- * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved. * * The Weather Channel (TM) funded Tungsten Graphics to develop the diff --git a/sys/dev/drm/radeon_mem.c b/sys/dev/drm/radeon_mem.c index 3238c2717a27..472b21f1e92c 100644 --- a/sys/dev/drm/radeon_mem.c +++ b/sys/dev/drm/radeon_mem.c @@ -1,5 +1,5 @@ -/* radeon_mem.c -- Simple GART/fb memory manager for radeon -*- linux-c -*- - * +/* radeon_mem.c -- Simple GART/fb memory manager for radeon -*- linux-c -*- */ +/*- * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved. * * The Weather Channel (TM) funded Tungsten Graphics to develop the diff --git a/sys/dev/drm/radeon_state.c b/sys/dev/drm/radeon_state.c index 950a8eec2df2..e1227705e6a6 100644 --- a/sys/dev/drm/radeon_state.c +++ b/sys/dev/drm/radeon_state.c @@ -1,5 +1,5 @@ /* radeon_state.c -- State support for Radeon -*- linux-c -*- - * +/*- * Copyright 2000 VA Linux Systems, Inc., Fremont, California. * All Rights Reserved. * diff --git a/sys/dev/drm/sis.h b/sys/dev/drm/sis.h index 03498183f2e7..dde5d9555195 100644 --- a/sys/dev/drm/sis.h +++ b/sys/dev/drm/sis.h @@ -1,5 +1,5 @@ -/* sis_drv.h -- Private header for sis driver -*- linux-c -*- - * +/* sis_drv.h -- Private header for sis driver -*- linux-c -*- */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/sis_drv.c b/sys/dev/drm/sis_drv.c index ae6615b912aa..5009f9d940bf 100644 --- a/sys/dev/drm/sis_drv.c +++ b/sys/dev/drm/sis_drv.c @@ -1,5 +1,5 @@ -/* sis.c -- sis driver -*- linux-c -*- - * +/* sis.c -- sis driver -*- linux-c -*- */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/drm/sis_drv.h b/sys/dev/drm/sis_drv.h index 3f80901bb171..156e2b24787e 100644 --- a/sys/dev/drm/sis_drv.h +++ b/sys/dev/drm/sis_drv.h @@ -1,5 +1,5 @@ -/* sis_drv.h -- Private header for sis driver -*- linux-c -*- - * +/* sis_drv.h -- Private header for sis driver -*- linux-c -*- */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. diff --git a/sys/dev/drm/sis_ds.c b/sys/dev/drm/sis_ds.c index 74b111e33750..cf837a7e504c 100644 --- a/sys/dev/drm/sis_ds.c +++ b/sys/dev/drm/sis_ds.c @@ -1,6 +1,6 @@ /* sis_ds.c -- Private header for Direct Rendering Manager -*- linux-c -*- - * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw - * + * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw */ +/*- * Copyright 2000 Silicon Integrated Systems Corp, Inc., HsinChu, Taiwan. * All rights reserved. * diff --git a/sys/dev/drm/sis_ds.h b/sys/dev/drm/sis_ds.h index d5cdbc27800a..ce9535bf926d 100644 --- a/sys/dev/drm/sis_ds.h +++ b/sys/dev/drm/sis_ds.h @@ -1,6 +1,6 @@ /* sis_ds.h -- Private header for Direct Rendering Manager -*- linux-c -*- - * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw - * + * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw */ +/*- * Copyright 2000 Silicon Integrated Systems Corp, Inc., HsinChu, Taiwan. * All rights reserved. * diff --git a/sys/dev/drm/sis_mm.c b/sys/dev/drm/sis_mm.c index 6f29974ee082..6ff18e5d8c09 100644 --- a/sys/dev/drm/sis_mm.c +++ b/sys/dev/drm/sis_mm.c @@ -1,6 +1,6 @@ /* sis_mm.c -- Private header for Direct Rendering Manager -*- linux-c -*- - * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw - * + * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw * +/*- * Copyright 2000 Silicon Integrated Systems Corp, Inc., HsinChu, Taiwan. * All rights reserved. * diff --git a/sys/dev/drm/tdfx.h b/sys/dev/drm/tdfx.h index cc2b72035c8b..9a8cf720e851 100644 --- a/sys/dev/drm/tdfx.h +++ b/sys/dev/drm/tdfx.h @@ -1,6 +1,6 @@ /* tdfx.h -- 3dfx DRM template customization -*- linux-c -*- - * Created: Wed Feb 14 12:32:32 2001 by gareth@valinux.com - * + * Created: Wed Feb 14 12:32:32 2001 by gareth@valinux.com */ +/*- * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * diff --git a/sys/dev/drm/tdfx_drv.c b/sys/dev/drm/tdfx_drv.c index 93083fdeea23..4985ee05762b 100644 --- a/sys/dev/drm/tdfx_drv.c +++ b/sys/dev/drm/tdfx_drv.c @@ -1,6 +1,6 @@ /* tdfx_drv.c -- tdfx driver -*- linux-c -*- - * Created: Thu Oct 7 10:38:32 1999 by faith@precisioninsight.com - * + * Created: Thu Oct 7 10:38:32 1999 by faith@precisioninsight.com */ +/*- * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c index 5f441e6a97c2..28fe83779964 100644 --- a/sys/dev/ed/if_ed.c +++ b/sys/dev/ed/if_ed.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/ed/if_ed98.h b/sys/dev/ed/if_ed98.h index 22bbf78be0e6..2a2af0498cca 100644 --- a/sys/dev/ed/if_ed98.h +++ b/sys/dev/ed/if_ed98.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) KATO Takenori, 1996. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ed/if_ed_cbus.c b/sys/dev/ed/if_ed_cbus.c index 0b9a1220b9c7..1f8424355c1f 100644 --- a/sys/dev/ed/if_ed_cbus.c +++ b/sys/dev/ed/if_ed_cbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c index 69da715f2646..3a5804c8dcdd 100644 --- a/sys/dev/ed/if_ed_isa.c +++ b/sys/dev/ed/if_ed_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index dfe71fa12de6..b9f75e77dcb2 100644 --- a/sys/dev/ed/if_ed_pccard.c +++ b/sys/dev/ed/if_ed_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/ed/if_edreg.h b/sys/dev/ed/if_edreg.h index 4b0857894ce9..cfe5b7053142 100644 --- a/sys/dev/ed/if_edreg.h +++ b/sys/dev/ed/if_edreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1993, David Greenman. This software may be used, modified, * copied, distributed, and sold, in both source and binary form provided * that the above copyright and these terms are retained. Under no diff --git a/sys/dev/ed/if_edvar.h b/sys/dev/ed/if_edvar.h index fd3bcf1cf169..d8da2fcc816d 100644 --- a/sys/dev/ed/if_edvar.h +++ b/sys/dev/ed/if_edvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/eisa/eisa_if.m b/sys/dev/eisa/eisa_if.m index 9bf7e56bb542..72c8184cdce5 100644 --- a/sys/dev/eisa/eisa_if.m +++ b/sys/dev/eisa/eisa_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 2004 M. Warner Losh # All rights reserved. # diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index 2ef026561aeb..b9c77f5b5c60 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -1,4 +1,4 @@ -/* +/*- * EISA bus probe and attach routines * * Copyright (c) 1995, 1996 Justin T. Gibbs. diff --git a/sys/dev/eisa/eisaconf.h b/sys/dev/eisa/eisaconf.h index ebdee5a6cdd6..522cd5db59e1 100644 --- a/sys/dev/eisa/eisaconf.h +++ b/sys/dev/eisa/eisaconf.h @@ -1,4 +1,4 @@ -/* +/*- * EISA bus device definitions * * Copyright (c) 1995, 1996 Justin T. Gibbs. diff --git a/sys/dev/em/LICENSE b/sys/dev/em/LICENSE index de8145e47a90..42545ca85f97 100644 --- a/sys/dev/em/LICENSE +++ b/sys/dev/em/LICENSE @@ -1,4 +1,5 @@ $FreeBSD$ +/*- Copyright (c) 2001-2003, Intel Corporation All rights reserved. @@ -27,3 +28,4 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ diff --git a/sys/dev/en/if_en_pci.c b/sys/dev/en/if_en_pci.c index 1ca6e35a2ed0..1aaf76108b82 100644 --- a/sys/dev/en/if_en_pci.c +++ b/sys/dev/en/if_en_pci.c @@ -1,6 +1,5 @@ /* $NetBSD: if_en_pci.c,v 1.1 1996/06/22 02:00:31 chuck Exp $ */ -/* - * +/*- * Copyright (c) 1996 Charles D. Cranor and Washington University. * All rights reserved. * diff --git a/sys/dev/en/midway.c b/sys/dev/en/midway.c index 33108381ec81..265b60ea7833 100644 --- a/sys/dev/en/midway.c +++ b/sys/dev/en/midway.c @@ -1,8 +1,7 @@ /* $NetBSD: midway.c,v 1.30 1997/09/29 17:40:38 chuck Exp $ */ /* (sync'd to midway.c 1.68) */ -/* - * +/*- * Copyright (c) 1996 Charles D. Cranor and Washington University. * All rights reserved. * diff --git a/sys/dev/en/midwayvar.h b/sys/dev/en/midwayvar.h index 27da2f57aed2..27e047deffef 100644 --- a/sys/dev/en/midwayvar.h +++ b/sys/dev/en/midwayvar.h @@ -1,7 +1,6 @@ /* $NetBSD: midwayvar.h,v 1.10 1997/03/20 21:34:46 chuck Exp $ */ -/* - * +/*- * Copyright (c) 1996 Charles D. Cranor and Washington University. * All rights reserved. * diff --git a/sys/dev/ep/if_ep.c b/sys/dev/ep/if_ep.c index 60197577cafe..7cb257321e9d 100644 --- a/sys/dev/ep/if_ep.c +++ b/sys/dev/ep/if_ep.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Herb Peyerl * All rights reserved. * diff --git a/sys/dev/ep/if_ep_eisa.c b/sys/dev/ep/if_ep_eisa.c index 9d1e6030d3f7..efe49cf25751 100644 --- a/sys/dev/ep/if_ep_eisa.c +++ b/sys/dev/ep/if_ep_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Product specific probe and attach routines for: * 3COM 3C579 and 3C509(in eisa config mode) ethernet controllers * diff --git a/sys/dev/ep/if_ep_isa.c b/sys/dev/ep/if_ep_isa.c index 5bc38bc5d1f3..bd9c5c25a313 100644 --- a/sys/dev/ep/if_ep_isa.c +++ b/sys/dev/ep/if_ep_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Herb Peyerl * All rights reserved. * diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index 021b504e1761..5101a176a105 100644 --- a/sys/dev/ep/if_ep_pccard.c +++ b/sys/dev/ep/if_ep_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Herb Peyerl * All rights reserved. * diff --git a/sys/dev/ep/if_epreg.h b/sys/dev/ep/if_epreg.h index acc8f79f0fd0..6f8e968802bd 100644 --- a/sys/dev/ep/if_epreg.h +++ b/sys/dev/ep/if_epreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1993 Herb Peyerl (hpeyerl@novatel.ca) All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ep/if_epvar.h b/sys/dev/ep/if_epvar.h index 242ccd46569d..6ba7bf4c6af6 100644 --- a/sys/dev/ep/if_epvar.h +++ b/sys/dev/ep/if_epvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1993 Herb Peyerl (hpeyerl@novatel.ca) All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/esp/ncr53c9x.c b/sys/dev/esp/ncr53c9x.c index 48686110f30c..a222f3e366a8 100644 --- a/sys/dev/esp/ncr53c9x.c +++ b/sys/dev/esp/ncr53c9x.c @@ -63,7 +63,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1994 Peter Galbavy * Copyright (c) 1995 Paul Kranenburg * All rights reserved. diff --git a/sys/dev/esp/ncr53c9xreg.h b/sys/dev/esp/ncr53c9xreg.h index b4ba1e81f5e3..d85cb452a46a 100644 --- a/sys/dev/esp/ncr53c9xreg.h +++ b/sys/dev/esp/ncr53c9xreg.h @@ -1,6 +1,6 @@ /* $NetBSD: ncr53c9xreg.h,v 1.11 2003/02/21 17:14:05 tsutsui Exp $ */ -/* +/*- * Copyright (c) 1994 Peter Galbavy. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/esp/ncr53c9xvar.h b/sys/dev/esp/ncr53c9xvar.h index 7bf6b2d737de..f8be39edd40e 100644 --- a/sys/dev/esp/ncr53c9xvar.h +++ b/sys/dev/esp/ncr53c9xvar.h @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1994 Peter Galbavy. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c index 7218529b4ffb..33598ba0a155 100644 --- a/sys/dev/ex/if_ex.c +++ b/sys/dev/ex/if_ex.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996, Javier Martín Rueda (jmrueda@diatel.upm.es) * All rights reserved. * diff --git a/sys/dev/ex/if_exreg.h b/sys/dev/ex/if_exreg.h index a924c2822efa..157eda37298c 100644 --- a/sys/dev/ex/if_exreg.h +++ b/sys/dev/ex/if_exreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996, Javier Martín Rueda (jmrueda@diatel.upm.es) * All rights reserved. * diff --git a/sys/dev/exca/exca.c b/sys/dev/exca/exca.c index 5c0e8a4b82d1..2ef4f89681d8 100644 --- a/sys/dev/exca/exca.c +++ b/sys/dev/exca/exca.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 M Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/exca/excareg.h b/sys/dev/exca/excareg.h index e2f092aac4dd..094379e79c77 100644 --- a/sys/dev/exca/excareg.h +++ b/sys/dev/exca/excareg.h @@ -1,7 +1,7 @@ /* $NetBSD: i82365reg.h,v 1.3 1998/12/20 17:53:28 nathanw Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2002 M Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/exca/excavar.h b/sys/dev/exca/excavar.h index 147cf1562229..bc29c81a0990 100644 --- a/sys/dev/exca/excavar.h +++ b/sys/dev/exca/excavar.h @@ -1,6 +1,6 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2002 M Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/fatm/firmware.h b/sys/dev/fatm/firmware.h index 6e9caf28deb6..24c7bc8e8865 100644 --- a/sys/dev/fatm/firmware.h +++ b/sys/dev/fatm/firmware.h @@ -1,4 +1,4 @@ -/* +/*- * (Copyright Notice) * * Copyright (c) 1995-2000 FORE Systems, Inc., as an unpublished work. diff --git a/sys/dev/fatm/if_fatm.c b/sys/dev/fatm/if_fatm.c index 8335e929ff7a..35ef8b9fffaf 100644 --- a/sys/dev/fatm/if_fatm.c +++ b/sys/dev/fatm/if_fatm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/fatm/if_fatm_rate.h b/sys/dev/fatm/if_fatm_rate.h index 45b885a4f1bf..5cfd38a9c28c 100644 --- a/sys/dev/fatm/if_fatm_rate.h +++ b/sys/dev/fatm/if_fatm_rate.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/fatm/if_fatmreg.h b/sys/dev/fatm/if_fatmreg.h index 0b4a403d39f9..d488dbfda5bf 100644 --- a/sys/dev/fatm/if_fatmreg.h +++ b/sys/dev/fatm/if_fatmreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/fatm/if_fatmvar.h b/sys/dev/fatm/if_fatmvar.h index 8919d24b0712..8c550fefdd1d 100644 --- a/sys/dev/fatm/if_fatmvar.h +++ b/sys/dev/fatm/if_fatmvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/fb/gallant12x22.c b/sys/dev/fb/gallant12x22.c index b26ad34f873c..a089f6a2ec46 100644 --- a/sys/dev/fb/gallant12x22.c +++ b/sys/dev/fb/gallant12x22.c @@ -1,7 +1,7 @@ /* $OpenBSD: gallant12x22.h,v 1.2 2002/05/09 08:59:03 maja Exp $ */ /* $NetBSD: gallant12x22.h,v 1.2 1999/05/18 21:51:58 ad Exp $ */ -/* +/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/sys/dev/fb/gallant12x22.h b/sys/dev/fb/gallant12x22.h index b26ad34f873c..a089f6a2ec46 100644 --- a/sys/dev/fb/gallant12x22.h +++ b/sys/dev/fb/gallant12x22.h @@ -1,7 +1,7 @@ /* $OpenBSD: gallant12x22.h,v 1.2 2002/05/09 08:59:03 maja Exp $ */ /* $NetBSD: gallant12x22.h,v 1.2 1999/05/18 21:51:58 ad Exp $ */ -/* +/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/sys/dev/fb/gfb.h b/sys/dev/fb/gfb.h index 470dfc268864..89ead2e3a225 100644 --- a/sys/dev/fb/gfb.h +++ b/sys/dev/fb/gfb.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/fb/tga.h b/sys/dev/fb/tga.h index 28302485ac54..3616b61bd04c 100644 --- a/sys/dev/fb/tga.h +++ b/sys/dev/fb/tga.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 4713ef4a4356..4cb7da08549a 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -1,4 +1,4 @@ -/* +/*- * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 * * This software may be used, modified, copied, distributed, and sold, in diff --git a/sys/dev/fe/if_fe_cbus.c b/sys/dev/fe/if_fe_cbus.c index 6df70ae92eac..b92cc3df9a97 100644 --- a/sys/dev/fe/if_fe_cbus.c +++ b/sys/dev/fe/if_fe_cbus.c @@ -1,4 +1,4 @@ -/* +/*- * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 * * This software may be used, modified, copied, distributed, and sold, in diff --git a/sys/dev/fe/if_fe_isa.c b/sys/dev/fe/if_fe_isa.c index 1856951b4874..b1fa3e01d41c 100644 --- a/sys/dev/fe/if_fe_isa.c +++ b/sys/dev/fe/if_fe_isa.c @@ -1,4 +1,4 @@ -/* +/*- * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 * * This software may be used, modified, copied, distributed, and sold, in diff --git a/sys/dev/fe/if_fe_pccard.c b/sys/dev/fe/if_fe_pccard.c index 49266deeacea..37c600e51370 100644 --- a/sys/dev/fe/if_fe_pccard.c +++ b/sys/dev/fe/if_fe_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 * * This software may be used, modified, copied, distributed, and sold, in diff --git a/sys/dev/fe/if_fereg.h b/sys/dev/fe/if_fereg.h index 21da37ab0d26..afc9c5704c58 100644 --- a/sys/dev/fe/if_fereg.h +++ b/sys/dev/fe/if_fereg.h @@ -1,4 +1,4 @@ -/* +/*- * Hardware specification of various 8696x based Ethernet cards. * Contributed by M. Sekiguchi * diff --git a/sys/dev/fe/if_fevar.h b/sys/dev/fe/if_fevar.h index c8fd35579625..99f7184a4a51 100644 --- a/sys/dev/fe/if_fevar.h +++ b/sys/dev/fe/if_fevar.h @@ -1,4 +1,4 @@ -/* +/*- * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 * * This software may be used, modified, copied, distributed, and sold, in diff --git a/sys/dev/firewire/firewire.c b/sys/dev/firewire/firewire.c index 0a4a0dde5734..9636b12ad6e3 100644 --- a/sys/dev/firewire/firewire.c +++ b/sys/dev/firewire/firewire.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/firewire.h b/sys/dev/firewire/firewire.h index 04c62873730e..ab34748bec25 100644 --- a/sys/dev/firewire/firewire.h +++ b/sys/dev/firewire/firewire.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/firewire_phy.h b/sys/dev/firewire/firewire_phy.h index 02cda696ea3f..42feff2d27c8 100644 --- a/sys/dev/firewire/firewire_phy.h +++ b/sys/dev/firewire/firewire_phy.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. * diff --git a/sys/dev/firewire/firewirereg.h b/sys/dev/firewire/firewirereg.h index 3c44a553adeb..3b991ea65236 100644 --- a/sys/dev/firewire/firewirereg.h +++ b/sys/dev/firewire/firewirereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwdev.c b/sys/dev/firewire/fwdev.c index cffb6369b747..79c74af9fe84 100644 --- a/sys/dev/firewire/fwdev.c +++ b/sys/dev/firewire/fwdev.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwdma.c b/sys/dev/firewire/fwdma.c index afb1a09b1155..c64dbe66731a 100644 --- a/sys/dev/firewire/fwdma.c +++ b/sys/dev/firewire/fwdma.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/fwdma.h b/sys/dev/firewire/fwdma.h index 6bf66c702d6f..3a8278c1c709 100644 --- a/sys/dev/firewire/fwdma.h +++ b/sys/dev/firewire/fwdma.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/fwmem.c b/sys/dev/firewire/fwmem.c index 1674405f44f8..4fac8dd06b4d 100644 --- a/sys/dev/firewire/fwmem.c +++ b/sys/dev/firewire/fwmem.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/fwmem.h b/sys/dev/firewire/fwmem.h index f8188d10aa25..de717947e844 100644 --- a/sys/dev/firewire/fwmem.h +++ b/sys/dev/firewire/fwmem.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2002-2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/fwohci.c b/sys/dev/firewire/fwohci.c index ad20edcce359..ddcd05d0bccf 100644 --- a/sys/dev/firewire/fwohci.c +++ b/sys/dev/firewire/fwohci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c index c3660a6e8305..b38f38bd1721 100644 --- a/sys/dev/firewire/fwohci_pci.c +++ b/sys/dev/firewire/fwohci_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h index 9abcb417bc41..39986223c4bf 100644 --- a/sys/dev/firewire/fwohcireg.h +++ b/sys/dev/firewire/fwohcireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwohcivar.h b/sys/dev/firewire/fwohcivar.h index 014335a1d992..3002b63c0ce4 100644 --- a/sys/dev/firewire/fwohcivar.h +++ b/sys/dev/firewire/fwohcivar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi SHimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi SHimokawa * All rights reserved. diff --git a/sys/dev/firewire/fwphyreg.h b/sys/dev/firewire/fwphyreg.h index f2e77768adf7..77a006ed3c54 100644 --- a/sys/dev/firewire/fwphyreg.h +++ b/sys/dev/firewire/fwphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/iec13213.h b/sys/dev/firewire/iec13213.h index 5cafc8de34e6..058649fc0cc4 100644 --- a/sys/dev/firewire/iec13213.h +++ b/sys/dev/firewire/iec13213.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/iec68113.h b/sys/dev/firewire/iec68113.h index 58a8cfe7d9eb..11f3042ff9b0 100644 --- a/sys/dev/firewire/iec68113.h +++ b/sys/dev/firewire/iec68113.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/if_fwe.c b/sys/dev/firewire/if_fwe.c index a5bdb5b7baf6..34e540b877c9 100644 --- a/sys/dev/firewire/if_fwe.c +++ b/sys/dev/firewire/if_fwe.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/if_fwevar.h b/sys/dev/firewire/if_fwevar.h index 97422168621b..805301a1be1e 100644 --- a/sys/dev/firewire/if_fwevar.h +++ b/sys/dev/firewire/if_fwevar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/firewire/if_fwip.c b/sys/dev/firewire/if_fwip.c index 2c11a253ecbe..23e812a2e76d 100644 --- a/sys/dev/firewire/if_fwip.c +++ b/sys/dev/firewire/if_fwip.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Doug Rabson * Copyright (c) 2002-2003 diff --git a/sys/dev/firewire/if_fwipvar.h b/sys/dev/firewire/if_fwipvar.h index fe202180a274..0a9ef244752e 100644 --- a/sys/dev/firewire/if_fwipvar.h +++ b/sys/dev/firewire/if_fwipvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Doug Rabson * Copyright (c) 2002-2003 diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c index df40877b849f..c2f8e4f23a57 100644 --- a/sys/dev/firewire/sbp.c +++ b/sys/dev/firewire/sbp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/sbp.h b/sys/dev/firewire/sbp.h index 49ec97e0caeb..9f85fab38de5 100644 --- a/sys/dev/firewire/sbp.h +++ b/sys/dev/firewire/sbp.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Hidetoshi Shimokawa * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa * All rights reserved. diff --git a/sys/dev/firewire/sbp_targ.c b/sys/dev/firewire/sbp_targ.c index c6fea6bcbe50..5267ea3b3532 100644 --- a/sys/dev/firewire/sbp_targ.c +++ b/sys/dev/firewire/sbp_targ.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2003 * Hidetoshi Shimokawa. All rights reserved. * diff --git a/sys/dev/fxp/if_fxpreg.h b/sys/dev/fxp/if_fxpreg.h index 1e8d660e4c6e..b1c8407adabe 100644 --- a/sys/dev/fxp/if_fxpreg.h +++ b/sys/dev/fxp/if_fxpreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * Copyright (c) 2001 Jonathan Lemon * All rights reserved. diff --git a/sys/dev/fxp/if_fxpvar.h b/sys/dev/fxp/if_fxpvar.h index 8168bd308f53..906fea6cb9a4 100644 --- a/sys/dev/fxp/if_fxpvar.h +++ b/sys/dev/fxp/if_fxpvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/fxp/rcvbundl.h b/sys/dev/fxp/rcvbundl.h index e97e9aaf5b38..ec9b99bd33aa 100644 --- a/sys/dev/fxp/rcvbundl.h +++ b/sys/dev/fxp/rcvbundl.h @@ -1,4 +1,4 @@ -/* +/*- Copyright (c) 1999-2001, Intel Corporation All rights reserved. diff --git a/sys/dev/gem/if_gem_pci.c b/sys/dev/gem/if_gem_pci.c index 19c0de2628ec..58988900e86f 100644 --- a/sys/dev/gem/if_gem_pci.c +++ b/sys/dev/gem/if_gem_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2001 Eduardo Horvath. * All rights reserved. * diff --git a/sys/dev/gem/if_gemreg.h b/sys/dev/gem/if_gemreg.h index 700c732d0ebc..fecfb152eddd 100644 --- a/sys/dev/gem/if_gemreg.h +++ b/sys/dev/gem/if_gemreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2001 Eduardo Horvath. * All rights reserved. * diff --git a/sys/dev/gem/if_gemvar.h b/sys/dev/gem/if_gemvar.h index d93728e225f9..07d71e11f02e 100644 --- a/sys/dev/gem/if_gemvar.h +++ b/sys/dev/gem/if_gemvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2001 Eduardo Horvath. * All rights reserved. * diff --git a/sys/dev/gfb/gfb_pci.c b/sys/dev/gfb/gfb_pci.c index ba57878d8d04..c58ae0e021e1 100644 --- a/sys/dev/gfb/gfb_pci.c +++ b/sys/dev/gfb/gfb_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/gfb/gfb_pci.h b/sys/dev/gfb/gfb_pci.h index e0f517e7331a..263b3980c5b8 100644 --- a/sys/dev/gfb/gfb_pci.h +++ b/sys/dev/gfb/gfb_pci.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/harp/if_harp.c b/sys/dev/harp/if_harp.c index 435b64e293e8..7a0352036e45 100644 --- a/sys/dev/harp/if_harp.c +++ b/sys/dev/harp/if_harp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatm.c b/sys/dev/hatm/if_hatm.c index 823801781bd2..cf5b182cfd2f 100644 --- a/sys/dev/hatm/if_hatm.c +++ b/sys/dev/hatm/if_hatm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatm_intr.c b/sys/dev/hatm/if_hatm_intr.c index 2dbfc693e038..70bbde89a531 100644 --- a/sys/dev/hatm/if_hatm_intr.c +++ b/sys/dev/hatm/if_hatm_intr.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatm_ioctl.c b/sys/dev/hatm/if_hatm_ioctl.c index 410be9db4733..c81027911505 100644 --- a/sys/dev/hatm/if_hatm_ioctl.c +++ b/sys/dev/hatm/if_hatm_ioctl.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatm_rx.c b/sys/dev/hatm/if_hatm_rx.c index fb80f81bb673..1b3ee8d437cc 100644 --- a/sys/dev/hatm/if_hatm_rx.c +++ b/sys/dev/hatm/if_hatm_rx.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatm_tx.c b/sys/dev/hatm/if_hatm_tx.c index a7c2452431ff..b084b9e17ecf 100644 --- a/sys/dev/hatm/if_hatm_tx.c +++ b/sys/dev/hatm/if_hatm_tx.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatmconf.h b/sys/dev/hatm/if_hatmconf.h index 9d2d794c1339..5402697410d7 100644 --- a/sys/dev/hatm/if_hatmconf.h +++ b/sys/dev/hatm/if_hatmconf.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatmreg.h b/sys/dev/hatm/if_hatmreg.h index 7e88a5c61e5a..9085f07f5a4b 100644 --- a/sys/dev/hatm/if_hatmreg.h +++ b/sys/dev/hatm/if_hatmreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hatm/if_hatmvar.h b/sys/dev/hatm/if_hatmvar.h index 2ca6f9473031..acddaa1e3555 100644 --- a/sys/dev/hatm/if_hatmvar.h +++ b/sys/dev/hatm/if_hatmvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/hfa/fore.h b/sys/dev/hfa/fore.h index 5b64c31864ae..8f0a17f58a9c 100644 --- a/sys/dev/hfa/fore.h +++ b/sys/dev/hfa/fore.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_aali.h b/sys/dev/hfa/fore_aali.h index 3e00a941072f..93fbf5d587e2 100644 --- a/sys/dev/hfa/fore_aali.h +++ b/sys/dev/hfa/fore_aali.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_command.c b/sys/dev/hfa/fore_command.c index 84b36808445e..c7e38892e460 100644 --- a/sys/dev/hfa/fore_command.c +++ b/sys/dev/hfa/fore_command.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_if.c b/sys/dev/hfa/fore_if.c index f4f796ffa435..51bbd0fb6933 100644 --- a/sys/dev/hfa/fore_if.c +++ b/sys/dev/hfa/fore_if.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_include.h b/sys/dev/hfa/fore_include.h index c23e0cb294f0..93062f451f63 100644 --- a/sys/dev/hfa/fore_include.h +++ b/sys/dev/hfa/fore_include.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_init.c b/sys/dev/hfa/fore_init.c index 6124bdaaefd3..ccaed3f0e085 100644 --- a/sys/dev/hfa/fore_init.c +++ b/sys/dev/hfa/fore_init.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_intr.c b/sys/dev/hfa/fore_intr.c index 9c0f29dabba7..8454b93f2464 100644 --- a/sys/dev/hfa/fore_intr.c +++ b/sys/dev/hfa/fore_intr.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_output.c b/sys/dev/hfa/fore_output.c index a37e2ecb0cba..d4ab4dd921ba 100644 --- a/sys/dev/hfa/fore_output.c +++ b/sys/dev/hfa/fore_output.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_slave.h b/sys/dev/hfa/fore_slave.h index 83960d977e4b..33d73c21dced 100644 --- a/sys/dev/hfa/fore_slave.h +++ b/sys/dev/hfa/fore_slave.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_stats.c b/sys/dev/hfa/fore_stats.c index 17f165724387..4126c1f0635c 100644 --- a/sys/dev/hfa/fore_stats.c +++ b/sys/dev/hfa/fore_stats.c @@ -1,4 +1,4 @@ -/* +/*- * =================================== * HARP | Host ATM Research Platform * =================================== diff --git a/sys/dev/hfa/fore_stats.h b/sys/dev/hfa/fore_stats.h index 53b568f69ebd..32095164d8e4 100644 --- a/sys/dev/hfa/fore_stats.h +++ b/sys/dev/hfa/fore_stats.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_var.h b/sys/dev/hfa/fore_var.h index d0f05b8de114..57cedb3a761f 100644 --- a/sys/dev/hfa/fore_var.h +++ b/sys/dev/hfa/fore_var.h @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hfa/fore_vcm.c b/sys/dev/hfa/fore_vcm.c index cd0dd3c495df..95bc6524be99 100644 --- a/sys/dev/hfa/fore_vcm.c +++ b/sys/dev/hfa/fore_vcm.c @@ -1,4 +1,4 @@ -/* +/*- * * =================================== * HARP | Host ATM Research Platform diff --git a/sys/dev/hifn/hifn7751.c b/sys/dev/hifn/hifn7751.c index 2f3bebc60bee..2df4de7dca7e 100644 --- a/sys/dev/hifn/hifn7751.c +++ b/sys/dev/hifn/hifn7751.c @@ -1,6 +1,6 @@ /* $OpenBSD: hifn7751.c,v 1.120 2002/05/17 00:33:34 deraadt Exp $ */ -/* +/*- * Invertex AEON / Hifn 7751 driver * Copyright (c) 1999 Invertex Inc. All rights reserved. * Copyright (c) 1999 Theo de Raadt diff --git a/sys/dev/hifn/hifn7751reg.h b/sys/dev/hifn/hifn7751reg.h index 5f7099aa0668..8114f3f9d06c 100644 --- a/sys/dev/hifn/hifn7751reg.h +++ b/sys/dev/hifn/hifn7751reg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD: hifn7751reg.h,v 1.35 2002/04/08 17:49:42 jason Exp $ */ -/* +/*- * Invertex AEON / Hifn 7751 driver * Copyright (c) 1999 Invertex Inc. All rights reserved. * Copyright (c) 1999 Theo de Raadt diff --git a/sys/dev/hifn/hifn7751var.h b/sys/dev/hifn/hifn7751var.h index e3bd2f66e3d1..a92d77ba45d7 100644 --- a/sys/dev/hifn/hifn7751var.h +++ b/sys/dev/hifn/hifn7751var.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD: hifn7751var.h,v 1.42 2002/04/08 17:49:42 jason Exp $ */ -/* +/*- * Invertex AEON / Hifn 7751 driver * Copyright (c) 1999 Invertex Inc. All rights reserved. * Copyright (c) 1999 Theo de Raadt diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c index 16f8fb0c17ef..b5766d659bd4 100644 --- a/sys/dev/hptmv/entry.c +++ b/sys/dev/hptmv/entry.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/hptmv/global.h b/sys/dev/hptmv/global.h index 3b8d99c5dfbb..3f8d4dd7ae3b 100644 --- a/sys/dev/hptmv/global.h +++ b/sys/dev/hptmv/global.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/hptmv/hptintf.h b/sys/dev/hptmv/hptintf.h index 5b54475593e7..9839a6718271 100644 --- a/sys/dev/hptmv/hptintf.h +++ b/sys/dev/hptmv/hptintf.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/hptmv/mv.c b/sys/dev/hptmv/mv.c index b135bfa2215c..474b3d5ddb23 100644 --- a/sys/dev/hptmv/mv.c +++ b/sys/dev/hptmv/mv.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/hptmv/mvOs.h b/sys/dev/hptmv/mvOs.h index 3325d14c7cc1..2c0a5f4b1c66 100644 --- a/sys/dev/hptmv/mvOs.h +++ b/sys/dev/hptmv/mvOs.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/hptmv/osbsd.h b/sys/dev/hptmv/osbsd.h index f9a41fcb73a4..5637c44c5e9a 100644 --- a/sys/dev/hptmv/osbsd.h +++ b/sys/dev/hptmv/osbsd.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 HighPoint Technologies, Inc. * All rights reserved. * diff --git a/sys/dev/ic/cd180.h b/sys/dev/ic/cd180.h index a9a5a83348e0..ae46a4809b68 100644 --- a/sys/dev/ic/cd180.h +++ b/sys/dev/ic/cd180.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia. * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia. * All rights reserved. diff --git a/sys/dev/ic/hd64570.h b/sys/dev/ic/hd64570.h index b676e25a9cd5..3399e0a0de57 100644 --- a/sys/dev/ic/hd64570.h +++ b/sys/dev/ic/hd64570.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 John Hay. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ic/sab82532.h b/sys/dev/ic/sab82532.h index 1dd33bd52d7a..e570c6a9ae5f 100644 --- a/sys/dev/ic/sab82532.h +++ b/sys/dev/ic/sab82532.h @@ -1,6 +1,6 @@ /* $OpenBSD: sab82532reg.h,v 1.2 2002/04/08 17:49:42 jason Exp $ */ -/* +/*- * Copyright (c) 2001 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/ic/wd33c93reg.h b/sys/dev/ic/wd33c93reg.h index c286c65a16eb..8e536cd1d32d 100644 --- a/sys/dev/ic/wd33c93reg.h +++ b/sys/dev/ic/wd33c93reg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $NecBSD: wd33c93reg.h,v 1.21.24.1 2001/06/13 05:52:05 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ic/z8530.h b/sys/dev/ic/z8530.h index d6db68d80ec0..d86a662a1d0b 100644 --- a/sys/dev/ic/z8530.h +++ b/sys/dev/ic/z8530.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/ichsmb/ichsmb.c b/sys/dev/ichsmb/ichsmb.c index 0d8dd59b07a3..2d92a65f9fe5 100644 --- a/sys/dev/ichsmb/ichsmb.c +++ b/sys/dev/ichsmb/ichsmb.c @@ -1,5 +1,4 @@ - -/* +/*- * ichsmb.c * * Author: Archie Cobbs diff --git a/sys/dev/ichsmb/ichsmb_reg.h b/sys/dev/ichsmb/ichsmb_reg.h index ca0577c7d178..a031607f4fdc 100644 --- a/sys/dev/ichsmb/ichsmb_reg.h +++ b/sys/dev/ichsmb/ichsmb_reg.h @@ -1,5 +1,4 @@ - -/* +/*- * ichsmb_reg.h * * Copyright (c) 2000 Whistle Communications, Inc. diff --git a/sys/dev/ichsmb/ichsmb_var.h b/sys/dev/ichsmb/ichsmb_var.h index 99abbe55afbe..d8def6de9c48 100644 --- a/sys/dev/ichsmb/ichsmb_var.h +++ b/sys/dev/ichsmb/ichsmb_var.h @@ -1,5 +1,4 @@ - -/* +/*- * ichsmb_var.h * * Copyright (c) 2000 Whistle Communications, Inc. diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c index 73f871990c2f..893efbd722d4 100644 --- a/sys/dev/ichwd/ichwd.c +++ b/sys/dev/ichwd/ichwd.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 Texas A&M University * All rights reserved. * diff --git a/sys/dev/ichwd/ichwd.h b/sys/dev/ichwd/ichwd.h index ab0e117fbdf8..ef08b2ff7ef5 100644 --- a/sys/dev/ichwd/ichwd.h +++ b/sys/dev/ichwd/ichwd.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 Texas A&M University * All rights reserved. * diff --git a/sys/dev/ida/ida_eisa.c b/sys/dev/ida/ida_eisa.c index be247864ab96..a4f8cd535522 100644 --- a/sys/dev/ida/ida_eisa.c +++ b/sys/dev/ida/ida_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Jonathan Lemon * Copyright (c) 1999 by Matthew N. Dodd * All Rights Reserved. diff --git a/sys/dev/idt/idt.c b/sys/dev/idt/idt.c index 0edceeb9bb10..fbcd9161ab04 100644 --- a/sys/dev/idt/idt.c +++ b/sys/dev/idt/idt.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Richard Hodges and Matriplex, inc. * All rights reserved. * diff --git a/sys/dev/idt/idt_harp.c b/sys/dev/idt/idt_harp.c index 61cbdf9d1a7c..4659c4689037 100644 --- a/sys/dev/idt/idt_harp.c +++ b/sys/dev/idt/idt_harp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Richard Hodges and Matriplex, inc. * All rights reserved. * diff --git a/sys/dev/idt/idt_pci.c b/sys/dev/idt/idt_pci.c index 1112d31d48ae..035b68f96f4c 100644 --- a/sys/dev/idt/idt_pci.c +++ b/sys/dev/idt/idt_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Richard Hodges and Matriplex, inc. * All rights reserved. * diff --git a/sys/dev/idt/idtreg.h b/sys/dev/idt/idtreg.h index 43ede7e292da..230bbbb1c78c 100644 --- a/sys/dev/idt/idtreg.h +++ b/sys/dev/idt/idtreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Richard Hodges and Matriplex, inc. * All rights reserved. * diff --git a/sys/dev/idt/idtvar.h b/sys/dev/idt/idtvar.h index 6761a00ee4df..b98ee1af2dad 100644 --- a/sys/dev/idt/idtvar.h +++ b/sys/dev/idt/idtvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Richard Hodges and Matriplex, inc. * All rights reserved. * diff --git a/sys/dev/ie/if_iee16.h b/sys/dev/ie/if_iee16.h index dcd8bae8155a..1196676cfed2 100644 --- a/sys/dev/ie/if_iee16.h +++ b/sys/dev/ie/if_iee16.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1993, 1994, 1995 * Rodney W. Grimes, Milwaukie, Oregon 97222. All rights reserved. * diff --git a/sys/dev/if_ndis/if_ndis.c b/sys/dev/if_ndis/if_ndis.c index 5a6578d48942..f075a27c7c2c 100644 --- a/sys/dev/if_ndis/if_ndis.c +++ b/sys/dev/if_ndis/if_ndis.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/if_ndis/if_ndis_pccard.c b/sys/dev/if_ndis/if_ndis_pccard.c index 8f26eaca8552..0786b016020b 100644 --- a/sys/dev/if_ndis/if_ndis_pccard.c +++ b/sys/dev/if_ndis/if_ndis_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/if_ndis/if_ndis_pci.c b/sys/dev/if_ndis/if_ndis_pci.c index 00f4086ab157..8af48f4a0304 100644 --- a/sys/dev/if_ndis/if_ndis_pci.c +++ b/sys/dev/if_ndis/if_ndis_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/if_ndis/if_ndisvar.h b/sys/dev/if_ndis/if_ndisvar.h index 339d965a8195..8da9b39fc00d 100644 --- a/sys/dev/if_ndis/if_ndisvar.h +++ b/sys/dev/if_ndis/if_ndisvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/iicbus/iicbb_if.m b/sys/dev/iicbus/iicbb_if.m index 564274166968..7d10fe748b22 100644 --- a/sys/dev/iicbus/iicbb_if.m +++ b/sys/dev/iicbus/iicbb_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1998 Nicolas Souchu # All rights reserved. # diff --git a/sys/dev/iicbus/iicbus_if.m b/sys/dev/iicbus/iicbus_if.m index eddc022b97d7..068cf4d86ff3 100644 --- a/sys/dev/iicbus/iicbus_if.m +++ b/sys/dev/iicbus/iicbus_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1998 Nicolas Souchu # All rights reserved. # diff --git a/sys/dev/iir/iir.c b/sys/dev/iir/iir.c index b1c9992827c5..60b2962e64fd 100644 --- a/sys/dev/iir/iir.c +++ b/sys/dev/iir/iir.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-04 ICP vortex GmbH * Copyright (c) 2002-04 Intel Corporation * Copyright (c) 2003-04 Adaptec Inc. diff --git a/sys/dev/iir/iir.h b/sys/dev/iir/iir.h index 688cf634d153..830cf087e9c5 100644 --- a/sys/dev/iir/iir.h +++ b/sys/dev/iir/iir.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000-04 ICP vortex GmbH * Copyright (c) 2002-04 Intel Corporation * Copyright (c) 2003-04 Adaptec Inc. diff --git a/sys/dev/iir/iir_ctrl.c b/sys/dev/iir/iir_ctrl.c index 4d976b3e9e81..172d85bd22ba 100644 --- a/sys/dev/iir/iir_ctrl.c +++ b/sys/dev/iir/iir_ctrl.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-03 ICP vortex GmbH * Copyright (c) 2002-03 Intel Corporation * Copyright (c) 2003 Adaptec Inc. diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index a12c3d4472b9..704acb9f3e46 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. * diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c index 986fc8d6cb9f..8a9642a259ff 100644 --- a/sys/dev/isp/isp_freebsd.c +++ b/sys/dev/isp/isp_freebsd.c @@ -1,4 +1,4 @@ -/* +/*- * Platform (FreeBSD) dependent common attachment code for Qlogic adapters. * * Copyright (c) 1997, 1998, 1999, 2000, 2001 by Matthew Jacob diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index 3f60a948a3b6..4b1586c1b295 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions * Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002 by Matthew Jacob * diff --git a/sys/dev/isp/isp_inline.h b/sys/dev/isp/isp_inline.h index 6bc54fbf08e7..e78eb7621c1b 100644 --- a/sys/dev/isp/isp_inline.h +++ b/sys/dev/isp/isp_inline.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Qlogic Host Adapter Inline Functions * * Copyright (c) 1999, 2000, 2001 by Matthew Jacob diff --git a/sys/dev/isp/isp_ioctl.h b/sys/dev/isp/isp_ioctl.h index 93ccc53f9ceb..921272aa2490 100644 --- a/sys/dev/isp/isp_ioctl.h +++ b/sys/dev/isp/isp_ioctl.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2001 by Matthew Jacob * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/isp/isp_target.c b/sys/dev/isp/isp_target.c index d26d1e35d427..1d4dc6bd86e5 100644 --- a/sys/dev/isp/isp_target.c +++ b/sys/dev/isp/isp_target.c @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Machine and OS Independent Target Mode Code for the Qlogic SCSI/FC adapters. * * Copyright (c) 1999, 2000, 2001 by Matthew Jacob diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h index c0bbc89fb11e..2156da118789 100644 --- a/sys/dev/isp/isp_target.h +++ b/sys/dev/isp/isp_target.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Qlogic Target Mode Structure and Flag Definitions * * Copyright (c) 1997, 1998 diff --git a/sys/dev/isp/isp_tpublic.h b/sys/dev/isp/isp_tpublic.h index 358e956036d9..a2773323d68e 100644 --- a/sys/dev/isp/isp_tpublic.h +++ b/sys/dev/isp/isp_tpublic.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Qlogic ISP Host Adapter Public Target Interface Structures && Routines *--------------------------------------- * Copyright (c) 2000 by Matthew Jacob diff --git a/sys/dev/isp/ispmbox.h b/sys/dev/isp/ispmbox.h index 77aeb00c5ec9..4834fd32c79b 100644 --- a/sys/dev/isp/ispmbox.h +++ b/sys/dev/isp/ispmbox.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Mailbox and Queue Entry Definitions for for Qlogic ISP SCSI adapters. * * Copyright (c) 1997, 1998, 1999, 2000 by Matthew Jacob diff --git a/sys/dev/isp/ispreg.h b/sys/dev/isp/ispreg.h index 2f51790819e2..163ac9894d90 100644 --- a/sys/dev/isp/ispreg.h +++ b/sys/dev/isp/ispreg.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Machine Independent (well, as best as possible) register * definitions for Qlogic ISP SCSI adapters. * diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index 1e99dc9b5c4b..d4bdb0d4648d 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Soft Definitions for for Qlogic ISP SCSI adapters. * * Copyright (c) 1997, 1998, 1999, 2000 by Matthew Jacob diff --git a/sys/dev/ispfw/asm_1000.h b/sys/dev/ispfw/asm_1000.h index 965d0b084d7c..fb064094d30b 100644 --- a/sys/dev/ispfw/asm_1000.h +++ b/sys/dev/ispfw/asm_1000.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_1040.h b/sys/dev/ispfw/asm_1040.h index dbb3992e67e8..9e78a56e5c11 100644 --- a/sys/dev/ispfw/asm_1040.h +++ b/sys/dev/ispfw/asm_1040.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_1080.h b/sys/dev/ispfw/asm_1080.h index de896a08b5df..edb0ad711a28 100644 --- a/sys/dev/ispfw/asm_1080.h +++ b/sys/dev/ispfw/asm_1080.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_12160.h b/sys/dev/ispfw/asm_12160.h index 7279007f29b1..bc1d42089853 100644 --- a/sys/dev/ispfw/asm_12160.h +++ b/sys/dev/ispfw/asm_12160.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_2100.h b/sys/dev/ispfw/asm_2100.h index f593ec3f45cf..399707d57543 100644 --- a/sys/dev/ispfw/asm_2100.h +++ b/sys/dev/ispfw/asm_2100.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_2200.h b/sys/dev/ispfw/asm_2200.h index 8bd389f236c8..3d92bf7c99e4 100644 --- a/sys/dev/ispfw/asm_2200.h +++ b/sys/dev/ispfw/asm_2200.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ispfw/asm_2300.h b/sys/dev/ispfw/asm_2300.h index 152b05700639..7a553b01ce0d 100644 --- a/sys/dev/ispfw/asm_2300.h +++ b/sys/dev/ispfw/asm_2300.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 2001 Qlogic, Inc. * All rights reserved. * diff --git a/sys/dev/ixgb/LICENSE b/sys/dev/ixgb/LICENSE index 35e396476bb9..501764514696 100644 --- a/sys/dev/ixgb/LICENSE +++ b/sys/dev/ixgb/LICENSE @@ -1,4 +1,6 @@ /*$FreeBSD$*/ +/*- + Copyright (c) 2001-2004, Intel Corporation All rights reserved. @@ -27,3 +29,5 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ diff --git a/sys/dev/ixgb/if_ixgb.c b/sys/dev/ixgb/if_ixgb.c index cc4739199f9f..6e58eea97b7a 100644 --- a/sys/dev/ixgb/if_ixgb.c +++ b/sys/dev/ixgb/if_ixgb.c @@ -1,4 +1,4 @@ -/************************************************************************** +/******************************************************************************* Copyright (c) 2001-2004, Intel Corporation All rights reserved. diff --git a/sys/dev/ixgb/if_ixgb.h b/sys/dev/ixgb/if_ixgb.h index a8a7a580664b..f0be0062ee52 100644 --- a/sys/dev/ixgb/if_ixgb.h +++ b/sys/dev/ixgb/if_ixgb.h @@ -1,4 +1,4 @@ -/************************************************************************** +/******************************************************************************* Copyright (c) 2001-2004, Intel Corporation All rights reserved. diff --git a/sys/dev/ixgb/if_ixgb_osdep.h b/sys/dev/ixgb/if_ixgb_osdep.h index 999863cc59a7..31ba6846abab 100644 --- a/sys/dev/ixgb/if_ixgb_osdep.h +++ b/sys/dev/ixgb/if_ixgb_osdep.h @@ -1,4 +1,4 @@ -/************************************************************************** +/******************************************************************************* Copyright (c) 2001-2004, Intel Corporation All rights reserved. diff --git a/sys/dev/lge/if_lge.c b/sys/dev/lge/if_lge.c index 12912f2298d0..6a8ab86f8b77 100644 --- a/sys/dev/lge/if_lge.c +++ b/sys/dev/lge/if_lge.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/lge/if_lgereg.h b/sys/dev/lge/if_lgereg.h index 28a6aec85f41..7c552b03f2e0 100644 --- a/sys/dev/lge/if_lgereg.h +++ b/sys/dev/lge/if_lgereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/lnc/if_lnc_cbus.c b/sys/dev/lnc/if_lnc_cbus.c index c03afc6b4ddb..c52d56ecc3f5 100644 --- a/sys/dev/lnc/if_lnc_cbus.c +++ b/sys/dev/lnc/if_lnc_cbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994-2000 * Paul Richards. All rights reserved. * diff --git a/sys/dev/lnc/if_lnc_isa.c b/sys/dev/lnc/if_lnc_isa.c index 5f6ed66abb36..f53fd4629fd3 100644 --- a/sys/dev/lnc/if_lnc_isa.c +++ b/sys/dev/lnc/if_lnc_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994-2000 * Paul Richards. All rights reserved. * diff --git a/sys/dev/matcd/creativeif.h b/sys/dev/matcd/creativeif.h index 739550b27c84..adf5b005ab4b 100644 --- a/sys/dev/matcd/creativeif.h +++ b/sys/dev/matcd/creativeif.h @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/matcd/matcd.c b/sys/dev/matcd/matcd.c index aead16c72ef5..b73112de7f76 100644 --- a/sys/dev/matcd/matcd.c +++ b/sys/dev/matcd/matcd.c @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/matcd/matcd_data.h b/sys/dev/matcd/matcd_data.h index 1923cec4cbcc..08983cf71d30 100644 --- a/sys/dev/matcd/matcd_data.h +++ b/sys/dev/matcd/matcd_data.h @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/matcd/matcd_isa.c b/sys/dev/matcd/matcd_isa.c index 48d01dd23788..978ede8c2a7f 100644 --- a/sys/dev/matcd/matcd_isa.c +++ b/sys/dev/matcd/matcd_isa.c @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/matcd/matcddrv.h b/sys/dev/matcd/matcddrv.h index b2f069e0bec1..e7ffd5dc3ea7 100644 --- a/sys/dev/matcd/matcddrv.h +++ b/sys/dev/matcd/matcddrv.h @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/matcd/options.h b/sys/dev/matcd/options.h index fe0c8f2adc03..3abf958de6cc 100644 --- a/sys/dev/matcd/options.h +++ b/sys/dev/matcd/options.h @@ -2,7 +2,8 @@ Matsushita(Panasonic) / Creative CD-ROM Driver (matcd) Authored by Frank Durda IV - +*/ +/*- Copyright 1994, 1995, 2002, 2003 Frank Durda IV. All rights reserved. "FDIV" is a trademark of Frank Durda IV. diff --git a/sys/dev/mc146818/mc146818.c b/sys/dev/mc146818/mc146818.c index 48d36a729a92..4d0919341487 100644 --- a/sys/dev/mc146818/mc146818.c +++ b/sys/dev/mc146818/mc146818.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Izumi Tsutsui. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mc146818/mc146818reg.h b/sys/dev/mc146818/mc146818reg.h index 48d558cc78d4..3aab55f56a5a 100644 --- a/sys/dev/mc146818/mc146818reg.h +++ b/sys/dev/mc146818/mc146818reg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/mc146818/mc146818var.h b/sys/dev/mc146818/mc146818var.h index 78d9945f686f..4e8600cd04e1 100644 --- a/sys/dev/mc146818/mc146818var.h +++ b/sys/dev/mc146818/mc146818var.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Izumi Tsutsui. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mcd/mcd.c b/sys/dev/mcd/mcd.c index 0af98c887d68..db351909c652 100644 --- a/sys/dev/mcd/mcd.c +++ b/sys/dev/mcd/mcd.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright 1993 by Holger Veit (data part) * Copyright 1993 by Brian Moore (audio part) * Changes Copyright 1993 by Gary Clark II diff --git a/sys/dev/mcd/mcdreg.h b/sys/dev/mcd/mcdreg.h index cc8a3ab7163a..7a255afa04df 100644 --- a/sys/dev/mcd/mcdreg.h +++ b/sys/dev/mcd/mcdreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright 1993 by Holger Veit (data part) * Copyright 1993 by Brian Moore (audio part) * Changes Copyright 1993 by Gary Clark II diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index f9c72b2917fa..a152f67d778e 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -1,4 +1,4 @@ -/* +/*- * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice you @@ -10,7 +10,7 @@ * */ -/* +/*- * The following functions are based in the vn(4) driver: mdstart_swap(), * mdstart_vnode(), mdcreate_swap(), mdcreate_vnode() and mddestroy(), * and as such under the following copyright: diff --git a/sys/dev/mii/acphy.c b/sys/dev/mii/acphy.c index 78aa5561b7f6..aba0b26f9bdf 100644 --- a/sys/dev/mii/acphy.c +++ b/sys/dev/mii/acphy.c @@ -35,7 +35,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/amphy.c b/sys/dev/mii/amphy.c index ca13a844892d..dac0938ec1ba 100644 --- a/sys/dev/mii/amphy.c +++ b/sys/dev/mii/amphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/amphyreg.h b/sys/dev/mii/amphyreg.h index ffc362a8c7b1..6cdbc95647b5 100644 --- a/sys/dev/mii/amphyreg.h +++ b/sys/dev/mii/amphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/bmtphy.c b/sys/dev/mii/bmtphy.c index c180b5ef5928..b086c8680ef3 100644 --- a/sys/dev/mii/bmtphy.c +++ b/sys/dev/mii/bmtphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/mii/bmtphyreg.h b/sys/dev/mii/bmtphyreg.h index 7f2956ad0b75..223d631a54d5 100644 --- a/sys/dev/mii/bmtphyreg.h +++ b/sys/dev/mii/bmtphyreg.h @@ -1,4 +1,3 @@ - /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 85cf768b2263..9e62df19ac1f 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/brgphyreg.h b/sys/dev/mii/brgphyreg.h index 786f49dae8d5..bb9636d882fb 100644 --- a/sys/dev/mii/brgphyreg.h +++ b/sys/dev/mii/brgphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/ciphy.c b/sys/dev/mii/ciphy.c index 03a71d528349..86567c004715 100644 --- a/sys/dev/mii/ciphy.c +++ b/sys/dev/mii/ciphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/ciphyreg.h b/sys/dev/mii/ciphyreg.h index 2822ac18704c..8c0a8a46cc61 100644 --- a/sys/dev/mii/ciphyreg.h +++ b/sys/dev/mii/ciphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/dcphy.c b/sys/dev/mii/dcphy.c index 28affb81063c..ddf9b7e2a605 100644 --- a/sys/dev/mii/dcphy.c +++ b/sys/dev/mii/dcphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/e1000phy.c b/sys/dev/mii/e1000phy.c index 2dc1448988a0..7894e95f06be 100644 --- a/sys/dev/mii/e1000phy.c +++ b/sys/dev/mii/e1000phy.c @@ -1,4 +1,4 @@ -/* +/*- * Principal Author: Parag Patel * Copyright (c) 2001 * All rights reserved. diff --git a/sys/dev/mii/e1000phyreg.h b/sys/dev/mii/e1000phyreg.h index bdfc665f8901..14bf6124e69a 100644 --- a/sys/dev/mii/e1000phyreg.h +++ b/sys/dev/mii/e1000phyreg.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Principal Author: Parag Patel * Copyright (c) 2001 * All rights reserved. @@ -30,7 +30,7 @@ * Secondary Author: Matthew Jacob */ -/* +/*- * Derived by information released by Intel under the following license: * * Copyright (c) 1999 - 2001, Intel Corporation diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c index 914577289fd9..afb90137388b 100644 --- a/sys/dev/mii/exphy.c +++ b/sys/dev/mii/exphy.c @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/lxtphy.c b/sys/dev/mii/lxtphy.c index db5c1002d757..e4d0c1916748 100644 --- a/sys/dev/mii/lxtphy.c +++ b/sys/dev/mii/lxtphy.c @@ -38,7 +38,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/mii.h b/sys/dev/mii/mii.h index 963c22617722..0f1a4426e6fe 100644 --- a/sys/dev/mii/mii.h +++ b/sys/dev/mii/mii.h @@ -1,6 +1,6 @@ /* $NetBSD: mii.h,v 1.9 2001/05/31 03:07:14 thorpej Exp $ */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Modification to match BSD/OS 3.0 MII interface by Jason R. Thorpe, diff --git a/sys/dev/mii/mlphy.c b/sys/dev/mii/mlphy.c index ecb84f776979..9b2693314ba5 100644 --- a/sys/dev/mii/mlphy.c +++ b/sys/dev/mii/mlphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/nsgphy.c b/sys/dev/mii/nsgphy.c index 8c74a39bb4e7..259739e15a81 100644 --- a/sys/dev/mii/nsgphy.c +++ b/sys/dev/mii/nsgphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/mii/nsgphyreg.h b/sys/dev/mii/nsgphyreg.h index c7680f1e8a3c..44899191715e 100644 --- a/sys/dev/mii/nsgphyreg.h +++ b/sys/dev/mii/nsgphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/mii/nsphy.c b/sys/dev/mii/nsphy.c index 70676ddc1e4f..05941492947d 100644 --- a/sys/dev/mii/nsphy.c +++ b/sys/dev/mii/nsphy.c @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/pnaphy.c b/sys/dev/mii/pnaphy.c index 50986dc52f5c..6f3ab65a9deb 100644 --- a/sys/dev/mii/pnaphy.c +++ b/sys/dev/mii/pnaphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Berkeley Software Design, Inc. * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. diff --git a/sys/dev/mii/qsphy.c b/sys/dev/mii/qsphy.c index 2f09eeb3d09b..9c92ed8a5de3 100644 --- a/sys/dev/mii/qsphy.c +++ b/sys/dev/mii/qsphy.c @@ -38,7 +38,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/rgephy.c b/sys/dev/mii/rgephy.c index 98609db14d26..ad384a93e82e 100644 --- a/sys/dev/mii/rgephy.c +++ b/sys/dev/mii/rgephy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/rgephyreg.h b/sys/dev/mii/rgephyreg.h index 1adecf4611cb..0ce44dfcd9ac 100644 --- a/sys/dev/mii/rgephyreg.h +++ b/sys/dev/mii/rgephyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/rlphy.c b/sys/dev/mii/rlphy.c index 2e93373d84bf..f9c9b5e3102c 100644 --- a/sys/dev/mii/rlphy.c +++ b/sys/dev/mii/rlphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/tdkphy.c b/sys/dev/mii/tdkphy.c index c5efb691683b..8ae7b0506d01 100644 --- a/sys/dev/mii/tdkphy.c +++ b/sys/dev/mii/tdkphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/mii/tdkphyreg.h b/sys/dev/mii/tdkphyreg.h index 1f106251b607..4429c9481ec7 100644 --- a/sys/dev/mii/tdkphyreg.h +++ b/sys/dev/mii/tdkphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/mii/tlphy.c b/sys/dev/mii/tlphy.c index ff00a4708312..f07e33e16c43 100644 --- a/sys/dev/mii/tlphy.c +++ b/sys/dev/mii/tlphy.c @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/tlphyreg.h b/sys/dev/mii/tlphyreg.h index 77e4a45700bd..a016f4cc6910 100644 --- a/sys/dev/mii/tlphyreg.h +++ b/sys/dev/mii/tlphyreg.h @@ -1,6 +1,6 @@ /* $NetBSD: tlphyreg.h,v 1.1 1998/08/10 23:59:58 thorpej Exp $ */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/ukphy.c b/sys/dev/mii/ukphy.c index c75bd6cfa820..2d87b565c241 100644 --- a/sys/dev/mii/ukphy.c +++ b/sys/dev/mii/ukphy.c @@ -37,7 +37,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1997 Manuel Bouyer. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mii/xmphy.c b/sys/dev/mii/xmphy.c index 1270c42c154a..c6d2ee9b383a 100644 --- a/sys/dev/mii/xmphy.c +++ b/sys/dev/mii/xmphy.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mii/xmphyreg.h b/sys/dev/mii/xmphyreg.h index e06b1970831e..1e828e1681a1 100644 --- a/sys/dev/mii/xmphyreg.h +++ b/sys/dev/mii/xmphyreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/mpt/mpilib/fc_log.h b/sys/dev/mpt/mpilib/fc_log.h index 2b02a9ac95b3..fd68bf645931 100644 --- a/sys/dev/mpt/mpilib/fc_log.h +++ b/sys/dev/mpt/mpilib/fc_log.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi.h b/sys/dev/mpt/mpilib/mpi.h index a3fab3c2aeb9..1044d8205ca7 100644 --- a/sys/dev/mpt/mpilib/mpi.h +++ b/sys/dev/mpt/mpilib/mpi.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_cnfg.h b/sys/dev/mpt/mpilib/mpi_cnfg.h index 6008f4227771..356aee748696 100644 --- a/sys/dev/mpt/mpilib/mpi_cnfg.h +++ b/sys/dev/mpt/mpilib/mpi_cnfg.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_fc.h b/sys/dev/mpt/mpilib/mpi_fc.h index 60487e139d69..470d385ed5ab 100644 --- a/sys/dev/mpt/mpilib/mpi_fc.h +++ b/sys/dev/mpt/mpilib/mpi_fc.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_init.h b/sys/dev/mpt/mpilib/mpi_init.h index 78545889f819..527b1f9ab7e5 100644 --- a/sys/dev/mpt/mpilib/mpi_init.h +++ b/sys/dev/mpt/mpilib/mpi_init.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_ioc.h b/sys/dev/mpt/mpilib/mpi_ioc.h index e2e8f43fe81e..a8f8d3e1bc7e 100644 --- a/sys/dev/mpt/mpilib/mpi_ioc.h +++ b/sys/dev/mpt/mpilib/mpi_ioc.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_lan.h b/sys/dev/mpt/mpilib/mpi_lan.h index 0c2a137b3517..ceaf353a54e7 100644 --- a/sys/dev/mpt/mpilib/mpi_lan.h +++ b/sys/dev/mpt/mpilib/mpi_lan.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_raid.h b/sys/dev/mpt/mpilib/mpi_raid.h index c78a600b64a5..196f1ba00d6a 100644 --- a/sys/dev/mpt/mpilib/mpi_raid.h +++ b/sys/dev/mpt/mpilib/mpi_raid.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_targ.h b/sys/dev/mpt/mpilib/mpi_targ.h index f212c62d13dc..ba8b2ca7b553 100644 --- a/sys/dev/mpt/mpilib/mpi_targ.h +++ b/sys/dev/mpt/mpilib/mpi_targ.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpilib/mpi_type.h b/sys/dev/mpt/mpilib/mpi_type.h index becf1a0747c4..c10cb92bbc8d 100644 --- a/sys/dev/mpt/mpilib/mpi_type.h +++ b/sys/dev/mpt/mpilib/mpi_type.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000, 2001 by LSI Logic Corporation * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/mpt/mpt.c b/sys/dev/mpt/mpt.c index 99c0faf37cc7..9e6e144678f9 100644 --- a/sys/dev/mpt/mpt.c +++ b/sys/dev/mpt/mpt.c @@ -1,4 +1,4 @@ -/* +/*- * Generic routines for LSI '909 FC adapters. * FreeBSD Version. * diff --git a/sys/dev/mpt/mpt.h b/sys/dev/mpt/mpt.h index 82e8cf518752..8161d2412575 100644 --- a/sys/dev/mpt/mpt.h +++ b/sys/dev/mpt/mpt.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * Generic defines for LSI '909 FC adapters. * FreeBSD Version. * diff --git a/sys/dev/mpt/mpt_debug.c b/sys/dev/mpt/mpt_debug.c index d7ec166aee36..84ea8ddd27ad 100644 --- a/sys/dev/mpt/mpt_debug.c +++ b/sys/dev/mpt/mpt_debug.c @@ -1,4 +1,4 @@ -/* +/*- * Debug routines for LSI '909 FC adapters. * FreeBSD Version. * diff --git a/sys/dev/mpt/mpt_freebsd.c b/sys/dev/mpt/mpt_freebsd.c index 58e147db1806..d7bb43055066 100644 --- a/sys/dev/mpt/mpt_freebsd.c +++ b/sys/dev/mpt/mpt_freebsd.c @@ -1,4 +1,4 @@ -/* +/*- * FreeBSD/CAM specific routines for LSI '909 FC adapters. * FreeBSD Version. * diff --git a/sys/dev/mpt/mpt_freebsd.h b/sys/dev/mpt/mpt_freebsd.h index 991e56e5e6bd..49e6f4e0c371 100644 --- a/sys/dev/mpt/mpt_freebsd.h +++ b/sys/dev/mpt/mpt_freebsd.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* +/*- * LSI MPT Host Adapter FreeBSD Wrapper Definitions (CAM version) * * Copyright (c) 2000, 2001 by Greg Ansley, Adam Prewett diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c index 8a827d1eb30d..6847f16e589d 100644 --- a/sys/dev/mse/mse.c +++ b/sys/dev/mse/mse.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/mse/mse_cbus.c b/sys/dev/mse/mse_cbus.c index 8fd99559e1d3..60129e7842ae 100644 --- a/sys/dev/mse/mse_cbus.c +++ b/sys/dev/mse/mse_cbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/mse/mse_isa.c b/sys/dev/mse/mse_isa.c index d06bfa80999c..1bf0669b57d8 100644 --- a/sys/dev/mse/mse_isa.c +++ b/sys/dev/mse/mse_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/mse/msevar.h b/sys/dev/mse/msevar.h index edbb482a77a3..37ca728cfc90 100644 --- a/sys/dev/mse/msevar.h +++ b/sys/dev/mse/msevar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/my/if_myreg.h b/sys/dev/my/if_myreg.h index ccc7338a9eb7..9d889d12acef 100644 --- a/sys/dev/my/if_myreg.h +++ b/sys/dev/my/if_myreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Myson Technology Inc. * All rights reserved. * diff --git a/sys/dev/ncv/ncr53c500.c b/sys/dev/ncv/ncr53c500.c index dbb8ea9df3a7..346c09aebda8 100644 --- a/sys/dev/ncv/ncr53c500.c +++ b/sys/dev/ncv/ncr53c500.c @@ -5,7 +5,7 @@ #define NCV_STATICS #define NCV_IO_CONTROL_FLAGS (0) -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ncv/ncr53c500_pccard.c b/sys/dev/ncv/ncr53c500_pccard.c index 1e97372aa263..fddb9e2fe04d 100644 --- a/sys/dev/ncv/ncr53c500_pccard.c +++ b/sys/dev/ncv/ncr53c500_pccard.c @@ -1,7 +1,7 @@ /* $NecBSD: ncr53c500_pisa.c,v 1.28 1998/11/26 01:59:11 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [Ported for FreeBSD] * Copyright (c) 2000 * Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe. diff --git a/sys/dev/ncv/ncr53c500hw.h b/sys/dev/ncv/ncr53c500hw.h index cf1228855515..7a4b337b8985 100644 --- a/sys/dev/ncv/ncr53c500hw.h +++ b/sys/dev/ncv/ncr53c500hw.h @@ -2,7 +2,7 @@ /* $NecBSD: ncr53c500hw.h,v 1.6.18.1 2001/06/08 06:27:44 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ncv/ncr53c500hwtab.h b/sys/dev/ncv/ncr53c500hwtab.h index 7e16b9e72fbd..47406b1947e4 100644 --- a/sys/dev/ncv/ncr53c500hwtab.h +++ b/sys/dev/ncv/ncr53c500hwtab.h @@ -2,7 +2,7 @@ /* $NecBSD: ncr53c500hwtab.h,v 1.2.18.1 2001/06/08 06:27:44 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ncv/ncr53c500reg.h b/sys/dev/ncv/ncr53c500reg.h index 0296c5eae004..2a9906e44cdf 100644 --- a/sys/dev/ncv/ncr53c500reg.h +++ b/sys/dev/ncv/ncr53c500reg.h @@ -2,7 +2,7 @@ /* $NecBSD: ncr53c500reg.h,v 1.5.14.1 2001/06/08 06:27:44 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ncv/ncr53c500var.h b/sys/dev/ncv/ncr53c500var.h index 6d5edce9cae7..b3aff4660f0d 100644 --- a/sys/dev/ncv/ncr53c500var.h +++ b/sys/dev/ncv/ncr53c500var.h @@ -2,7 +2,7 @@ /* $NecBSD: ncr53c500var.h,v 1.11.18.1 2001/06/08 06:27:45 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/nge/if_nge.c b/sys/dev/nge/if_nge.c index 070e177482a2..1958301546be 100644 --- a/sys/dev/nge/if_nge.c +++ b/sys/dev/nge/if_nge.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/nge/if_ngereg.h b/sys/dev/nge/if_ngereg.h index e27359fc8645..5a46aa64038a 100644 --- a/sys/dev/nge/if_ngereg.h +++ b/sys/dev/nge/if_ngereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 * Bill Paul . All rights reserved. diff --git a/sys/dev/nmdm/nmdm.c b/sys/dev/nmdm/nmdm.c index a408d10ad20d..ccb34673f7b2 100644 --- a/sys/dev/nmdm/nmdm.c +++ b/sys/dev/nmdm/nmdm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1982, 1986, 1989, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/sys/dev/nsp/nsp.c b/sys/dev/nsp/nsp.c index 954d1bb98898..d955ff2938b2 100644 --- a/sys/dev/nsp/nsp.c +++ b/sys/dev/nsp/nsp.c @@ -8,7 +8,7 @@ NSP_READ_FIFO_INTERRUPTS | NSP_WRITE_FIFO_INTERRUPTS | \ NSP_USE_MEMIO | NSP_WAIT_FOR_SELECT) -/* +/*- * Copyright (c) 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. * diff --git a/sys/dev/nsp/nsp_pccard.c b/sys/dev/nsp/nsp_pccard.c index 4c61b07d122d..3be1cdbba059 100644 --- a/sys/dev/nsp/nsp_pccard.c +++ b/sys/dev/nsp/nsp_pccard.c @@ -1,7 +1,7 @@ /* $NecBSD: nsp_pisa.c,v 1.4 1999/04/15 01:35:54 kmatsuda Exp $ */ /* $NetBSD$ */ -/* +/*- * [Ported for FreeBSD] * Copyright (c) 2000 * Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe. diff --git a/sys/dev/nsp/nspreg.h b/sys/dev/nsp/nspreg.h index 3bfcd9696bcf..81512c91a609 100644 --- a/sys/dev/nsp/nspreg.h +++ b/sys/dev/nsp/nspreg.h @@ -2,7 +2,7 @@ /* $NecBSD: nspreg.h,v 1.4.14.3 2001/06/29 06:27:53 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/nsp/nspvar.h b/sys/dev/nsp/nspvar.h index 57614084834f..59af783ade02 100644 --- a/sys/dev/nsp/nspvar.h +++ b/sys/dev/nsp/nspvar.h @@ -2,7 +2,7 @@ /* $NecBSD: nspvar.h,v 1.7.14.5 2001/06/29 06:27:54 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/ofw/ofw_bus_if.m b/sys/dev/ofw/ofw_bus_if.m index 87e4fcc41e28..edeee5f655b0 100644 --- a/sys/dev/ofw/ofw_bus_if.m +++ b/sys/dev/ofw/ofw_bus_if.m @@ -1,3 +1,4 @@ +#- # Copyright (c) 2001, 2003 by Thomas Moestl # Copyright (c) 2004 by Marius Strobl # All rights reserved. diff --git a/sys/dev/ofw/ofw_console.c b/sys/dev/ofw/ofw_console.c index 40ac7dc7ca7b..08609944190e 100644 --- a/sys/dev/ofw/ofw_console.c +++ b/sys/dev/ofw/ofw_console.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2001 Benno Rice. * All rights reserved. * diff --git a/sys/dev/ofw/ofw_disk.c b/sys/dev/ofw/ofw_disk.c index 67a9451d94db..5c759d1cee68 100644 --- a/sys/dev/ofw/ofw_disk.c +++ b/sys/dev/ofw/ofw_disk.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2002 Benno Rice * All rights reserved. * diff --git a/sys/dev/ofw/openfirm.c b/sys/dev/ofw/openfirm.c index db87a4a2da5c..f7ef330597b3 100644 --- a/sys/dev/ofw/openfirm.c +++ b/sys/dev/ofw/openfirm.c @@ -1,6 +1,6 @@ /* $NetBSD: Locore.c,v 1.7 2000/08/20 07:04:59 tsubai Exp $ */ -/* +/*- * Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 TooLs GmbH. * All rights reserved. @@ -33,7 +33,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (C) 2000 Benno Rice. * All rights reserved. * diff --git a/sys/dev/ofw/openfirm.h b/sys/dev/ofw/openfirm.h index acbaad741564..28b95b339761 100644 --- a/sys/dev/ofw/openfirm.h +++ b/sys/dev/ofw/openfirm.h @@ -1,6 +1,6 @@ /* $NetBSD: openfirm.h,v 1.1 1998/05/15 10:16:00 tsubai Exp $ */ -/* +/*- * Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 TooLs GmbH. * All rights reserved. diff --git a/sys/dev/ofw/openfirmio.c b/sys/dev/ofw/openfirmio.c index b67a1f8fb015..d9272d1145d3 100644 --- a/sys/dev/ofw/openfirmio.c +++ b/sys/dev/ofw/openfirmio.c @@ -3,7 +3,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/sys/dev/ofw/openfirmio.h b/sys/dev/ofw/openfirmio.h index c4f21d2897a4..bb020262ccba 100644 --- a/sys/dev/ofw/openfirmio.h +++ b/sys/dev/ofw/openfirmio.h @@ -1,6 +1,6 @@ /* $NetBSD: openfirmio.h,v 1.4 2002/09/06 13:23:19 gehenna Exp $ */ -/* +/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/sys/dev/owi/if_owi.c b/sys/dev/owi/if_owi.c index c8a1aa8693dd..b33da65059cf 100644 --- a/sys/dev/owi/if_owi.c +++ b/sys/dev/owi/if_owi.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/owi/if_owi_pccard.c b/sys/dev/owi/if_owi_pccard.c index 1720820a453d..e51bda006144 100644 --- a/sys/dev/owi/if_owi_pccard.c +++ b/sys/dev/owi/if_owi_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/owi/if_wireg.h b/sys/dev/owi/if_wireg.h index 04de3b3538ce..697463fffcad 100644 --- a/sys/dev/owi/if_wireg.h +++ b/sys/dev/owi/if_wireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/owi/if_wivar.h b/sys/dev/owi/if_wivar.h index 98f197069fd1..a439949e5916 100644 --- a/sys/dev/owi/if_wivar.h +++ b/sys/dev/owi/if_wivar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 * M Warner Losh . All rights reserved. * Copyright (c) 1997, 1998, 1999 diff --git a/sys/dev/patm/genrtab/genrtab.c b/sys/dev/patm/genrtab/genrtab.c index eef0749fc8c4..8d696cfa8ef6 100644 --- a/sys/dev/patm/genrtab/genrtab.c +++ b/sys/dev/patm/genrtab/genrtab.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/idt77252reg.h b/sys/dev/patm/idt77252reg.h index c970568f6ac3..13013a2f1056 100644 --- a/sys/dev/patm/idt77252reg.h +++ b/sys/dev/patm/idt77252reg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm.c b/sys/dev/patm/if_patm.c index 900d1fa7161a..ac01b9586e54 100644 --- a/sys/dev/patm/if_patm.c +++ b/sys/dev/patm/if_patm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm_attach.c b/sys/dev/patm/if_patm_attach.c index dd4a52d0e335..f7847250d2ae 100644 --- a/sys/dev/patm/if_patm_attach.c +++ b/sys/dev/patm/if_patm_attach.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm_intr.c b/sys/dev/patm/if_patm_intr.c index a8f1c3b0a8a7..f17725395d85 100644 --- a/sys/dev/patm/if_patm_intr.c +++ b/sys/dev/patm/if_patm_intr.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm_ioctl.c b/sys/dev/patm/if_patm_ioctl.c index 359d447cec48..6dc669d99ff3 100644 --- a/sys/dev/patm/if_patm_ioctl.c +++ b/sys/dev/patm/if_patm_ioctl.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm_rx.c b/sys/dev/patm/if_patm_rx.c index a008b3563a59..01c32435fb7f 100644 --- a/sys/dev/patm/if_patm_rx.c +++ b/sys/dev/patm/if_patm_rx.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patm_tx.c b/sys/dev/patm/if_patm_tx.c index 112251627f56..0c6a99e185a9 100644 --- a/sys/dev/patm/if_patm_tx.c +++ b/sys/dev/patm/if_patm_tx.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/patm/if_patmvar.h b/sys/dev/patm/if_patmvar.h index f26cf17132e5..5cadbc3522da 100644 --- a/sys/dev/patm/if_patmvar.h +++ b/sys/dev/patm/if_patmvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/pbio/pbio.c b/sys/dev/pbio/pbio.c index 14b21f3957e4..84b883da1bc6 100644 --- a/sys/dev/pbio/pbio.c +++ b/sys/dev/pbio/pbio.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2004 * Diomidis D. Spinellis, Athens, Greece * All rights reserved. diff --git a/sys/dev/pbio/pbioio.h b/sys/dev/pbio/pbioio.h index a2b6c7e615ae..9a08bfab0254 100644 --- a/sys/dev/pbio/pbioio.h +++ b/sys/dev/pbio/pbioio.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2004 * Diomidis D. Spinellis, Athens, Greece * All rights reserved. diff --git a/sys/dev/pccard/card_if.m b/sys/dev/pccard/card_if.m index 40c429eac148..5328bc6daf0f 100644 --- a/sys/dev/pccard/card_if.m +++ b/sys/dev/pccard/card_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1999 M. Warner Losh. # All rights reserved. # diff --git a/sys/dev/pccard/pccard.c b/sys/dev/pccard/pccard.c index 3509a8c0690c..020f89494f12 100644 --- a/sys/dev/pccard/pccard.c +++ b/sys/dev/pccard/pccard.c @@ -1,6 +1,6 @@ /* $NetBSD: pcmcia.c,v 1.23 2000/07/28 19:17:02 drochner Exp $ */ -/* +/*- * Copyright (c) 1997 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/pccard_cis.c b/sys/dev/pccard/pccard_cis.c index 99ec42780503..2fa88efd17cb 100644 --- a/sys/dev/pccard/pccard_cis.c +++ b/sys/dev/pccard/pccard_cis.c @@ -1,7 +1,7 @@ /* $NetBSD: pcmcia_cis.c,v 1.17 2000/02/10 09:01:52 chopps Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1997 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/pccard_cis.h b/sys/dev/pccard/pccard_cis.h index 9c8221cacbe1..d6b9c3899f86 100644 --- a/sys/dev/pccard/pccard_cis.h +++ b/sys/dev/pccard/pccard_cis.h @@ -1,6 +1,6 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1997 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/pccard_cis_quirks.c b/sys/dev/pccard/pccard_cis_quirks.c index 7e7bf519fa35..e465e381c741 100644 --- a/sys/dev/pccard/pccard_cis_quirks.c +++ b/sys/dev/pccard/pccard_cis_quirks.c @@ -5,7 +5,7 @@ __FBSDID("$FreeBSD$"); #define PCCARDDEBUG -/* +/*- * Copyright (c) 1998 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/pccardreg.h b/sys/dev/pccard/pccardreg.h index f6f67f8dba80..e0f6647771bc 100644 --- a/sys/dev/pccard/pccardreg.h +++ b/sys/dev/pccard/pccardreg.h @@ -1,7 +1,7 @@ /* $NetBSD: pcmciareg.h,v 1.7 1998/10/29 09:45:52 enami Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1997 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/pccardvar.h b/sys/dev/pccard/pccardvar.h index e6aa22f6b383..37835e2bbebb 100644 --- a/sys/dev/pccard/pccardvar.h +++ b/sys/dev/pccard/pccardvar.h @@ -1,7 +1,7 @@ /* $NetBSD: pcmciavar.h,v 1.12 2000/02/08 12:51:31 enami Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1997 Marc Horowitz. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccard/power_if.m b/sys/dev/pccard/power_if.m index d661d5c5ccd9..a85fd01e50e0 100644 --- a/sys/dev/pccard/power_if.m +++ b/sys/dev/pccard/power_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1999 M. Warner Losh. # All rights reserved. # diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c index 418696e2bc2a..363515637519 100644 --- a/sys/dev/pccbb/pccbb.c +++ b/sys/dev/pccbb/pccbb.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2004 M. Warner Losh. * Copyright (c) 2000-2001 Jonathan Chen. * All rights reserved. diff --git a/sys/dev/pccbb/pccbb_isa.c b/sys/dev/pccbb/pccbb_isa.c index 9d5818e25865..e173ab29352f 100644 --- a/sys/dev/pccbb/pccbb_isa.c +++ b/sys/dev/pccbb/pccbb_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2004 M. Warner Losh. * All rights reserved. * diff --git a/sys/dev/pccbb/pccbb_pci.c b/sys/dev/pccbb/pccbb_pci.c index 280141584222..461a85f329d1 100644 --- a/sys/dev/pccbb/pccbb_pci.c +++ b/sys/dev/pccbb/pccbb_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002-2004 M. Warner Losh. * Copyright (c) 2000-2001 Jonathan Chen. * All rights reserved. diff --git a/sys/dev/pccbb/pccbbdevid.h b/sys/dev/pccbb/pccbbdevid.h index 85df56a61f83..0e3ab5b25e6b 100644 --- a/sys/dev/pccbb/pccbbdevid.h +++ b/sys/dev/pccbb/pccbbdevid.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001-2004 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/pccbb/pccbbreg.h b/sys/dev/pccbb/pccbbreg.h index fddf46739cf6..5c892ff499a4 100644 --- a/sys/dev/pccbb/pccbbreg.h +++ b/sys/dev/pccbb/pccbbreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. * diff --git a/sys/dev/pccbb/pccbbvar.h b/sys/dev/pccbb/pccbbvar.h index 75458af7398b..61dc600cb0c7 100644 --- a/sys/dev/pccbb/pccbbvar.h +++ b/sys/dev/pccbb/pccbbvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003-2004 Warner Losh. * Copyright (c) 2000,2001 Jonathan Chen. * All rights reserved. diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 5fc6f233b76a..0ef7dd1a0dd8 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, Stefan Esser * Copyright (c) 2000, Michael Smith * Copyright (c) 2000, BSDi diff --git a/sys/dev/pci/pci_if.m b/sys/dev/pci/pci_if.m index 635005dc1bcb..107746b25f0a 100644 --- a/sys/dev/pci/pci_if.m +++ b/sys/dev/pci/pci_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1998 Doug Rabson # All rights reserved. # diff --git a/sys/dev/pci/pci_private.h b/sys/dev/pci/pci_private.h index 041e8e306d14..fdeeaaab2bae 100644 --- a/sys/dev/pci/pci_private.h +++ b/sys/dev/pci/pci_private.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, Stefan Esser * Copyright (c) 2000, Michael Smith * Copyright (c) 2000, BSDi diff --git a/sys/dev/pci/pcib_if.m b/sys/dev/pci/pcib_if.m index 1ea253800563..c9f480e701a3 100644 --- a/sys/dev/pci/pcib_if.m +++ b/sys/dev/pci/pcib_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 2000 Doug Rabson # All rights reserved. # diff --git a/sys/dev/pci/pcireg.h b/sys/dev/pci/pcireg.h index 9f0f612848ec..b4de6fd741c5 100644 --- a/sys/dev/pci/pcireg.h +++ b/sys/dev/pci/pcireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, Stefan Esser * All rights reserved. * diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h index 38eaa1d8c2cc..75bc8d3f9e4d 100644 --- a/sys/dev/pci/pcivar.h +++ b/sys/dev/pci/pcivar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, Stefan Esser * All rights reserved. * diff --git a/sys/dev/ppbus/lpt.c b/sys/dev/ppbus/lpt.c index 3b978d7a9873..251f56e594fb 100644 --- a/sys/dev/ppbus/lpt.c +++ b/sys/dev/ppbus/lpt.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1990 William F. Jolitz, TeleMuse * All rights reserved. * diff --git a/sys/dev/ppbus/lptio.h b/sys/dev/ppbus/lptio.h index 8458bc6bd357..e8471d396d20 100644 --- a/sys/dev/ppbus/lptio.h +++ b/sys/dev/ppbus/lptio.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1994 Geoffrey M. Rehmet * * This program is free software; you may redistribute it and/or diff --git a/sys/dev/ppbus/pcfclock.c b/sys/dev/ppbus/pcfclock.c index 58bbf2c36e0a..0a650552aece 100644 --- a/sys/dev/ppbus/pcfclock.c +++ b/sys/dev/ppbus/pcfclock.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Sascha Schumann. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ppbus/ppbus_if.m b/sys/dev/ppbus/ppbus_if.m index f21dd837568b..ccc308d23f36 100644 --- a/sys/dev/ppbus/ppbus_if.m +++ b/sys/dev/ppbus/ppbus_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1999 Nicolas Souchu # All rights reserved. # diff --git a/sys/dev/ppbus/pps.c b/sys/dev/ppbus/pps.c index 033d1fef0a56..bf7c08b41ece 100644 --- a/sys/dev/ppbus/pps.c +++ b/sys/dev/ppbus/pps.c @@ -1,4 +1,4 @@ -/* +/*- * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice you diff --git a/sys/dev/ppc/ppcvar.h b/sys/dev/ppc/ppcvar.h index ad3f74cd316f..9bef9080aa7a 100644 --- a/sys/dev/ppc/ppcvar.h +++ b/sys/dev/ppc/ppcvar.h @@ -1,4 +1,3 @@ - /*- * Copyright (c) 1997-2000 Nicolas Souchu * Copyright (c) 2001 Alcove - Nicolas Souchu diff --git a/sys/dev/puc/puc.c b/sys/dev/puc/puc.c index e3f192c4dbc4..d078ad18095f 100644 --- a/sys/dev/puc/puc.c +++ b/sys/dev/puc/puc.c @@ -26,7 +26,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1996, 1998, 1999 * Christopher G. Demetriou. All rights reserved. * diff --git a/sys/dev/puc/puc_ebus.c b/sys/dev/puc/puc_ebus.c index c7ddeb40153e..12ac8766c8b8 100644 --- a/sys/dev/puc/puc_ebus.c +++ b/sys/dev/puc/puc_ebus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/puc/puc_pci.c b/sys/dev/puc/puc_pci.c index b4c0cf4ecc69..7d876de81e60 100644 --- a/sys/dev/puc/puc_pci.c +++ b/sys/dev/puc/puc_pci.c @@ -29,7 +29,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1996, 1998, 1999 * Christopher G. Demetriou. All rights reserved. * diff --git a/sys/dev/puc/puc_sbus.c b/sys/dev/puc/puc_sbus.c index 3d2e7d67a81a..44abd0bccd95 100644 --- a/sys/dev/puc/puc_sbus.c +++ b/sys/dev/puc/puc_sbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c index 24cfcc199e32..ebfbe3952cbc 100644 --- a/sys/dev/puc/pucdata.c +++ b/sys/dev/puc/pucdata.c @@ -1,6 +1,6 @@ /* $NetBSD: pucdata.c,v 1.25 2001/12/16 22:23:01 thorpej Exp $ */ -/* +/*- * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/puc/pucvar.h b/sys/dev/puc/pucvar.h index f0dbe585f813..e6c390d6d0a8 100644 --- a/sys/dev/puc/pucvar.h +++ b/sys/dev/puc/pucvar.h @@ -27,7 +27,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/ray/if_ray.c b/sys/dev/ray/if_ray.c index 2a6c7415eb21..bed18b256324 100644 --- a/sys/dev/ray/if_ray.c +++ b/sys/dev/ray/if_ray.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2000 * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk. * diff --git a/sys/dev/ray/if_raydbg.h b/sys/dev/ray/if_raydbg.h index 2ab5310c91d9..4981da6b85fe 100644 --- a/sys/dev/ray/if_raydbg.h +++ b/sys/dev/ray/if_raydbg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2000 * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk. * diff --git a/sys/dev/ray/if_raymib.h b/sys/dev/ray/if_raymib.h index c8ce2551f240..de3bb1641131 100644 --- a/sys/dev/ray/if_raymib.h +++ b/sys/dev/ray/if_raymib.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2000 * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk. * diff --git a/sys/dev/ray/if_rayreg.h b/sys/dev/ray/if_rayreg.h index cff653f6d0fb..562279f7aa3d 100644 --- a/sys/dev/ray/if_rayreg.h +++ b/sys/dev/ray/if_rayreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2000 * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk. * diff --git a/sys/dev/ray/if_rayvar.h b/sys/dev/ray/if_rayvar.h index 0f9ed5c830c6..0a91859ebf67 100644 --- a/sys/dev/ray/if_rayvar.h +++ b/sys/dev/ray/if_rayvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 2000 * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk. * diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c index 8a7e49c4ff4f..071dbc777efc 100644 --- a/sys/dev/rc/rc.c +++ b/sys/dev/rc/rc.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia. * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia. * Copyright (C) 2002 by John Baldwin diff --git a/sys/dev/rc/rcreg.h b/sys/dev/rc/rcreg.h index 321222ed26de..8ba287e7251c 100644 --- a/sys/dev/rc/rcreg.h +++ b/sys/dev/rc/rcreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia. * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia. * Copyright (C) 2002 by John Baldwin diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c index 35cbd815e933..8440331da711 100644 --- a/sys/dev/re/if_re.c +++ b/sys/dev/re/if_re.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998-2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/rndtest/rndtest.c b/sys/dev/rndtest/rndtest.c index 1912f92262d4..15ddcceeb59c 100644 --- a/sys/dev/rndtest/rndtest.c +++ b/sys/dev/rndtest/rndtest.c @@ -1,6 +1,6 @@ /* $OpenBSD$ */ -/* +/*- * Copyright (c) 2002 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/rndtest/rndtest.h b/sys/dev/rndtest/rndtest.h index 93b7eb8f1291..5a284e9a91de 100644 --- a/sys/dev/rndtest/rndtest.h +++ b/sys/dev/rndtest/rndtest.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD$ */ -/* +/*- * Copyright (c) 2002 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index 7bf0669f0cb9..e336bca461d1 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) Comtrol Corporation * All rights reserved. * diff --git a/sys/dev/rp/rp_isa.c b/sys/dev/rp/rp_isa.c index 9cb567786afb..ebefe4f8b3ad 100644 --- a/sys/dev/rp/rp_isa.c +++ b/sys/dev/rp/rp_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) Comtrol Corporation * All rights reserved. * diff --git a/sys/dev/rp/rpreg.h b/sys/dev/rp/rpreg.h index 1122ace5fb9a..7ab041d3ccb8 100644 --- a/sys/dev/rp/rpreg.h +++ b/sys/dev/rp/rpreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) Comtrol Corporation * All rights reserved. * diff --git a/sys/dev/rp/rpvar.h b/sys/dev/rp/rpvar.h index 9a4a98108972..66aa21966c7b 100644 --- a/sys/dev/rp/rpvar.h +++ b/sys/dev/rp/rpvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) Comtrol Corporation * All rights reserved. * diff --git a/sys/dev/sab/sab.c b/sys/dev/sab/sab.c index dbce512c243a..230fde55bcf5 100644 --- a/sys/dev/sab/sab.c +++ b/sys/dev/sab/sab.c @@ -1,6 +1,6 @@ /* $OpenBSD: sab.c,v 1.7 2002/04/08 17:49:42 jason Exp $ */ -/* +/*- * Copyright (c) 2001 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/sab/sab82532reg.h b/sys/dev/sab/sab82532reg.h index 8b53371972de..77e48216357f 100644 --- a/sys/dev/sab/sab82532reg.h +++ b/sys/dev/sab/sab82532reg.h @@ -1,6 +1,6 @@ /* $OpenBSD: sab82532reg.h,v 1.2 2002/04/08 17:49:42 jason Exp $ */ -/* +/*- * Copyright (c) 2001 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/sbni/if_sbni.c b/sys/dev/sbni/if_sbni.c index 27ebcae4ca27..c5228b318484 100644 --- a/sys/dev/sbni/if_sbni.c +++ b/sys/dev/sbni/if_sbni.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved. * Author: Denis I.Timofeev * diff --git a/sys/dev/sbni/if_sbni_isa.c b/sys/dev/sbni/if_sbni_isa.c index 0cd88ba696be..956882aeaf99 100644 --- a/sys/dev/sbni/if_sbni_isa.c +++ b/sys/dev/sbni/if_sbni_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved. * Author: Denis I.Timofeev * diff --git a/sys/dev/sbni/if_sbnireg.h b/sys/dev/sbni/if_sbnireg.h index 70fca443051b..4fec30c62f1f 100644 --- a/sys/dev/sbni/if_sbnireg.h +++ b/sys/dev/sbni/if_sbnireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved. * Author: Denis I.Timofeev * diff --git a/sys/dev/sbni/if_sbnivar.h b/sys/dev/sbni/if_sbnivar.h index 8668a6050870..0fe2f09568b9 100644 --- a/sys/dev/sbni/if_sbnivar.h +++ b/sys/dev/sbni/if_sbnivar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved. * Author: Denis I.Timofeev * diff --git a/sys/dev/sbsh/if_sbshreg.h b/sys/dev/sbsh/if_sbshreg.h index 44404712a952..94cb0aac46c9 100644 --- a/sys/dev/sbsh/if_sbshreg.h +++ b/sys/dev/sbsh/if_sbshreg.h @@ -1,4 +1,4 @@ -/** +/*- * Granch SBNI16 G.SHDSL Modem driver definitions * Written by Denis I. Timofeev, 2002-2003. * diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index ddd3c0f9f3a0..2f9f872668c8 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * * Copyright (C) 1990, 1992, 1998 Specialix International, diff --git a/sys/dev/si/si.h b/sys/dev/si/si.h index 32f4ab55df5a..c9adefb788e9 100644 --- a/sys/dev/si/si.h +++ b/sys/dev/si/si.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * 'C' definitions for Specialix serial multiplex driver. * diff --git a/sys/dev/si/si2_z280.c b/sys/dev/si/si2_z280.c index 84179dd8d1ab..6caaf3d577a3 100644 --- a/sys/dev/si/si2_z280.c +++ b/sys/dev/si/si2_z280.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1998 Specialix International. * * Download code for SI/XIO/SX host cards. diff --git a/sys/dev/si/si3_t225.c b/sys/dev/si/si3_t225.c index 16a928902a98..17980075a658 100644 --- a/sys/dev/si/si3_t225.c +++ b/sys/dev/si/si3_t225.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1998 Specialix International. * * Download code for SI/XIO/SX host cards. diff --git a/sys/dev/si/si_eisa.c b/sys/dev/si/si_eisa.c index 6be3c87af6be..edb0a8ef0359 100644 --- a/sys/dev/si/si_eisa.c +++ b/sys/dev/si/si_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * * Copyright (C) 2000, Peter Wemm diff --git a/sys/dev/si/si_isa.c b/sys/dev/si/si_isa.c index 91cc6e869a9c..5758a8391d4b 100644 --- a/sys/dev/si/si_isa.c +++ b/sys/dev/si/si_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * * Copyright (C) 2000, Peter Wemm diff --git a/sys/dev/si/sireg.h b/sys/dev/si/sireg.h index 0d59ea9fff62..4b4ef6ad6063 100644 --- a/sys/dev/si/sireg.h +++ b/sys/dev/si/sireg.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * 'C' definitions for Specialix serial multiplex driver. * diff --git a/sys/dev/si/sivar.h b/sys/dev/si/sivar.h index 8e28344b6b14..e479f470faf4 100644 --- a/sys/dev/si/sivar.h +++ b/sys/dev/si/sivar.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix range (SI/XIO) of serial line multiplexors. * * Copyright (C) 2000, Peter Wemm diff --git a/sys/dev/sio/sio_isa.c b/sys/dev/sio/sio_isa.c index 137f47ecde5f..40541e662521 100644 --- a/sys/dev/sio/sio_isa.c +++ b/sys/dev/sio/sio_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sio/sio_pccard.c b/sys/dev/sio/sio_pccard.c index cafb143eddd7..713393a87097 100644 --- a/sys/dev/sio/sio_pccard.c +++ b/sys/dev/sio/sio_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/smbus/smbus_if.m b/sys/dev/smbus/smbus_if.m index 781a15961292..6b213e1f4c23 100644 --- a/sys/dev/smbus/smbus_if.m +++ b/sys/dev/smbus/smbus_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1998 Nicolas Souchu # All rights reserved. # diff --git a/sys/dev/sn/if_sn.c b/sys/dev/sn/if_sn.c index ed8fcbb8dc8b..07cefd566776 100644 --- a/sys/dev/sn/if_sn.c +++ b/sys/dev/sn/if_sn.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996 Gardner Buchanan * All rights reserved. * diff --git a/sys/dev/sn/if_sn_isa.c b/sys/dev/sn/if_sn_isa.c index f88f3385d28b..7907f744764c 100644 --- a/sys/dev/sn/if_sn_isa.c +++ b/sys/dev/sn/if_sn_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/sn/if_snreg.h b/sys/dev/sn/if_snreg.h index 55dba1def772..3f5efd01f5a7 100644 --- a/sys/dev/sn/if_snreg.h +++ b/sys/dev/sn/if_snreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996 Gardner Buchanan * All rights reserved. * diff --git a/sys/dev/sn/if_snvar.h b/sys/dev/sn/if_snvar.h index 284b43f85dbf..91c6d8a5b596 100644 --- a/sys/dev/sn/if_snvar.h +++ b/sys/dev/sn/if_snvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/snc/dp83932.c b/sys/dev/snc/dp83932.c index 582b77094db0..1ffd4f15cd9c 100644 --- a/sys/dev/snc/dp83932.c +++ b/sys/dev/snc/dp83932.c @@ -2,7 +2,7 @@ /* $NecBSD: dp83932.c,v 1.5 1999/07/29 05:08:44 kmatsuda Exp $ */ /* $NetBSD: if_snc.c,v 1.18 1998/04/25 21:27:40 scottr Exp $ */ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Kouichi Matsuda. All rights reserved. * @@ -45,7 +45,7 @@ * (64 * 16 bits) Microwire Serial EEPROM. */ -/* +/*- * National Semiconductor DP8393X SONIC Driver * Copyright (c) 1991 Algorithmics Ltd (http://www.algor.co.uk) * You may use, copy, and modify this program so long as you retain the diff --git a/sys/dev/snc/dp83932reg.h b/sys/dev/snc/dp83932reg.h index b72fe86afc6b..31ab550b83ca 100644 --- a/sys/dev/snc/dp83932reg.h +++ b/sys/dev/snc/dp83932reg.h @@ -2,7 +2,7 @@ /* $NecBSD: dp83932reg.h,v 1.2 1999/02/12 05:50:13 kmatsuda Exp $ */ /* $NetBSD: if_snreg.h,v 1.4 1997/06/15 20:20:12 scottr Exp $ */ -/* +/*- * Copyright (c) 1991 Algorithmics Ltd (http://www.algor.co.uk) * You may use, copy, and modify this program so long as you retain the * copyright line. diff --git a/sys/dev/snc/dp83932subr.c b/sys/dev/snc/dp83932subr.c index 7e4b1d75df54..064cb2c3d614 100644 --- a/sys/dev/snc/dp83932subr.c +++ b/sys/dev/snc/dp83932subr.c @@ -1,7 +1,7 @@ /* $NecBSD: dp83932subr.c,v 1.5.6.2 1999/10/09 05:47:23 kmatsuda Exp $ */ /* $NetBSD$ */ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Kouichi Matsuda. All rights reserved. * diff --git a/sys/dev/snc/dp83932subr.h b/sys/dev/snc/dp83932subr.h index 78fa636cc890..f5df4f97970f 100644 --- a/sys/dev/snc/dp83932subr.h +++ b/sys/dev/snc/dp83932subr.h @@ -1,8 +1,8 @@ /* $FreeBSD$ */ /* $NecBSD: dp83932subr.h,v 1.5 1999/02/02 00:47:25 kmatsuda Exp $ */ /* $NetBSD$ */ - -/* + +/*- * Copyright (c) 1997, 1998, 1999 * Kouichi Matsuda. All rights reserved. * diff --git a/sys/dev/snc/dp83932var.h b/sys/dev/snc/dp83932var.h index fcc6a2245284..f621397b930d 100644 --- a/sys/dev/snc/dp83932var.h +++ b/sys/dev/snc/dp83932var.h @@ -2,12 +2,11 @@ /* $NecBSD: dp83932var.h,v 1.3 1999/01/24 01:39:51 kmatsuda Exp $ */ /* $NetBSD: if_snvar.h,v 1.12 1998/05/01 03:42:47 scottr Exp $ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1997, 1998, 1999 * Kouichi Matsuda. All rights reserved. - */ -/* + * * Copyright (c) 1991 Algorithmics Ltd (http://www.algor.co.uk) * You may use, copy, and modify this program so long as you retain the * copyright line. diff --git a/sys/dev/snc/if_snc.c b/sys/dev/snc/if_snc.c index 69a6ca60315e..7cbdd804f7ba 100644 --- a/sys/dev/snc/if_snc.c +++ b/sys/dev/snc/if_snc.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/snc/if_snc_cbus.c b/sys/dev/snc/if_snc_cbus.c index 19a0505ded4f..1b9ef3ef5655 100644 --- a/sys/dev/snc/if_snc_cbus.c +++ b/sys/dev/snc/if_snc_cbus.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/snc/if_snc_pccard.c b/sys/dev/snc/if_snc_pccard.c index 1478d26bd307..c22fa756e42f 100644 --- a/sys/dev/snc/if_snc_pccard.c +++ b/sys/dev/snc/if_snc_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/snc/if_sncreg.h b/sys/dev/snc/if_sncreg.h index 30b0bb755992..888aa4f3ceb3 100644 --- a/sys/dev/snc/if_sncreg.h +++ b/sys/dev/snc/if_sncreg.h @@ -2,7 +2,7 @@ /* $NecBSD: if_snreg.h,v 1.3 1999/01/24 01:39:52 kmatsuda Exp $ */ /* $NetBSD$ */ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Kouichi Matsuda. All rights reserved. * diff --git a/sys/dev/snc/if_sncvar.h b/sys/dev/snc/if_sncvar.h index 33e39f32a3bf..8b6a75b99812 100644 --- a/sys/dev/snc/if_sncvar.h +++ b/sys/dev/snc/if_sncvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, David Greenman * All rights reserved. * diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index c6d8c32eeae0..643c6e7ba2cb 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 Ugen J.S.Antsilevich * * Redistribution and use in source forms, with and without modification, diff --git a/sys/dev/sound/driver.c b/sys/dev/sound/driver.c index f9952665b71b..7da109923b16 100644 --- a/sys/dev/sound/driver.c +++ b/sys/dev/sound/driver.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/isa/ad1816.c b/sys/dev/sound/isa/ad1816.c index 40e006b36636..f34a5c623f65 100644 --- a/sys/dev/sound/isa/ad1816.c +++ b/sys/dev/sound/isa/ad1816.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Copyright Luigi Rizzo, 1997,1998 * Copyright by Hannu Savolainen 1994, 1995 diff --git a/sys/dev/sound/isa/ad1816.h b/sys/dev/sound/isa/ad1816.h index 078523f1d12e..3fe4a3dc3ff1 100644 --- a/sys/dev/sound/isa/ad1816.h +++ b/sys/dev/sound/isa/ad1816.h @@ -1,4 +1,4 @@ -/* +/*- * (C) 1997 Luigi Rizzo (luigi@iet.unipi.it) * * This file contains information and macro definitions for diff --git a/sys/dev/sound/isa/es1888.c b/sys/dev/sound/isa/es1888.c index 24830a258edc..bc89ca4b3bba 100644 --- a/sys/dev/sound/isa/es1888.c +++ b/sys/dev/sound/isa/es1888.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Doug Rabson * All rights reserved. * diff --git a/sys/dev/sound/isa/ess.c b/sys/dev/sound/isa/ess.c index 1cf756a28aa5..248aebe833ba 100644 --- a/sys/dev/sound/isa/ess.c +++ b/sys/dev/sound/isa/ess.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Copyright 1997,1998 Luigi Rizzo. * diff --git a/sys/dev/sound/isa/gusc.c b/sys/dev/sound/isa/gusc.c index bd88322f484d..cb1b1ade4e9a 100644 --- a/sys/dev/sound/isa/gusc.c +++ b/sys/dev/sound/isa/gusc.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Seigo Tanimura * Copyright (c) 1999 Ville-Pertti Keinonen * All rights reserved. diff --git a/sys/dev/sound/isa/mss.c b/sys/dev/sound/isa/mss.c index 3a39569954b9..60b1927380a5 100644 --- a/sys/dev/sound/isa/mss.c +++ b/sys/dev/sound/isa/mss.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 George Reid * Copyright (c) 1999 Cameron Grant * Copyright Luigi Rizzo, 1997,1998 diff --git a/sys/dev/sound/isa/mss.h b/sys/dev/sound/isa/mss.h index d97c70a14cf2..d9247f93b7e6 100644 --- a/sys/dev/sound/isa/mss.h +++ b/sys/dev/sound/isa/mss.h @@ -1,4 +1,4 @@ -/* +/*- * file: mss.h * * (C) 1997 Luigi Rizzo (luigi@iet.unipi.it) @@ -8,6 +8,34 @@ * */ +/*- + * Copyright (c) 1999 Doug Rabson + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + /* * @@ -278,34 +306,6 @@ MIX_NONE(SOUND_MIXER_LINE3), SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD | \ SOUND_MASK_IGAIN | SOUND_MASK_LINE1 ) -/*- - * Copyright (c) 1999 Doug Rabson - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * $FreeBSD$ - */ - /* * Register definitions for the Yamaha OPL3-SA[23x]. */ diff --git a/sys/dev/sound/isa/sb16.c b/sys/dev/sound/isa/sb16.c index 25ad11c25b7a..58cb46ff5def 100644 --- a/sys/dev/sound/isa/sb16.c +++ b/sys/dev/sound/isa/sb16.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Copyright 1997,1998 Luigi Rizzo. * diff --git a/sys/dev/sound/isa/sb8.c b/sys/dev/sound/isa/sb8.c index 53e508c728d1..eefe02544536 100644 --- a/sys/dev/sound/isa/sb8.c +++ b/sys/dev/sound/isa/sb8.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Copyright 1997,1998 Luigi Rizzo. * diff --git a/sys/dev/sound/isa/sbc.c b/sys/dev/sound/isa/sbc.c index 7783c084db9c..d41cf1029307 100644 --- a/sys/dev/sound/isa/sbc.c +++ b/sys/dev/sound/isa/sbc.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Seigo Tanimura * All rights reserved. * diff --git a/sys/dev/sound/isa/sndbuf_dma.c b/sys/dev/sound/isa/sndbuf_dma.c index 2b980807245e..9e45cde9636d 100644 --- a/sys/dev/sound/isa/sndbuf_dma.c +++ b/sys/dev/sound/isa/sndbuf_dma.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/als4000.c b/sys/dev/sound/pci/als4000.c index edfb55b97c1c..6f909ccbb0ed 100644 --- a/sys/dev/sound/pci/als4000.c +++ b/sys/dev/sound/pci/als4000.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/als4000.h b/sys/dev/sound/pci/als4000.h index a6a67df786bc..00661a039b45 100644 --- a/sys/dev/sound/pci/als4000.h +++ b/sys/dev/sound/pci/als4000.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/aureal.c b/sys/dev/sound/pci/aureal.c index 68bebb30469d..8ff1b4057696 100644 --- a/sys/dev/sound/pci/aureal.c +++ b/sys/dev/sound/pci/aureal.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/aureal.h b/sys/dev/sound/pci/aureal.h index d710b2e0ba85..e835c7119fcb 100644 --- a/sys/dev/sound/pci/aureal.h +++ b/sys/dev/sound/pci/aureal.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/cmi.c b/sys/dev/sound/pci/cmi.c index 857592af000d..196fb69353dc 100644 --- a/sys/dev/sound/pci/cmi.c +++ b/sys/dev/sound/pci/cmi.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/cmireg.h b/sys/dev/sound/pci/cmireg.h index 9e838a6faad3..5c468b55ed8b 100644 --- a/sys/dev/sound/pci/cmireg.h +++ b/sys/dev/sound/pci/cmireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/sound/pci/cs4281.c b/sys/dev/sound/pci/cs4281.c index ea9e0fcd33ba..f8da280cb43a 100644 --- a/sys/dev/sound/pci/cs4281.c +++ b/sys/dev/sound/pci/cs4281.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/cs4281.h b/sys/dev/sound/pci/cs4281.h index 68a71e7b7f0a..c7b3799ab89d 100644 --- a/sys/dev/sound/pci/cs4281.h +++ b/sys/dev/sound/pci/cs4281.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/csa.c b/sys/dev/sound/pci/csa.c index 5cc205abfcb9..d9823d732e25 100644 --- a/sys/dev/sound/pci/csa.c +++ b/sys/dev/sound/pci/csa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Seigo Tanimura * All rights reserved. * diff --git a/sys/dev/sound/pci/csapcm.c b/sys/dev/sound/pci/csapcm.c index c53647db2dd5..753f518e2502 100644 --- a/sys/dev/sound/pci/csapcm.c +++ b/sys/dev/sound/pci/csapcm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Seigo Tanimura * All rights reserved. * diff --git a/sys/dev/sound/pci/ds1-fw.h b/sys/dev/sound/pci/ds1-fw.h index 72a052a2b9bc..a34d2338954c 100644 --- a/sys/dev/sound/pci/ds1-fw.h +++ b/sys/dev/sound/pci/ds1-fw.h @@ -1,4 +1,5 @@ -/* ============================================================================= +/*- + * ============================================================================= * Copyright (c) 1997-1999 Yamaha Corporation. All Rights Reserved. * * Title: diff --git a/sys/dev/sound/pci/ds1.c b/sys/dev/sound/pci/ds1.c index 59890d7fc5fc..fa70de1d149e 100644 --- a/sys/dev/sound/pci/ds1.c +++ b/sys/dev/sound/pci/ds1.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/emu10k1.c b/sys/dev/sound/pci/emu10k1.c index aeeba4dac1b9..3716cc07ff29 100644 --- a/sys/dev/sound/pci/emu10k1.c +++ b/sys/dev/sound/pci/emu10k1.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 David O'Brien * Copyright (c) 2003 Orlando Bassotto * Copyright (c) 1999 Cameron Grant diff --git a/sys/dev/sound/pci/es137x.c b/sys/dev/sound/pci/es137x.c index 7b9797312065..b23245e9328f 100644 --- a/sys/dev/sound/pci/es137x.c +++ b/sys/dev/sound/pci/es137x.c @@ -1,4 +1,4 @@ -/* +/*- * Support the ENSONIQ AudioPCI board and Creative Labs SoundBlaster PCI * boards based on the ES1370, ES1371 and ES1373 chips. * diff --git a/sys/dev/sound/pci/es137x.h b/sys/dev/sound/pci/es137x.h index 076fe3c01a1b..8d9b9915050a 100644 --- a/sys/dev/sound/pci/es137x.h +++ b/sys/dev/sound/pci/es137x.h @@ -1,4 +1,4 @@ -/* +/*- * This supports the ENSONIQ AudioPCI board based on the ES1370. * * Copyright (c) 1998 Joachim Kuebart diff --git a/sys/dev/sound/pci/fm801.c b/sys/dev/sound/pci/fm801.c index 1bc52e96553e..9875e0e4b2cd 100644 --- a/sys/dev/sound/pci/fm801.c +++ b/sys/dev/sound/pci/fm801.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Dmitry Dicky diwil@dataart.com * All rights reserved. * diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index 8756993d2438..af27f810b8a3 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Katsurajima Naoto * Copyright (c) 2001 Cameron Grant * All rights reserved. diff --git a/sys/dev/sound/pci/ich.h b/sys/dev/sound/pci/ich.h index 8f6cf68bcb48..be3f3fca3b4a 100644 --- a/sys/dev/sound/pci/ich.h +++ b/sys/dev/sound/pci/ich.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Katsurajima Naoto * Copyright (c) 2001 Cameron Grant * All rights reserved. diff --git a/sys/dev/sound/pci/neomagic-coeff.h b/sys/dev/sound/pci/neomagic-coeff.h index f6cdecfd2f02..2fec6427ae14 100644 --- a/sys/dev/sound/pci/neomagic-coeff.h +++ b/sys/dev/sound/pci/neomagic-coeff.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/neomagic.c b/sys/dev/sound/pci/neomagic.c index 5c4619b8c862..3ed79e5cfb88 100644 --- a/sys/dev/sound/pci/neomagic.c +++ b/sys/dev/sound/pci/neomagic.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/neomagic.h b/sys/dev/sound/pci/neomagic.h index be5e7e296498..0b87f99cbf97 100644 --- a/sys/dev/sound/pci/neomagic.h +++ b/sys/dev/sound/pci/neomagic.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/solo.c b/sys/dev/sound/pci/solo.c index 5cb0c1395ea8..ed102753c1b8 100644 --- a/sys/dev/sound/pci/solo.c +++ b/sys/dev/sound/pci/solo.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sound/pci/t4dwave.c b/sys/dev/sound/pci/t4dwave.c index 8bcc588f3958..f570f0773472 100644 --- a/sys/dev/sound/pci/t4dwave.c +++ b/sys/dev/sound/pci/t4dwave.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/t4dwave.h b/sys/dev/sound/pci/t4dwave.h index 67e3e4993501..4a2ec626c508 100644 --- a/sys/dev/sound/pci/t4dwave.h +++ b/sys/dev/sound/pci/t4dwave.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pci/via8233.c b/sys/dev/sound/pci/via8233.c index 851d7725b45d..2c338685837f 100644 --- a/sys/dev/sound/pci/via8233.c +++ b/sys/dev/sound/pci/via8233.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Orion Hodson * Portions of this code derived from via82c686.c: * Copyright (c) 2000 David Jones diff --git a/sys/dev/sound/pci/via8233.h b/sys/dev/sound/pci/via8233.h index bc6f57aa6208..a38afc96255c 100644 --- a/sys/dev/sound/pci/via8233.h +++ b/sys/dev/sound/pci/via8233.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/via82c686.c b/sys/dev/sound/pci/via82c686.c index 9ed693b1e9b2..6a94a1992fe7 100644 --- a/sys/dev/sound/pci/via82c686.c +++ b/sys/dev/sound/pci/via82c686.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 David Jones * All rights reserved. * diff --git a/sys/dev/sound/pci/vibes.c b/sys/dev/sound/pci/vibes.c index 6fd1f8fa1462..801a2edaab63 100644 --- a/sys/dev/sound/pci/vibes.c +++ b/sys/dev/sound/pci/vibes.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pci/vibes.h b/sys/dev/sound/pci/vibes.h index 36cbadd66781..d1eac407efbe 100644 --- a/sys/dev/sound/pci/vibes.h +++ b/sys/dev/sound/pci/vibes.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pcm/ac97.c b/sys/dev/sound/pcm/ac97.c index a6303f93c2fd..e2313661aeef 100644 --- a/sys/dev/sound/pcm/ac97.c +++ b/sys/dev/sound/pcm/ac97.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/ac97.h b/sys/dev/sound/pcm/ac97.h index 933281cb8a9e..2d2db4b22f5e 100644 --- a/sys/dev/sound/pcm/ac97.h +++ b/sys/dev/sound/pcm/ac97.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/ac97_if.m b/sys/dev/sound/pcm/ac97_if.m index 36c5c19091a6..19f7378d1c6d 100644 --- a/sys/dev/sound/pcm/ac97_if.m +++ b/sys/dev/sound/pcm/ac97_if.m @@ -1,3 +1,4 @@ +#- # KOBJ # # Copyright (c) 2000 Cameron Grant diff --git a/sys/dev/sound/pcm/ac97_patch.c b/sys/dev/sound/pcm/ac97_patch.c index e5e728f8b314..05c73d7553a7 100644 --- a/sys/dev/sound/pcm/ac97_patch.c +++ b/sys/dev/sound/pcm/ac97_patch.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright 2002 FreeBSD, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sound/pcm/ac97_patch.h b/sys/dev/sound/pcm/ac97_patch.h index 740031d2ed3a..d0184c4c6be2 100644 --- a/sys/dev/sound/pcm/ac97_patch.h +++ b/sys/dev/sound/pcm/ac97_patch.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright 2003 FreeBSD, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sound/pcm/buffer.c b/sys/dev/sound/pcm/buffer.c index 096262c2ccf3..9ca6a3238441 100644 --- a/sys/dev/sound/pcm/buffer.c +++ b/sys/dev/sound/pcm/buffer.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/buffer.h b/sys/dev/sound/pcm/buffer.h index 48981b5c4078..7b2bffbe127b 100644 --- a/sys/dev/sound/pcm/buffer.h +++ b/sys/dev/sound/pcm/buffer.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c index cf970c7132a7..2948e41c9d2d 100644 --- a/sys/dev/sound/pcm/channel.c +++ b/sys/dev/sound/pcm/channel.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Portions Copyright by Luigi Rizzo - 1997-99 * All rights reserved. diff --git a/sys/dev/sound/pcm/channel.h b/sys/dev/sound/pcm/channel.h index f2fb5957ae1d..23cd7199f58b 100644 --- a/sys/dev/sound/pcm/channel.h +++ b/sys/dev/sound/pcm/channel.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/channel_if.m b/sys/dev/sound/pcm/channel_if.m index 9d8e289509c2..cdc6a3b6f2b3 100644 --- a/sys/dev/sound/pcm/channel_if.m +++ b/sys/dev/sound/pcm/channel_if.m @@ -1,3 +1,4 @@ +#- # KOBJ # # Copyright (c) 2000 Cameron Grant diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c index 64088f95117c..1adc6ceed341 100644 --- a/sys/dev/sound/pcm/dsp.c +++ b/sys/dev/sound/pcm/dsp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/dsp.h b/sys/dev/sound/pcm/dsp.h index 0a42e74ef1c1..0d067ededb1a 100644 --- a/sys/dev/sound/pcm/dsp.h +++ b/sys/dev/sound/pcm/dsp.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/fake.c b/sys/dev/sound/pcm/fake.c index 1fd0900bff9f..ba9c4b641303 100644 --- a/sys/dev/sound/pcm/fake.c +++ b/sys/dev/sound/pcm/fake.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/feeder.c b/sys/dev/sound/pcm/feeder.c index 0ec36df6f80a..5bc7b81ae2b9 100644 --- a/sys/dev/sound/pcm/feeder.c +++ b/sys/dev/sound/pcm/feeder.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/feeder.h b/sys/dev/sound/pcm/feeder.h index 61d42255d966..1a9c37b751aa 100644 --- a/sys/dev/sound/pcm/feeder.h +++ b/sys/dev/sound/pcm/feeder.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/feeder_fmt.c b/sys/dev/sound/pcm/feeder_fmt.c index 59d7edc485f5..7eb66f515fd1 100644 --- a/sys/dev/sound/pcm/feeder_fmt.c +++ b/sys/dev/sound/pcm/feeder_fmt.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/feeder_if.m b/sys/dev/sound/pcm/feeder_if.m index a100a6dbf0ea..83c0fb073b53 100644 --- a/sys/dev/sound/pcm/feeder_if.m +++ b/sys/dev/sound/pcm/feeder_if.m @@ -1,3 +1,4 @@ +#- # KOBJ # # Copyright (c) 2000 Cameron Grant diff --git a/sys/dev/sound/pcm/feeder_rate.c b/sys/dev/sound/pcm/feeder_rate.c index c3752a0ad7b1..55d51fc1e2dc 100644 --- a/sys/dev/sound/pcm/feeder_rate.c +++ b/sys/dev/sound/pcm/feeder_rate.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Orion Hodson * All rights reserved. * diff --git a/sys/dev/sound/pcm/mixer.c b/sys/dev/sound/pcm/mixer.c index f40b4301abd5..fed0fc5a3be5 100644 --- a/sys/dev/sound/pcm/mixer.c +++ b/sys/dev/sound/pcm/mixer.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/mixer.h b/sys/dev/sound/pcm/mixer.h index 22bd22aa6c3f..2c8dff753e36 100644 --- a/sys/dev/sound/pcm/mixer.h +++ b/sys/dev/sound/pcm/mixer.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/mixer_if.m b/sys/dev/sound/pcm/mixer_if.m index 38d99fbd05df..9bd974ce7d9e 100644 --- a/sys/dev/sound/pcm/mixer_if.m +++ b/sys/dev/sound/pcm/mixer_if.m @@ -1,3 +1,4 @@ +#- # KOBJ # # Copyright (c) 2000 Cameron Grant diff --git a/sys/dev/sound/pcm/sndstat.c b/sys/dev/sound/pcm/sndstat.c index c8e63877394c..7113bf1e6d24 100644 --- a/sys/dev/sound/pcm/sndstat.c +++ b/sys/dev/sound/pcm/sndstat.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c index 4446b3241e9e..fd4ce76bf80f 100644 --- a/sys/dev/sound/pcm/sound.c +++ b/sys/dev/sound/pcm/sound.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * (C) 1997 Luigi Rizzo (luigi@iet.unipi.it) * All rights reserved. diff --git a/sys/dev/sound/pcm/sound.h b/sys/dev/sound/pcm/sound.h index f1fd6df23d3e..e4cac240247d 100644 --- a/sys/dev/sound/pcm/sound.h +++ b/sys/dev/sound/pcm/sound.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Cameron Grant * Copyright by Hannu Savolainen 1995 * All rights reserved. diff --git a/sys/dev/sound/pcm/vchan.c b/sys/dev/sound/pcm/vchan.c index ce67fb1559c4..91a114e65706 100644 --- a/sys/dev/sound/pcm/vchan.c +++ b/sys/dev/sound/pcm/vchan.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/pcm/vchan.h b/sys/dev/sound/pcm/vchan.h index 99b0d41399a5..cb9e1c8ea17c 100644 --- a/sys/dev/sound/pcm/vchan.h +++ b/sys/dev/sound/pcm/vchan.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 Cameron Grant * All rights reserved. * diff --git a/sys/dev/sound/sbus/apcdmareg.h b/sys/dev/sound/sbus/apcdmareg.h index 28abd8b16dc6..d4296adbe9fe 100644 --- a/sys/dev/sound/sbus/apcdmareg.h +++ b/sys/dev/sound/sbus/apcdmareg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD: apcdmareg.h,v 1.2 2003/06/02 18:53:18 jason Exp $ */ -/* +/*- * Copyright (c) 2001 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/sound/sbus/cs4231.c b/sys/dev/sound/sbus/cs4231.c index 5a236a6b5f0a..11f6b0806bb2 100644 --- a/sys/dev/sound/sbus/cs4231.c +++ b/sys/dev/sound/sbus/cs4231.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1999 Jason L. Wright (jason@thought.net) * Copyright (c) 2004 Pyun YongHyeon * All rights reserved. diff --git a/sys/dev/sound/sbus/cs4231.h b/sys/dev/sound/sbus/cs4231.h index 2b160c178da6..26ca399a0fe0 100644 --- a/sys/dev/sound/sbus/cs4231.h +++ b/sys/dev/sound/sbus/cs4231.h @@ -35,7 +35,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* +/** * Register defs for Crystal Semiconductor CS4231 Audio Codec/mixer * chip, used on Gravis UltraSound MAX cards. * diff --git a/sys/dev/sound/usb/uaudio.c b/sys/dev/sound/usb/uaudio.c index 18b5bfb4072f..a9c38e404b8f 100644 --- a/sys/dev/sound/usb/uaudio.c +++ b/sys/dev/sound/usb/uaudio.c @@ -1,7 +1,7 @@ /* $NetBSD: uaudio.c,v 1.91 2004/11/05 17:46:14 kent Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/sound/usb/uaudio.h b/sys/dev/sound/usb/uaudio.h index 9ba8d97d10c8..ff748368d294 100644 --- a/sys/dev/sound/usb/uaudio.h +++ b/sys/dev/sound/usb/uaudio.h @@ -1,6 +1,6 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000-2002 Hiroyuki Aizu * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sound/usb/uaudio_pcm.c b/sys/dev/sound/usb/uaudio_pcm.c index 34412759eeb0..c71e58095d0e 100644 --- a/sys/dev/sound/usb/uaudio_pcm.c +++ b/sys/dev/sound/usb/uaudio_pcm.c @@ -1,6 +1,6 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000-2002 Hiroyuki Aizu * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/sound/usb/uaudioreg.h b/sys/dev/sound/usb/uaudioreg.h index dd402e297041..3cc09ba5ae45 100644 --- a/sys/dev/sound/usb/uaudioreg.h +++ b/sys/dev/sound/usb/uaudioreg.h @@ -1,7 +1,7 @@ /* $NetBSD: uaudioreg.h,v 1.12 2004/11/05 19:08:29 kent Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/sr/if_sr.c b/sys/dev/sr/if_sr.c index 88668a7cb370..033b3393145f 100644 --- a/sys/dev/sr/if_sr.c +++ b/sys/dev/sr/if_sr.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996 - 2001 John Hay. * Copyright (c) 1996 SDL Communications, Inc. * All rights reserved. diff --git a/sys/dev/sr/if_sr.h b/sys/dev/sr/if_sr.h index a55a6d3f6b56..c66f667f0023 100644 --- a/sys/dev/sr/if_sr.h +++ b/sys/dev/sr/if_sr.h @@ -1,4 +1,4 @@ -/* +/*- * if_sr.h * * Copyright (C) 1997-1999 Whistle Communications Inc. diff --git a/sys/dev/sr/if_sr_isa.c b/sys/dev/sr/if_sr_isa.c index e9a00764f5ee..510a32b74196 100644 --- a/sys/dev/sr/if_sr_isa.c +++ b/sys/dev/sr/if_sr_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996 - 2001 John Hay. * Copyright (c) 1996 SDL Communications, Inc. * All rights reserved. diff --git a/sys/dev/sr/if_sr_pci.c b/sys/dev/sr/if_sr_pci.c index dd41d74bcf58..389476126660 100644 --- a/sys/dev/sr/if_sr_pci.c +++ b/sys/dev/sr/if_sr_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996 - 2001 John Hay. * Copyright (c) 1996 SDL Communications, Inc. * All rights reserved. diff --git a/sys/dev/sr/if_srregs.h b/sys/dev/sr/if_srregs.h index 3d80b22ea184..16925e6e581e 100644 --- a/sys/dev/sr/if_srregs.h +++ b/sys/dev/sr/if_srregs.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995 - 2001 John Hay. * Copyright (c) 1996 SDL Communications, Inc. * All rights reserved. diff --git a/sys/dev/stg/tmc18c30.c b/sys/dev/stg/tmc18c30.c index 223ed53d6051..c07c4c8b516d 100644 --- a/sys/dev/stg/tmc18c30.c +++ b/sys/dev/stg/tmc18c30.c @@ -5,7 +5,7 @@ #define STG_STATICS #define STG_IO_CONTROL_FLAGS (STG_FIFO_INTERRUPTS | STG_WAIT_FOR_SELECT) -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/stg/tmc18c30_isa.c b/sys/dev/stg/tmc18c30_isa.c index b674c2eefc07..40966697dc43 100644 --- a/sys/dev/stg/tmc18c30_isa.c +++ b/sys/dev/stg/tmc18c30_isa.c @@ -1,7 +1,7 @@ /* $NecBSD: tmc18c30_pisa.c,v 1.22 1998/11/26 01:59:21 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [Ported for FreeBSD] * Copyright (c) 2000 * Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe. diff --git a/sys/dev/stg/tmc18c30_pccard.c b/sys/dev/stg/tmc18c30_pccard.c index 0ea2df0f91b1..67bffd3f40c2 100644 --- a/sys/dev/stg/tmc18c30_pccard.c +++ b/sys/dev/stg/tmc18c30_pccard.c @@ -1,7 +1,7 @@ /* $NecBSD: tmc18c30_pisa.c,v 1.22 1998/11/26 01:59:21 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [Ported for FreeBSD] * Copyright (c) 2000 * Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe. diff --git a/sys/dev/stg/tmc18c30_subr.c b/sys/dev/stg/tmc18c30_subr.c index 7ffd4d39d349..c2cfd44b42ac 100644 --- a/sys/dev/stg/tmc18c30_subr.c +++ b/sys/dev/stg/tmc18c30_subr.c @@ -1,4 +1,4 @@ -/* +/*- * [Ported for FreeBSD] * Copyright (c) 2000 * Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe. diff --git a/sys/dev/stg/tmc18c30reg.h b/sys/dev/stg/tmc18c30reg.h index 9c84d89bc3a3..93c9940ba649 100644 --- a/sys/dev/stg/tmc18c30reg.h +++ b/sys/dev/stg/tmc18c30reg.h @@ -2,7 +2,7 @@ /* $NecBSD: tmc18c30reg.h,v 1.4.24.1 2001/06/08 06:27:50 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/stg/tmc18c30var.h b/sys/dev/stg/tmc18c30var.h index d6bc4ac4cc49..69e837fc6786 100644 --- a/sys/dev/stg/tmc18c30var.h +++ b/sys/dev/stg/tmc18c30var.h @@ -2,7 +2,7 @@ /* $NecBSD: tmc18c30var.h,v 1.12.18.2 2001/06/13 05:51:23 honda Exp $ */ /* $NetBSD$ */ -/* +/*- * [NetBSD for NEC PC-98 series] * Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 * NetBSD/pc98 porting staff. All rights reserved. diff --git a/sys/dev/streams/streams.c b/sys/dev/streams/streams.c index 28a77c8906a8..0a15c86dad3d 100644 --- a/sys/dev/streams/streams.c +++ b/sys/dev/streams/streams.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1998 Mark Newton * Copyright (c) 1994 Christos Zoulas * Copyright (c) 1997 Todd Vierling diff --git a/sys/dev/sx/cd1865.h b/sys/dev/sx/cd1865.h index 5056deaeecab..297a415ff698 100644 --- a/sys/dev/sx/cd1865.h +++ b/sys/dev/sx/cd1865.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sx.c b/sys/dev/sx/sx.c index 25a967b84def..8821c374af87 100644 --- a/sys/dev/sx/sx.c +++ b/sys/dev/sx/sx.c @@ -1,4 +1,4 @@ -/* +/*- * Device tsfsdriver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sx.h b/sys/dev/sx/sx.h index 2c06028dd3c7..0e035ddbfb16 100644 --- a/sys/dev/sx/sx.h +++ b/sys/dev/sx/sx.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sx_pci.c b/sys/dev/sx/sx_pci.c index 3187caf682ca..49052947791f 100644 --- a/sys/dev/sx/sx_pci.c +++ b/sys/dev/sx/sx_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sx_util.c b/sys/dev/sx/sx_util.c index d9409254d322..0eeb8aeb7549 100644 --- a/sys/dev/sx/sx_util.c +++ b/sys/dev/sx/sx_util.c @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sx_util.h b/sys/dev/sx/sx_util.h index 582e73be1bb1..57f42c9f7517 100644 --- a/sys/dev/sx/sx_util.h +++ b/sys/dev/sx/sx_util.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sx/sxvar.h b/sys/dev/sx/sxvar.h index 7eea73337abe..fa33e371ec90 100644 --- a/sys/dev/sx/sxvar.h +++ b/sys/dev/sx/sxvar.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver for Specialix I/O8+ multiport serial card. * * Copyright 2003 Frank Mayhar diff --git a/sys/dev/sym/README.sym b/sys/dev/sym/README.sym index b4612237e7bf..d310cd4d150f 100644 --- a/sys/dev/sym/README.sym +++ b/sys/dev/sym/README.sym @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/sym/sym_conf.h b/sys/dev/sym/sym_conf.h index 4154b6c33bf7..768baa7b10a5 100644 --- a/sys/dev/sym/sym_conf.h +++ b/sys/dev/sym/sym_conf.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/sym/sym_defs.h b/sys/dev/sym/sym_defs.h index 61caabddc0ae..ad1481f71af3 100644 --- a/sys/dev/sym/sym_defs.h +++ b/sys/dev/sym/sym_defs.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/sym/sym_fw.h b/sys/dev/sym/sym_fw.h index 65b2838bb3d6..a274bbcee430 100644 --- a/sys/dev/sym/sym_fw.h +++ b/sys/dev/sym/sym_fw.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/sym/sym_fw1.h b/sys/dev/sym/sym_fw1.h index 96ae523ddc1d..9a43dc431f0d 100644 --- a/sys/dev/sym/sym_fw1.h +++ b/sys/dev/sym/sym_fw1.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/sym/sym_fw2.h b/sys/dev/sym/sym_fw2.h index 77f8df32d7ec..5ff740aa3cd9 100644 --- a/sys/dev/sym/sym_fw2.h +++ b/sys/dev/sym/sym_fw2.h @@ -1,4 +1,4 @@ -/* +/*- * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 * PCI-SCSI controllers. * diff --git a/sys/dev/tdfx/tdfx_io.h b/sys/dev/tdfx/tdfx_io.h index 8742fd7341cd..faec61e11771 100644 --- a/sys/dev/tdfx/tdfx_io.h +++ b/sys/dev/tdfx/tdfx_io.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2001 by Coleman Kane * All rights reserved. * diff --git a/sys/dev/tdfx/tdfx_linux.h b/sys/dev/tdfx/tdfx_linux.h index fa4351de226f..a3235cc8ba02 100644 --- a/sys/dev/tdfx/tdfx_linux.h +++ b/sys/dev/tdfx/tdfx_linux.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2001 by Coleman Kane * All rights reserved. * diff --git a/sys/dev/tdfx/tdfx_pci.h b/sys/dev/tdfx/tdfx_pci.h index 1ecc554e8edc..0c60e5a2b6c1 100644 --- a/sys/dev/tdfx/tdfx_pci.h +++ b/sys/dev/tdfx/tdfx_pci.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2001 by Coleman Kane * All rights reserved. * diff --git a/sys/dev/tdfx/tdfx_vars.h b/sys/dev/tdfx/tdfx_vars.h index 95a9bbf9c165..1e10e3c3a669 100644 --- a/sys/dev/tdfx/tdfx_vars.h +++ b/sys/dev/tdfx/tdfx_vars.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000-2001 by Coleman Kane * All rights reserved. * diff --git a/sys/dev/tga/tga_pci.c b/sys/dev/tga/tga_pci.c index 1477a7c4210a..63f9c5a32b92 100644 --- a/sys/dev/tga/tga_pci.c +++ b/sys/dev/tga/tga_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/tga/tga_pci.h b/sys/dev/tga/tga_pci.h index 269913104493..21dc74e37417 100644 --- a/sys/dev/tga/tga_pci.h +++ b/sys/dev/tga/tga_pci.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. * diff --git a/sys/dev/trm/trm.c b/sys/dev/trm/trm.c index 2319828b8d0c..fac2c90dec9b 100644 --- a/sys/dev/trm/trm.c +++ b/sys/dev/trm/trm.c @@ -8,7 +8,6 @@ * DC395U2D/U2W(TRM-S2080) * PCI SCSI Bus Master Host Adapter * (SCSI chip set used Tekram ASIC TRM-S1040,TRM-S2080) - *(C)Copyright 1995-2001 Tekram Technology Co.,Ltd. */ #include @@ -27,8 +26,8 @@ __FBSDID("$FreeBSD$"); * 1.11 10/13/2001 Oscar Feng Fixed wrong Async speed display bug. */ -/* - * +/*- + * (C)Copyright 1995-2001 Tekram Technology Co.,Ltd. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/trm/trm.h b/sys/dev/trm/trm.h index e9eadbea8181..21248835a510 100644 --- a/sys/dev/trm/trm.h +++ b/sys/dev/trm/trm.h @@ -1,10 +1,12 @@ -/* +/*- * File Name : trm.h * * Tekram DC395U/UW/F ,DC315/U * PCI SCSI Bus Master Host Adapter Device Driver * (SCSI chip set used Tekram ASIC TRM-S1040) * + * (C)Copyright 1995-2001 Tekram Technology Co.,Ltd. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/txp/3c990img.h b/sys/dev/txp/3c990img.h index a14441d3ed3c..6e75f5d83cf0 100644 --- a/sys/dev/txp/3c990img.h +++ b/sys/dev/txp/3c990img.h @@ -1,7 +1,7 @@ /* $OpenBSD: 3c990img.h,v 1.2 2001/06/05 02:15:17 jason Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (C) 1999-2001 3Com, Inc. * All rights reserved. * diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c index 2a7221de4f9f..a2805324ea76 100644 --- a/sys/dev/txp/if_txp.c +++ b/sys/dev/txp/if_txp.c @@ -1,6 +1,6 @@ /* $OpenBSD: if_txp.c,v 1.48 2001/06/27 06:34:50 kjc Exp $ */ -/* +/*- * Copyright (c) 2001 * Jason L. Wright , Theo de Raadt, and * Aaron Campbell . All rights reserved. diff --git a/sys/dev/txp/if_txpreg.h b/sys/dev/txp/if_txpreg.h index 634c29f07f7e..2d88fc9fd053 100644 --- a/sys/dev/txp/if_txpreg.h +++ b/sys/dev/txp/if_txpreg.h @@ -1,7 +1,7 @@ /* $OpenBSD: if_txpreg.h,v 1.30 2001/06/23 04:18:02 jason Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2001 Aaron Campbell . * All rights reserved. * diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h index 5de4d420ac5c..101304ed6871 100644 --- a/sys/dev/uart/uart.h +++ b/sys/dev/uart/uart.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_bus.h b/sys/dev/uart/uart_bus.h index cc9ce4df5a75..9fd84e9eca6c 100644 --- a/sys/dev/uart/uart_bus.h +++ b/sys/dev/uart/uart_bus.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_bus_acpi.c b/sys/dev/uart/uart_bus_acpi.c index a26357132d04..042dfef5d219 100644 --- a/sys/dev/uart/uart_bus_acpi.c +++ b/sys/dev/uart/uart_bus_acpi.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/uart/uart_bus_isa.c b/sys/dev/uart/uart_bus_isa.c index e70c3e029ce2..51713ad25a62 100644 --- a/sys/dev/uart/uart_bus_isa.c +++ b/sys/dev/uart/uart_bus_isa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/uart/uart_bus_pccard.c b/sys/dev/uart/uart_bus_pccard.c index 5f0e02b26bab..a1ca4c2e292c 100644 --- a/sys/dev/uart/uart_bus_pccard.c +++ b/sys/dev/uart/uart_bus_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * Copyright (c) 2003 Norikatsu Shigemura, Takenori Watanabe All rights reserved. * diff --git a/sys/dev/uart/uart_bus_pci.c b/sys/dev/uart/uart_bus_pci.c index 2e4573d4e26b..fb2fc6d1bfe1 100644 --- a/sys/dev/uart/uart_bus_pci.c +++ b/sys/dev/uart/uart_bus_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/uart/uart_core.c b/sys/dev/uart/uart_core.c index ca89c5cfd0e3..00fdf1610a39 100644 --- a/sys/dev/uart/uart_core.c +++ b/sys/dev/uart/uart_core.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu.h b/sys/dev/uart/uart_cpu.h index 462eb59b1e83..702ee5ec5d93 100644 --- a/sys/dev/uart/uart_cpu.h +++ b/sys/dev/uart/uart_cpu.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_alpha.c b/sys/dev/uart/uart_cpu_alpha.c index a3a132f6aa2b..438bc3c691c9 100644 --- a/sys/dev/uart/uart_cpu_alpha.c +++ b/sys/dev/uart/uart_cpu_alpha.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_amd64.c b/sys/dev/uart/uart_cpu_amd64.c index c0270ae6a2cb..498496b86b90 100644 --- a/sys/dev/uart/uart_cpu_amd64.c +++ b/sys/dev/uart/uart_cpu_amd64.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_i386.c b/sys/dev/uart/uart_cpu_i386.c index 93ca77079459..673dde54b25a 100644 --- a/sys/dev/uart/uart_cpu_i386.c +++ b/sys/dev/uart/uart_cpu_i386.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_ia64.c b/sys/dev/uart/uart_cpu_ia64.c index 74a9300663ea..cf1e7e178e98 100644 --- a/sys/dev/uart/uart_cpu_ia64.c +++ b/sys/dev/uart/uart_cpu_ia64.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_pc98.c b/sys/dev/uart/uart_cpu_pc98.c index 3664096b6c93..0ae255967727 100644 --- a/sys/dev/uart/uart_cpu_pc98.c +++ b/sys/dev/uart/uart_cpu_pc98.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 M. Warner Losh, Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_cpu_sparc64.c b/sys/dev/uart/uart_cpu_sparc64.c index fcc2f1d24fcc..efb8ba7dea2b 100644 --- a/sys/dev/uart/uart_cpu_sparc64.c +++ b/sys/dev/uart/uart_cpu_sparc64.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003, 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_dbg.c b/sys/dev/uart/uart_dbg.c index 71938b961827..51d9ec59bdde 100644 --- a/sys/dev/uart/uart_dbg.c +++ b/sys/dev/uart/uart_dbg.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_dev_ns8250.c b/sys/dev/uart/uart_dev_ns8250.c index f39d29cce482..5b53a8999fd1 100644 --- a/sys/dev/uart/uart_dev_ns8250.c +++ b/sys/dev/uart/uart_dev_ns8250.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_dev_sab82532.c b/sys/dev/uart/uart_dev_sab82532.c index 04dbe8c10afa..0da08911f1d7 100644 --- a/sys/dev/uart/uart_dev_sab82532.c +++ b/sys/dev/uart/uart_dev_sab82532.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_dev_z8530.c b/sys/dev/uart/uart_dev_z8530.c index 8da64d7caa63..4454bf5c9064 100644 --- a/sys/dev/uart/uart_dev_z8530.c +++ b/sys/dev/uart/uart_dev_z8530.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_if.m b/sys/dev/uart/uart_if.m index 762c16eaa143..0bb145490ed4 100644 --- a/sys/dev/uart/uart_if.m +++ b/sys/dev/uart/uart_if.m @@ -1,3 +1,4 @@ +#- # Copyright (c) 2003 Marcel Moolenaar # All rights reserved. # diff --git a/sys/dev/uart/uart_kbd_sun.h b/sys/dev/uart/uart_kbd_sun.h index 574e966b7040..603d257432df 100644 --- a/sys/dev/uart/uart_kbd_sun.h +++ b/sys/dev/uart/uart_kbd_sun.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Jason L. Wright (jason@thought.net) * All rights reserved. * diff --git a/sys/dev/uart/uart_subr.c b/sys/dev/uart/uart_subr.c index 27dfd41b0735..14ce64b1b84f 100644 --- a/sys/dev/uart/uart_subr.c +++ b/sys/dev/uart/uart_subr.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/uart/uart_tty.c b/sys/dev/uart/uart_tty.c index 73ff7f292289..8f3c3c5d64fe 100644 --- a/sys/dev/uart/uart_tty.c +++ b/sys/dev/uart/uart_tty.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Marcel Moolenaar * All rights reserved. * diff --git a/sys/dev/ubsec/ubsec.c b/sys/dev/ubsec/ubsec.c index db3e96c0b2c2..39da78c9f3c8 100644 --- a/sys/dev/ubsec/ubsec.c +++ b/sys/dev/ubsec/ubsec.c @@ -1,6 +1,6 @@ /* $OpenBSD: ubsec.c,v 1.115 2002/09/24 18:33:26 jason Exp $ */ -/* +/*- * Copyright (c) 2000 Jason L. Wright (jason@thought.net) * Copyright (c) 2000 Theo de Raadt (deraadt@openbsd.org) * Copyright (c) 2001 Patrik Lindergren (patrik@ipunplugged.com) diff --git a/sys/dev/ubsec/ubsecreg.h b/sys/dev/ubsec/ubsecreg.h index 4be530a02296..2ba1f937d06e 100644 --- a/sys/dev/ubsec/ubsecreg.h +++ b/sys/dev/ubsec/ubsecreg.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD: ubsecreg.h,v 1.27 2002/09/11 22:40:31 jason Exp $ */ -/* +/*- * Copyright (c) 2000 Theo de Raadt * Copyright (c) 2001 Patrik Lindergren (patrik@ipunplugged.com) * diff --git a/sys/dev/ubsec/ubsecvar.h b/sys/dev/ubsec/ubsecvar.h index 965a0d90181d..448403b14c01 100644 --- a/sys/dev/ubsec/ubsecvar.h +++ b/sys/dev/ubsec/ubsecvar.h @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /* $OpenBSD: ubsecvar.h,v 1.35 2002/09/24 18:33:26 jason Exp $ */ -/* +/*- * Copyright (c) 2000 Theo de Raadt * Copyright (c) 2001 Patrik Lindergren (patrik@ipunplugged.com) * diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index b8d26a450fcd..31d60dc77fb4 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,6 +1,6 @@ /* $NetBSD: ehci.c,v 1.89 2004/12/03 08:51:31 augustss Exp $ */ -/* +/*- * Copyright (c) 2004 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ehcireg.h b/sys/dev/usb/ehcireg.h index 2aaa4c8107ad..304b4ae2d92a 100644 --- a/sys/dev/usb/ehcireg.h +++ b/sys/dev/usb/ehcireg.h @@ -1,7 +1,7 @@ /* $NetBSD: ehcireg.h,v 1.17 2004/06/23 06:45:56 mycroft Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ehcivar.h b/sys/dev/usb/ehcivar.h index 0fec5a761cd7..7859646080c8 100644 --- a/sys/dev/usb/ehcivar.h +++ b/sys/dev/usb/ehcivar.h @@ -1,7 +1,7 @@ /* $NetBSD: ehcivar.h,v 1.12 2001/12/31 12:16:57 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/hid.c b/sys/dev/usb/hid.c index f083a17cf681..1c1fcbdbbc9d 100644 --- a/sys/dev/usb/hid.c +++ b/sys/dev/usb/hid.c @@ -3,7 +3,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/hid.h b/sys/dev/usb/hid.h index 590e7cb585c6..a4ab7d2b2969 100644 --- a/sys/dev/usb/hid.h +++ b/sys/dev/usb/hid.h @@ -1,7 +1,7 @@ /* $NetBSD: hid.h,v 1.6 2000/06/01 14:28:57 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/if_auereg.h b/sys/dev/usb/if_auereg.h index 478ceced0c22..eaa587a6fefc 100644 --- a/sys/dev/usb/if_auereg.h +++ b/sys/dev/usb/if_auereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index ef477d8cc7c4..ad9fdea16e60 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000-2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_axereg.h b/sys/dev/usb/if_axereg.h index 04fa92df8e51..cea2f46f5b44 100644 --- a/sys/dev/usb/if_axereg.h +++ b/sys/dev/usb/if_axereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000-2003 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c index b7e715a25539..e379428519a0 100644 --- a/sys/dev/usb/if_cue.c +++ b/sys/dev/usb/if_cue.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_cuereg.h b/sys/dev/usb/if_cuereg.h index beaf1d5a39d1..85fc71e8b45c 100644 --- a/sys/dev/usb/if_cuereg.h +++ b/sys/dev/usb/if_cuereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_kue.c b/sys/dev/usb/if_kue.c index 1e21d9cc66bf..9a4258bd72c1 100644 --- a/sys/dev/usb/if_kue.c +++ b/sys/dev/usb/if_kue.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_kuereg.h b/sys/dev/usb/if_kuereg.h index 4fa829516fb9..5ea0226518cd 100644 --- a/sys/dev/usb/if_kuereg.h +++ b/sys/dev/usb/if_kuereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/if_udav.c b/sys/dev/usb/if_udav.c index c7d3c45c784d..96ef08ffa762 100644 --- a/sys/dev/usb/if_udav.c +++ b/sys/dev/usb/if_udav.c @@ -1,7 +1,7 @@ /* $NetBSD: if_udav.c,v 1.2 2003/09/04 15:17:38 tsutsui Exp $ */ /* $nabe: if_udav.c,v 1.3 2003/08/21 16:57:19 nabe Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2003 * Shingo WATANABE . All rights reserved. * diff --git a/sys/dev/usb/if_udavreg.h b/sys/dev/usb/if_udavreg.h index 7680422a65e3..965cbdc7cb57 100644 --- a/sys/dev/usb/if_udavreg.h +++ b/sys/dev/usb/if_udavreg.h @@ -1,7 +1,7 @@ /* $NetBSD: if_udavreg.h,v 1.2 2003/09/04 15:17:39 tsutsui Exp $ */ /* $nabe: if_udavreg.h,v 1.2 2003/08/21 16:26:40 nabe Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2003 * Shingo WATANABE . All rights reserved. * diff --git a/sys/dev/usb/kue_fw.h b/sys/dev/usb/kue_fw.h index 8d8c1e1f2f0c..659dc6bb78f3 100644 --- a/sys/dev/usb/kue_fw.h +++ b/sys/dev/usb/kue_fw.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 3cafad713ef1..47e8b3fa01dd 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -15,7 +15,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ohcireg.h b/sys/dev/usb/ohcireg.h index 4c0a6c260703..c255a4b28f34 100644 --- a/sys/dev/usb/ohcireg.h +++ b/sys/dev/usb/ohcireg.h @@ -2,7 +2,7 @@ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ohcivar.h b/sys/dev/usb/ohcivar.h index 19ec182009c2..f9b05176e0f0 100644 --- a/sys/dev/usb/ohcivar.h +++ b/sys/dev/usb/ohcivar.h @@ -1,7 +1,7 @@ /* $NetBSD: ohcivar.h,v 1.30 2001/12/31 12:20:35 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/rio500_usb.h b/sys/dev/usb/rio500_usb.h index c2da72e91b11..f2c2081ccc9d 100644 --- a/sys/dev/usb/rio500_usb.h +++ b/sys/dev/usb/rio500_usb.h @@ -1,4 +1,5 @@ -/* ---------------------------------------------------------------------- +/*- + ---------------------------------------------------------------------- Copyright (C) 2000 Cesar Miquel (miquel@df.uba.ar) diff --git a/sys/dev/usb/ubsa.c b/sys/dev/usb/ubsa.c index 0efc57773712..271c1729b511 100644 --- a/sys/dev/usb/ubsa.c +++ b/sys/dev/usb/ubsa.c @@ -26,7 +26,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ubser.c b/sys/dev/usb/ubser.c index 601af2a0e125..ab2017be1b10 100644 --- a/sys/dev/usb/ubser.c +++ b/sys/dev/usb/ubser.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 Bernd Walter * * $URL: https://devel.bwct.de/svn/projects/ubser/ubser.c $ @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ubser.h b/sys/dev/usb/ubser.h index d1cc2c6b5969..45c7ec558eaa 100644 --- a/sys/dev/usb/ubser.h +++ b/sys/dev/usb/ubser.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 Bernd Walter * * $URL: https://devel.bwct.de/svn/projects/ubser/ubser.h $ diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 98856b5add29..30cf93059eb3 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -29,7 +29,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ucomvar.h b/sys/dev/usb/ucomvar.h index 3c6a487f18fc..e8a51fe3fd21 100644 --- a/sys/dev/usb/ucomvar.h +++ b/sys/dev/usb/ucomvar.h @@ -27,7 +27,7 @@ * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/udbp.c b/sys/dev/usb/udbp.c index 2bedbbe092d8..1ad11bccfb56 100644 --- a/sys/dev/usb/udbp.c +++ b/sys/dev/usb/udbp.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-2000 Whistle Communications, Inc. * All rights reserved. * diff --git a/sys/dev/usb/udbp.h b/sys/dev/usb/udbp.h index 0b7b4eeae7e0..97ef9455b664 100644 --- a/sys/dev/usb/udbp.h +++ b/sys/dev/usb/udbp.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1996-2000 Whistle Communications, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ufm.c b/sys/dev/usb/ufm.c index 66b7376c43f3..8439abb2cad2 100644 --- a/sys/dev/usb/ufm.c +++ b/sys/dev/usb/ufm.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2001 M. Warner Losh * All rights reserved. * diff --git a/sys/dev/usb/uftdi.c b/sys/dev/usb/uftdi.c index a053a4d2c05d..5532e72b5a11 100644 --- a/sys/dev/usb/uftdi.c +++ b/sys/dev/usb/uftdi.c @@ -1,6 +1,6 @@ /* $NetBSD: uftdi.c,v 1.13 2002/09/23 05:51:23 simonb Exp $ */ -/* +/*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ugen.c b/sys/dev/usb/ugen.c index 2606d8e1bbcd..7d0131b8c410 100644 --- a/sys/dev/usb/ugen.c +++ b/sys/dev/usb/ugen.c @@ -10,7 +10,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ugraphire_rdesc.h b/sys/dev/usb/ugraphire_rdesc.h index 9dd6988ab907..295f2a0db785 100644 --- a/sys/dev/usb/ugraphire_rdesc.h +++ b/sys/dev/usb/ugraphire_rdesc.h @@ -1,6 +1,6 @@ /* $NetBSD: usb/ugraphire_rdesc.h,v 1.1 2000/12/29 01:47:49 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2000 Nick Hibma * All rights reserved. * diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index bc424d7fcf28..213c6b3d2a67 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -14,7 +14,7 @@ __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uhcireg.h b/sys/dev/usb/uhcireg.h index b640e9f9e8aa..512dd2d7d3c0 100644 --- a/sys/dev/usb/uhcireg.h +++ b/sys/dev/usb/uhcireg.h @@ -1,7 +1,7 @@ /* $NetBSD: uhcireg.h,v 1.15 2002/02/11 11:41:30 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index 56709803c788..2ba9d6f06464 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -1,7 +1,7 @@ /* $NetBSD: uhcivar.h,v 1.33 2002/02/11 11:41:30 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c index 705fd9b68423..634d0e0f5efe 100644 --- a/sys/dev/usb/uhid.c +++ b/sys/dev/usb/uhid.c @@ -7,7 +7,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 0c07211a659b..88927568362a 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,6 +1,6 @@ /* $NetBSD: uhub.c,v 1.68 2004/06/29 06:30:05 mycroft Exp $ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ukbd.c b/sys/dev/usb/ukbd.c index be072f8123ac..599370ca02ea 100644 --- a/sys/dev/usb/ukbd.c +++ b/sys/dev/usb/ukbd.c @@ -1,5 +1,4 @@ - -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ulpt.c b/sys/dev/usb/ulpt.c index 4be53b3dae8d..9716b65ea9ff 100644 --- a/sys/dev/usb/ulpt.c +++ b/sys/dev/usb/ulpt.c @@ -1,6 +1,6 @@ /* $NetBSD: ulpt.c,v 1.60 2003/10/04 21:19:50 augustss Exp $ */ -/* +/*- * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index 4aa7d915ff7d..7b8e12f5b857 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); * SUCH DAMAGE. */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/ums.c b/sys/dev/usb/ums.c index 98f7543704e1..3e4c47beb091 100644 --- a/sys/dev/usb/ums.c +++ b/sys/dev/usb/ums.c @@ -1,5 +1,4 @@ - -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uplcom.c b/sys/dev/usb/uplcom.c index 6e978a8a99f6..246c394bba0c 100644 --- a/sys/dev/usb/uplcom.c +++ b/sys/dev/usb/uplcom.c @@ -29,7 +29,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c index 33e04e9194d6..68efc9c19e54 100644 --- a/sys/dev/usb/urio.c +++ b/sys/dev/usb/urio.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000 Iwasa Kazmi * All rights reserved. * diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 640ac7250ad5..d10eb4accc53 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -10,7 +10,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h index e5278596f3ce..f4559c1ea633 100644 --- a/sys/dev/usb/usb.h +++ b/sys/dev/usb/usb.h @@ -1,7 +1,7 @@ /* $NetBSD: usb.h,v 1.69 2002/09/22 23:20:50 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_ethersubr.c b/sys/dev/usb/usb_ethersubr.c index 325f3db48eea..642f94a24119 100644 --- a/sys/dev/usb/usb_ethersubr.c +++ b/sys/dev/usb/usb_ethersubr.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/usb_ethersubr.h b/sys/dev/usb/usb_ethersubr.h index c8a40108ef5c..9cd6c7915e7b 100644 --- a/sys/dev/usb/usb_ethersubr.h +++ b/sys/dev/usb/usb_ethersubr.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. * diff --git a/sys/dev/usb/usb_if.m b/sys/dev/usb/usb_if.m index c1b27c8a4bec..b04c8a45a4c4 100644 --- a/sys/dev/usb/usb_if.m +++ b/sys/dev/usb/usb_if.m @@ -1,4 +1,4 @@ -# +#- # Copyright (c) 1992-1998 Nick Hibma # All rights reserved. # diff --git a/sys/dev/usb/usb_mem.c b/sys/dev/usb/usb_mem.c index 82b678e82b5c..f9a59eb3c6d9 100644 --- a/sys/dev/usb/usb_mem.c +++ b/sys/dev/usb/usb_mem.c @@ -1,7 +1,7 @@ /* $NetBSD: usb_mem.c,v 1.26 2003/02/01 06:23:40 thorpej Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_mem.h b/sys/dev/usb/usb_mem.h index bba88d582082..6fe63f3e3385 100644 --- a/sys/dev/usb/usb_mem.h +++ b/sys/dev/usb/usb_mem.h @@ -1,7 +1,7 @@ /* $NetBSD: usb_mem.h,v 1.18 2002/05/28 17:45:17 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 38dd65e5aa2e..270a2ad1262d 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -7,7 +7,7 @@ * $NetBSD: usb_port.h,v 1.58 2002/10/01 01:25:26 thorpej Exp $ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c index 895d7d6c1be0..01c155f753cb 100644 --- a/sys/dev/usb/usb_quirks.c +++ b/sys/dev/usb/usb_quirks.c @@ -1,6 +1,6 @@ /* $NetBSD: usb_quirks.c,v 1.50 2004/06/23 02:30:52 mycroft Exp $ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_quirks.h b/sys/dev/usb/usb_quirks.h index 2a36a0649bab..4977bf605b40 100644 --- a/sys/dev/usb/usb_quirks.h +++ b/sys/dev/usb/usb_quirks.h @@ -1,7 +1,7 @@ /* $NetBSD: usb_quirks.h,v 1.20 2001/04/15 09:38:01 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index fa21645137a0..e6fa74ac1dd4 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -12,7 +12,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbcdc.h b/sys/dev/usb/usbcdc.h index 45266e44302c..305c53cf634a 100644 --- a/sys/dev/usb/usbcdc.h +++ b/sys/dev/usb/usbcdc.h @@ -1,7 +1,7 @@ /* $NetBSD: usbcdc.h,v 1.6 2000/04/27 15:26:50 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index f55332216bc2..43a73cfa38b3 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1,7 +1,7 @@ $FreeBSD$ /* $NetBSD: usbdevs,v 1.392 2004/12/29 08:38:44 imp Exp $ */ -/* +/*- * Copyright (c) 1998-2004 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index b313d8f7c8f8..e5e4fd05c535 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -3,7 +3,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h index 4bb41829d5ec..d3dac2e987d6 100644 --- a/sys/dev/usb/usbdi.h +++ b/sys/dev/usb/usbdi.h @@ -1,7 +1,7 @@ /* $NetBSD: usbdi.h,v 1.64 2004/10/23 13:26:34 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdi_util.c b/sys/dev/usb/usbdi_util.c index 8fdd1cc8f7a9..e18c6d38e9f9 100644 --- a/sys/dev/usb/usbdi_util.c +++ b/sys/dev/usb/usbdi_util.c @@ -1,6 +1,6 @@ /* $NetBSD: usbdi_util.c,v 1.36 2001/11/13 06:24:57 lukem Exp $ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdi_util.h b/sys/dev/usb/usbdi_util.h index a6a3646b13a4..51e052f712f8 100644 --- a/sys/dev/usb/usbdi_util.h +++ b/sys/dev/usb/usbdi_util.h @@ -1,7 +1,7 @@ /* $NetBSD: usbdi_util.h,v 1.29 2004/06/23 02:30:52 mycroft Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h index 4be8d648561e..69f236638b1a 100644 --- a/sys/dev/usb/usbdivar.h +++ b/sys/dev/usb/usbdivar.h @@ -1,7 +1,7 @@ /* $NetBSD: usbdivar.h,v 1.70 2002/07/11 21:14:36 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/usbhid.h b/sys/dev/usb/usbhid.h index 416aec3f2e56..8e0ecd579907 100644 --- a/sys/dev/usb/usbhid.h +++ b/sys/dev/usb/usbhid.h @@ -1,7 +1,7 @@ /* $NetBSD: usbhid.h,v 1.9 2000/09/03 19:09:14 augustss Exp $ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uscanner.c b/sys/dev/usb/uscanner.c index 0c729262fc3f..aaabaf630a22 100644 --- a/sys/dev/usb/uscanner.c +++ b/sys/dev/usb/uscanner.c @@ -7,7 +7,7 @@ #include __FBSDID("$FreeBSD$"); -/* +/*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index 68214e775d46..fcce25057543 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -14,7 +14,7 @@ */ -/* +/*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * diff --git a/sys/dev/utopia/idtphy.h b/sys/dev/utopia/idtphy.h index dacb2afedef3..1451d0561fa3 100644 --- a/sys/dev/utopia/idtphy.h +++ b/sys/dev/utopia/idtphy.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/utopia/suni.h b/sys/dev/utopia/suni.h index ac8e9978fc9c..fd1be7e13e39 100644 --- a/sys/dev/utopia/suni.h +++ b/sys/dev/utopia/suni.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/utopia/utopia.c b/sys/dev/utopia/utopia.c index 263f4b9f20e4..e4a7c01b358f 100644 --- a/sys/dev/utopia/utopia.c +++ b/sys/dev/utopia/utopia.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/utopia/utopia.h b/sys/dev/utopia/utopia.h index ae044f98f08d..0c95aa344d4f 100644 --- a/sys/dev/utopia/utopia.h +++ b/sys/dev/utopia/utopia.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2003 * Fraunhofer Institute for Open Communication Systems (FhG Fokus). * All rights reserved. diff --git a/sys/dev/vge/if_vge.c b/sys/dev/vge/if_vge.c index 14c5efc620be..0bac802238a0 100644 --- a/sys/dev/vge/if_vge.c +++ b/sys/dev/vge/if_vge.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Bill Paul . All rights reserved. * diff --git a/sys/dev/vge/if_vgereg.h b/sys/dev/vge/if_vgereg.h index 9b7e5869e107..8d11a9c3e1f6 100644 --- a/sys/dev/vge/if_vgereg.h +++ b/sys/dev/vge/if_vgereg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Bill Paul . All rights reserved. * diff --git a/sys/dev/vge/if_vgevar.h b/sys/dev/vge/if_vgevar.h index ad298c49d850..f8003744a7cb 100644 --- a/sys/dev/vge/if_vgevar.h +++ b/sys/dev/vge/if_vgevar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2004 * Bill Paul . All rights reserved. * diff --git a/sys/dev/vkbd/vkbd.c b/sys/dev/vkbd/vkbd.c index b5c0c713f88a..e66aaca4b0c9 100644 --- a/sys/dev/vkbd/vkbd.c +++ b/sys/dev/vkbd/vkbd.c @@ -1,4 +1,4 @@ -/* +/*- * vkbd.c * * Copyright (c) 2004 Maksim Yevmenkin diff --git a/sys/dev/vkbd/vkbd_var.h b/sys/dev/vkbd/vkbd_var.h index 20c5100fcdfa..51e7ff467d17 100644 --- a/sys/dev/vkbd/vkbd_var.h +++ b/sys/dev/vkbd/vkbd_var.h @@ -1,4 +1,4 @@ -/* +/*- * vkbd_var.h * * Copyright (c) 2004 Maksim Yevmenkin diff --git a/sys/dev/vx/if_vx.c b/sys/dev/vx/if_vx.c index e9d8699a4396..5b049bf61c68 100644 --- a/sys/dev/vx/if_vx.c +++ b/sys/dev/vx/if_vx.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Herb Peyerl * All rights reserved. * diff --git a/sys/dev/vx/if_vx_eisa.c b/sys/dev/vx/if_vx_eisa.c index 28c92f095e55..bbccb5ba1077 100644 --- a/sys/dev/vx/if_vx_eisa.c +++ b/sys/dev/vx/if_vx_eisa.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1996 Naoki Hamada * All rights reserved. * diff --git a/sys/dev/vx/if_vx_pci.c b/sys/dev/vx/if_vx_pci.c index f8b716ffba70..220da32e7d51 100644 --- a/sys/dev/vx/if_vx_pci.c +++ b/sys/dev/vx/if_vx_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (C) 1996 Naoki Hamada * All rights reserved. * diff --git a/sys/dev/vx/if_vxreg.h b/sys/dev/vx/if_vxreg.h index 8a8e5ae43dd2..b876782ca8cb 100644 --- a/sys/dev/vx/if_vxreg.h +++ b/sys/dev/vx/if_vxreg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1993 Herb Peyerl (hpeyerl@novatel.ca) All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/vx/if_vxvar.h b/sys/dev/vx/if_vxvar.h index 3607afe50977..8b3a27cdc35a 100644 --- a/sys/dev/vx/if_vxvar.h +++ b/sys/dev/vx/if_vxvar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1993 Herb Peyerl (hpeyerl@novatel.ca) All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/wds/wd7000.c b/sys/dev/wds/wd7000.c index cf0ad21bf3fc..384dd08be1c3 100644 --- a/sys/dev/wds/wd7000.c +++ b/sys/dev/wds/wd7000.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1994 Ludd, University of Lule}, Sweden. * Copyright (c) 2000 Sergey A. Babkin * All rights reserved. diff --git a/sys/dev/wi/if_wavelan_ieee.h b/sys/dev/wi/if_wavelan_ieee.h index d48ba6e6b864..585edaa237fa 100644 --- a/sys/dev/wi/if_wavelan_ieee.h +++ b/sys/dev/wi/if_wavelan_ieee.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index 06973d204be2..4c77f9ef7a13 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -1,6 +1,6 @@ /* $NetBSD: wi.c,v 1.109 2003/01/09 08:52:19 dyoung Exp $ */ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/wi/if_wi_pccard.c b/sys/dev/wi/if_wi_pccard.c index 549825b72be3..75355a233613 100644 --- a/sys/dev/wi/if_wi_pccard.c +++ b/sys/dev/wi/if_wi_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/wi/if_wi_pci.c b/sys/dev/wi/if_wi_pci.c index 5d11d4d20aa7..932a0c34bec6 100644 --- a/sys/dev/wi/if_wi_pci.c +++ b/sys/dev/wi/if_wi_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/wi/if_wireg.h b/sys/dev/wi/if_wireg.h index 03c6e22de150..7992f891c481 100644 --- a/sys/dev/wi/if_wireg.h +++ b/sys/dev/wi/if_wireg.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. * diff --git a/sys/dev/wi/if_wivar.h b/sys/dev/wi/if_wivar.h index facc42ba38ee..0cb26e959400 100644 --- a/sys/dev/wi/if_wivar.h +++ b/sys/dev/wi/if_wivar.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 * M Warner Losh . All rights reserved. * Copyright (c) 1997, 1998, 1999 diff --git a/sys/dev/wi/spectrum24t_cf.h b/sys/dev/wi/spectrum24t_cf.h index 7f1d2b023272..ce053fa1930c 100644 --- a/sys/dev/wi/spectrum24t_cf.h +++ b/sys/dev/wi/spectrum24t_cf.h @@ -1,7 +1,7 @@ /* $NetBSD$ */ /* $FreeBSD$ */ -/* +/*- * Copyright (c) 2001 Symbol Technologies Inc. -- http://www.symbol.com * All rights reserved. * diff --git a/sys/dev/wl/if_wl.c b/sys/dev/wl/if_wl.c index 25296b5968c1..113a985d4a75 100644 --- a/sys/dev/wl/if_wl.c +++ b/sys/dev/wl/if_wl.c @@ -1,4 +1,4 @@ -/* +/*- * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/wl/if_wl.h b/sys/dev/wl/if_wl.h index 7f9c2270ed0e..e883b782b046 100644 --- a/sys/dev/wl/if_wl.h +++ b/sys/dev/wl/if_wl.h @@ -1,4 +1,4 @@ -/* +/*- * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/xe/if_xe.c b/sys/dev/xe/if_xe.c index c60fa0a60399..a1db1029a61e 100644 --- a/sys/dev/xe/if_xe.c +++ b/sys/dev/xe/if_xe.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -/* +/*- * Portions of this software were derived from Werner Koch's xirc2ps driver * for Linux under the terms of the following license (from v1.30 of the * xirc2ps driver): diff --git a/sys/dev/xe/if_xe_pccard.c b/sys/dev/xe/if_xe_pccard.c index af014b94027f..8d9f7672b7fc 100644 --- a/sys/dev/xe/if_xe_pccard.c +++ b/sys/dev/xe/if_xe_pccard.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2002 Takeshi Shibagaki * All rights reserved. * diff --git a/sys/dev/zs/z8530reg.h b/sys/dev/zs/z8530reg.h index 9b191d28ba90..b471c9c4deb5 100644 --- a/sys/dev/zs/z8530reg.h +++ b/sys/dev/zs/z8530reg.h @@ -1,6 +1,6 @@ /* $NetBSD: z8530reg.h,v 1.8 1996/12/13 21:02:39 gwr Exp $ */ -/* +/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * -- cgit v1.3