summaryrefslogtreecommitdiff
path: root/sys/boot/pc98
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-05-24 16:47:10 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-05-24 16:47:10 +0000
commitbff5b80e6cde3256fd760aec0882f8b9fa85b5ee (patch)
treef979656ed109e888baec4c361944b615bc0f7d2c /sys/boot/pc98
parentc37538200ebdef38051ba82b76e6b2dab3bd2fdc (diff)
Diffstat (limited to 'sys/boot/pc98')
-rw-r--r--sys/boot/pc98/Makefile2
-rw-r--r--sys/boot/pc98/boot2/Makefile2
-rw-r--r--sys/boot/pc98/boot2/asm.S2
-rw-r--r--sys/boot/pc98/boot2/asm.h2
-rw-r--r--sys/boot/pc98/boot2/bios.S2
-rw-r--r--sys/boot/pc98/boot2/boot.c2
-rw-r--r--sys/boot/pc98/boot2/boot.h2
-rw-r--r--sys/boot/pc98/boot2/boot2.S2
-rw-r--r--sys/boot/pc98/boot2/disk.c2
-rw-r--r--sys/boot/pc98/boot2/io.c2
-rw-r--r--sys/boot/pc98/boot2/serial.S2
-rw-r--r--sys/boot/pc98/boot2/start.S2
-rw-r--r--sys/boot/pc98/boot2/sys.c2
-rw-r--r--sys/boot/pc98/boot2/table.c2
-rw-r--r--sys/boot/pc98/btx/Makefile2
-rw-r--r--sys/boot/pc98/btx/btx/Makefile2
-rw-r--r--sys/boot/pc98/btx/btx/btx.m42
-rw-r--r--sys/boot/pc98/btx/btx/btx.s2
-rw-r--r--sys/boot/pc98/btx/btxldr/Makefile2
-rw-r--r--sys/boot/pc98/btx/btxldr/btxldr.s2
-rw-r--r--sys/boot/pc98/btx/lib/Makefile2
-rw-r--r--sys/boot/pc98/btx/lib/btxcsu.s2
-rw-r--r--sys/boot/pc98/btx/lib/btxsys.s2
-rw-r--r--sys/boot/pc98/btx/lib/btxv86.h2
-rw-r--r--sys/boot/pc98/btx/lib/btxv86.s2
-rw-r--r--sys/boot/pc98/libpc98/Makefile2
-rw-r--r--sys/boot/pc98/libpc98/biosdisk.c2
-rw-r--r--sys/boot/pc98/libpc98/bootinfo.c2
-rw-r--r--sys/boot/pc98/libpc98/comconsole.c2
-rw-r--r--sys/boot/pc98/libpc98/gatea20.c2
-rw-r--r--sys/boot/pc98/libpc98/vidconsole.c2
-rw-r--r--sys/boot/pc98/loader/Makefile2
-rw-r--r--sys/boot/pc98/loader/main.c2
33 files changed, 33 insertions, 33 deletions
diff --git a/sys/boot/pc98/Makefile b/sys/boot/pc98/Makefile
index 8d8ed951fa40..b52b9f6caedb 100644
--- a/sys/boot/pc98/Makefile
+++ b/sys/boot/pc98/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:11 kato Exp $
SUBDIR= btx boot2 libpc98 loader
diff --git a/sys/boot/pc98/boot2/Makefile b/sys/boot/pc98/boot2/Makefile
index 13bad337aeca..14ff829cd4fd 100644
--- a/sys/boot/pc98/boot2/Makefile
+++ b/sys/boot/pc98/boot2/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:11 kato Exp $
#
PROG= boot
diff --git a/sys/boot/pc98/boot2/asm.S b/sys/boot/pc98/boot2/asm.S
index 653e7fcd4ccd..d7a03d4ab084 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$
+ * $Id: asm.S,v 1.1.2.1 1999/02/06 07:37:11 kato Exp $
*/
diff --git a/sys/boot/pc98/boot2/asm.h b/sys/boot/pc98/boot2/asm.h
index b90bbcebf158..ae4b7891a62d 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$
+ * $Id: asm.h,v 1.1.2.1 1999/02/06 07:37:11 kato Exp $
*/
#define S_ARG0 4(%esp)
diff --git a/sys/boot/pc98/boot2/bios.S b/sys/boot/pc98/boot2/bios.S
index 2e533520f37a..857e61f02c9e 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.1 1999/02/03 08:39:08 kato Exp $
+ * $Id: bios.S,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/boot2/boot.c b/sys/boot/pc98/boot2/boot.c
index 4aba61139105..4d00289782ca 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.1.2.1 1999/02/06 07:37:12 kato Exp $
+ * $Id: boot.c,v 1.1.2.2 1999/03/05 08:10:39 kato Exp $
*/
diff --git a/sys/boot/pc98/boot2/boot.h b/sys/boot/pc98/boot2/boot.h
index 7ee0e15cf320..b99882868156 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$
+ * $Id: boot.h,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
#include <sys/param.h>
diff --git a/sys/boot/pc98/boot2/boot2.S b/sys/boot/pc98/boot2/boot2.S
index 3ab2cb306613..b949b98a6b03 100644
--- a/sys/boot/pc98/boot2/boot2.S
+++ b/sys/boot/pc98/boot2/boot2.S
@@ -25,7 +25,7 @@
*
* from: Mach, Revision 2.2 92/04/04 11:35:26 rpd
* boot2.S,v 1.6 1995/01/25 21:37:40 bde Exp
- * $Id$
+ * $Id: boot2.S,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
* Ported to PC-9801 by Yoshio Kimura
diff --git a/sys/boot/pc98/boot2/disk.c b/sys/boot/pc98/boot2/disk.c
index de21df8b4357..b7fe0bf56c9f 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$
+ * $Id: disk.c,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/boot2/io.c b/sys/boot/pc98/boot2/io.c
index 522f60d41425..35d429c47a3c 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$
+ * $Id: io.c,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
#include "boot.h"
diff --git a/sys/boot/pc98/boot2/serial.S b/sys/boot/pc98/boot2/serial.S
index 169ed9a00ecc..ba4d1d9b2baa 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$
+ * $Id: serial.S,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/boot2/start.S b/sys/boot/pc98/boot2/start.S
index 567c34a05713..f6ac565e084b 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$
+ * $Id: start.S,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/boot2/sys.c b/sys/boot/pc98/boot2/sys.c
index b6fdbcf5c36e..a74838446281 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$
+ * $Id: sys.c,v 1.1.2.1 1999/02/06 07:37:12 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/boot2/table.c b/sys/boot/pc98/boot2/table.c
index 58094875982e..ff4c697d9ba3 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.2.1 1999/02/06 07:37:12 kato Exp $
+ * $Id: table.c,v 1.1.2.2 1999/03/05 08:13:58 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/btx/Makefile b/sys/boot/pc98/btx/Makefile
index 2044799f4b26..a57a964bb735 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 $
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
SUBDIR= btx btxldr lib # client ldrtst
diff --git a/sys/boot/pc98/btx/btx/Makefile b/sys/boot/pc98/btx/btx/Makefile
index 5dde5b45f574..331d5d7aca58 100644
--- a/sys/boot/pc98/btx/btx/Makefile
+++ b/sys/boot/pc98/btx/btx/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
M4?= m4
diff --git a/sys/boot/pc98/btx/btx/btx.m4 b/sys/boot/pc98/btx/btx/btx.m4
index 74c857aaa4e8..4befb189f8f6 100644
--- a/sys/boot/pc98/btx/btx/btx.m4
+++ b/sys/boot/pc98/btx/btx/btx.m4
@@ -13,7 +13,7 @@
# purpose.
#
-# $Id$
+# $Id: btx.m4,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
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 f8865839760e..08069431e0d6 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.2.1 1999/02/06 07:37:13 kato Exp $
+# $Id: btx.s,v 1.1.2.2 1999/03/01 10:03:57 kato Exp $
#
# Memory layout.
diff --git a/sys/boot/pc98/btx/btxldr/Makefile b/sys/boot/pc98/btx/btxldr/Makefile
index 38b2eb1c308d..955f6e528b75 100644
--- a/sys/boot/pc98/btx/btxldr/Makefile
+++ b/sys/boot/pc98/btx/btxldr/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
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 7506d32893f4..0201fd3f8735 100644
--- a/sys/boot/pc98/btx/btxldr/btxldr.s
+++ b/sys/boot/pc98/btx/btxldr/btxldr.s
@@ -13,7 +13,7 @@
# purpose.
#
-# $Id$
+# $Id: btxldr.s,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
#
# 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 dccb410f88d6..e9ce2b1a37ef 100644
--- a/sys/boot/pc98/btx/lib/Makefile
+++ b/sys/boot/pc98/btx/lib/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
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 882bb3ee9bd9..f517a06c7ca0 100644
--- a/sys/boot/pc98/btx/lib/btxcsu.s
+++ b/sys/boot/pc98/btx/lib/btxcsu.s
@@ -13,7 +13,7 @@
# purpose.
#
-# $Id:$
+# $Id: btxcsu.s,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
#
# BTX C startup code (ELF).
diff --git a/sys/boot/pc98/btx/lib/btxsys.s b/sys/boot/pc98/btx/lib/btxsys.s
index f30978e731f2..cbdfd5ac7824 100644
--- a/sys/boot/pc98/btx/lib/btxsys.s
+++ b/sys/boot/pc98/btx/lib/btxsys.s
@@ -13,7 +13,7 @@
# purpose.
#
-# $Id$
+# $Id: btxsys.s,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
#
# BTX system calls.
diff --git a/sys/boot/pc98/btx/lib/btxv86.h b/sys/boot/pc98/btx/lib/btxv86.h
index 6b53a5cd0e48..c27c0730b1bd 100644
--- a/sys/boot/pc98/btx/lib/btxv86.h
+++ b/sys/boot/pc98/btx/lib/btxv86.h
@@ -14,7 +14,7 @@
*/
/*
- * $Id$
+ * $Id: btxv86.h,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
*/
#ifndef _BTXV86_H_
diff --git a/sys/boot/pc98/btx/lib/btxv86.s b/sys/boot/pc98/btx/lib/btxv86.s
index 759cc4d94079..83618b88fe3e 100644
--- a/sys/boot/pc98/btx/lib/btxv86.s
+++ b/sys/boot/pc98/btx/lib/btxv86.s
@@ -13,7 +13,7 @@
# purpose.
#
-# $Id$
+# $Id: btxv86.s,v 1.1.2.1 1999/02/06 07:37:13 kato Exp $
#
# BTX V86 interface.
diff --git a/sys/boot/pc98/libpc98/Makefile b/sys/boot/pc98/libpc98/Makefile
index ba1ac544e7bf..440d85cf1e02 100644
--- a/sys/boot/pc98/libpc98/Makefile
+++ b/sys/boot/pc98/libpc98/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1.2.1 1999/02/06 07:37:14 kato Exp $
#
LIB= pc98
NOPIC=
diff --git a/sys/boot/pc98/libpc98/biosdisk.c b/sys/boot/pc98/libpc98/biosdisk.c
index 1f10d18b5063..6cd379225851 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.1.2.2 1999/03/11 10:26:20 kato Exp $
+ * $Id: biosdisk.c,v 1.1.2.3 1999/03/11 10:27:15 kato Exp $
*/
/*
diff --git a/sys/boot/pc98/libpc98/bootinfo.c b/sys/boot/pc98/libpc98/bootinfo.c
index ea65cbc5aa3d..eb8ea257f4c3 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$
+ * $Id: bootinfo.c,v 1.1.2.1 1999/02/06 07:37:14 kato Exp $
*/
#include <stand.h>
diff --git a/sys/boot/pc98/libpc98/comconsole.c b/sys/boot/pc98/libpc98/comconsole.c
index 05ef80389e8e..ef6846d25602 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$
+ * $Id: comconsole.c,v 1.1.2.1 1999/02/06 07:37:14 kato Exp $
*/
#include <stand.h>
diff --git a/sys/boot/pc98/libpc98/gatea20.c b/sys/boot/pc98/libpc98/gatea20.c
index dee7518da667..0afcafde6002 100644
--- a/sys/boot/pc98/libpc98/gatea20.c
+++ b/sys/boot/pc98/libpc98/gatea20.c
@@ -1,5 +1,5 @@
/*
- * $Id$
+ * $Id: gatea20.c,v 1.1.2.1 1999/02/06 07:37:14 kato Exp $
* 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 a4f0d4050890..e39d31b48fcc 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.2.1 1999/02/06 07:37:15 kato Exp $
+ * $Id: vidconsole.c,v 1.1.2.2 1999/03/05 08:12:17 kato Exp $
*/
#include <stand.h>
diff --git a/sys/boot/pc98/loader/Makefile b/sys/boot/pc98/loader/Makefile
index 5e0fa610a373..298f0f1d07b6 100644
--- a/sys/boot/pc98/loader/Makefile
+++ b/sys/boot/pc98/loader/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1.2.4 1999/04/02 09:01:01 kato Exp $
+# $Id: Makefile,v 1.1.2.5 1999/04/26 23:27:39 kato Exp $
BASE= loader
PROG= ${BASE}
diff --git a/sys/boot/pc98/loader/main.c b/sys/boot/pc98/loader/main.c
index 129c719d1030..85a37a7d2958 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.1.2.2 1999/03/11 10:26:21 kato Exp $
+ * $Id: main.c,v 1.1.2.3 1999/04/02 09:01:01 kato Exp $
*/
/*