CVS commit: [pgoyette-compat] src/sys/modules/compat_60

2018-03-25 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sun Mar 25 08:17:42 UTC 2018

Modified Files:
src/sys/modules/compat_60 [pgoyette-compat]: Makefile

Log Message:
Add missing kern_cpu_60.c to the module


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/sys/modules/compat_60/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_60/Makefile
diff -u src/sys/modules/compat_60/Makefile:1.1.2.7 src/sys/modules/compat_60/Makefile:1.1.2.8
--- src/sys/modules/compat_60/Makefile:1.1.2.7	Sun Mar 18 21:41:31 2018
+++ src/sys/modules/compat_60/Makefile	Sun Mar 25 08:17:42 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.7 2018/03/18 21:41:31 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.8 2018/03/25 08:17:42 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -12,6 +12,7 @@ CPPFLAGS+=	-DCOMPAT_60 -DCOMPAT_70 -DCOM
 CPPFLAGS+=	-DCPU_UCODE
 .endif
 
-SRCS+=	compat_60_mod.c kern_sa_60.c tty_60.c kern_time_60.c ccd_60.c
+SRCS+=	compat_60_mod.c kern_sa_60.c tty_60.c kern_time_60.c ccd_60.c \
+	kern_cpu_60.c
 
 .include 



CVS commit: [pgoyette-compat] src/sys/modules/compat_60

2018-03-15 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Fri Mar 16 01:33:24 UTC 2018

Modified Files:
src/sys/modules/compat_60 [pgoyette-compat]: Makefile

Log Message:
Add note/reminder to deal with setting of CPU_UCODE option based on
machine architecture.  It's needed for i386, amd64, and XEN3_DOM0
(but _not_ needed for XEN3_DOMU).


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/modules/compat_60/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_60/Makefile
diff -u src/sys/modules/compat_60/Makefile:1.1.2.1 src/sys/modules/compat_60/Makefile:1.1.2.2
--- src/sys/modules/compat_60/Makefile:1.1.2.1	Thu Mar 15 23:23:36 2018
+++ src/sys/modules/compat_60/Makefile	Fri Mar 16 01:33:24 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.1 2018/03/15 23:23:36 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.2 2018/03/16 01:33:24 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -8,6 +8,11 @@ KMOD=	compat_60
 
 CPPFLAGS+=	-D COMPAT_60 -DCOMPAT_70 -DCOMPAT_80
 
+# If being built for amd64, i386, or XEN3_DOM0 (but _not_ DOMU), we
+# need to add
+#
+# SRCS+=	CPU_UCODE
+
 SRCS+=	kern_sa_60.c tty_60.c kern_time_60.c
 
 .include