CVS commit: src/sys/arch/luna68k/conf

2023-04-11 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Tue Apr 11 13:26:19 UTC 2023

Modified Files:
src/sys/arch/luna68k/conf: Makefile.luna68k

Log Message:
Fix missing locore.d dependency output on make depend.

Reported from isaki@.  Looks missed in rev 1.13 (22 years ago):
 
http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/arch/luna68k/conf/Makefile.luna68k#rev1.13

Should be pulled up to netbsd-8, netbsd-9, and netbsd-10.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/luna68k/conf/Makefile.luna68k

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

Modified files:

Index: src/sys/arch/luna68k/conf/Makefile.luna68k
diff -u src/sys/arch/luna68k/conf/Makefile.luna68k:1.29 src/sys/arch/luna68k/conf/Makefile.luna68k:1.30
--- src/sys/arch/luna68k/conf/Makefile.luna68k:1.29	Sat Sep 22 12:24:02 2018
+++ src/sys/arch/luna68k/conf/Makefile.luna68k	Tue Apr 11 13:26:19 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.luna68k,v 1.29 2018/09/22 12:24:02 rin Exp $
+#	$NetBSD: Makefile.luna68k,v 1.30 2023/04/11 13:26:19 tsutsui Exp $
 
 # Makefile for NetBSD
 #
@@ -48,7 +48,7 @@ OPT_MODULAR=	%MODULAR%
 MD_OBJS=	locore.o
 MD_LIBS=	${FPSP}
 MD_CFILES=
-MD_SFILES=	
+MD_SFILES=	${LUNA68K}/luna68k/locore.s
 
 locore.o: ${LUNA68K}/luna68k/locore.s assym.h
 	${NORMAL_S}



CVS commit: src/sys/arch/luna68k/conf

2023-04-11 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Tue Apr 11 13:26:19 UTC 2023

Modified Files:
src/sys/arch/luna68k/conf: Makefile.luna68k

Log Message:
Fix missing locore.d dependency output on make depend.

Reported from isaki@.  Looks missed in rev 1.13 (22 years ago):
 
http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/arch/luna68k/conf/Makefile.luna68k#rev1.13

Should be pulled up to netbsd-8, netbsd-9, and netbsd-10.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/luna68k/conf/Makefile.luna68k

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



CVS commit: src/sys/arch/luna68k/conf

2022-05-27 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri May 27 16:59:19 UTC 2022

Modified Files:
src/sys/arch/luna68k/conf: GENERIC INSTALL

Log Message:
Specify -fno-unwind-tables to shrink binaries.


To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/sys/arch/luna68k/conf/GENERIC
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/luna68k/conf/INSTALL

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.131 src/sys/arch/luna68k/conf/GENERIC:1.132
--- src/sys/arch/luna68k/conf/GENERIC:1.131	Fri Feb  4 18:28:53 2022
+++ src/sys/arch/luna68k/conf/GENERIC	Fri May 27 16:59:19 2022
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.131 2022/02/04 18:28:53 tsutsui Exp $
+# $NetBSD: GENERIC,v 1.132 2022/05/27 16:59:19 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,9 +22,9 @@ include 	"arch/luna68k/conf/std.luna68k"
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"GENERIC-$Revision: 1.131 $"
+#ident 		"GENERIC-$Revision: 1.132 $"
 
-makeoptions	COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
+makeoptions	COPTS="-O2 -fno-reorder-blocks -fno-unwind-tables -fno-omit-frame-pointer"
 	# See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
 	# backtraces in DDB.
 

Index: src/sys/arch/luna68k/conf/INSTALL
diff -u src/sys/arch/luna68k/conf/INSTALL:1.32 src/sys/arch/luna68k/conf/INSTALL:1.33
--- src/sys/arch/luna68k/conf/INSTALL:1.32	Fri Feb  4 18:28:53 2022
+++ src/sys/arch/luna68k/conf/INSTALL	Fri May 27 16:59:19 2022
@@ -1,10 +1,10 @@
-# $NetBSD: INSTALL,v 1.32 2022/02/04 18:28:53 tsutsui Exp $
+# $NetBSD: INSTALL,v 1.33 2022/05/27 16:59:19 tsutsui Exp $
 #
 # config for installation ramdisk kernel
 # 
 include 	"arch/luna68k/conf/std.luna68k"
 
-makeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
+makeoptions	COPTS="-Os -fno-unwind-tables"	# Optimise for space.
 
 maxusers	4
 



CVS commit: src/sys/arch/luna68k/conf

2022-05-27 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri May 27 16:59:19 UTC 2022

Modified Files:
src/sys/arch/luna68k/conf: GENERIC INSTALL

Log Message:
Specify -fno-unwind-tables to shrink binaries.


To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/sys/arch/luna68k/conf/GENERIC
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/luna68k/conf/INSTALL

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



CVS commit: src/sys/arch/luna68k/conf

2022-02-04 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Feb  4 18:28:53 UTC 2022

Modified Files:
src/sys/arch/luna68k/conf: GENERIC INSTALL

Log Message:
Use "options WS_KERNEL_FG=WSCOL_GREEN" as most ports with color support.

For demonstration on nono that supports 4bpp framebuffer recently.


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/luna68k/conf/GENERIC
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/luna68k/conf/INSTALL

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.130 src/sys/arch/luna68k/conf/GENERIC:1.131
--- src/sys/arch/luna68k/conf/GENERIC:1.130	Sun Sep 27 13:48:52 2020
+++ src/sys/arch/luna68k/conf/GENERIC	Fri Feb  4 18:28:53 2022
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.130 2020/09/27 13:48:52 roy Exp $
+# $NetBSD: GENERIC,v 1.131 2022/02/04 18:28:53 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include 	"arch/luna68k/conf/std.luna68k"
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"GENERIC-$Revision: 1.130 $"
+#ident 		"GENERIC-$Revision: 1.131 $"
 
 makeoptions	COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
 	# See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
@@ -130,6 +130,9 @@ options 	NFS_BOOT_DHCP	# superset of BOO
 options 	WSEMUL_VT100
 options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
 options 	WSDISPLAY_COMPAT_RAWKBD
+options 	WS_KERNEL_FG=WSCOL_GREEN
+#options 	WS_KERNEL_BG=WSCOL_BLACK
+
 options 	FONT_OMRON12x20
 
 config		netbsd root on ? type ?

Index: src/sys/arch/luna68k/conf/INSTALL
diff -u src/sys/arch/luna68k/conf/INSTALL:1.31 src/sys/arch/luna68k/conf/INSTALL:1.32
--- src/sys/arch/luna68k/conf/INSTALL:1.31	Sun Sep 27 13:48:52 2020
+++ src/sys/arch/luna68k/conf/INSTALL	Fri Feb  4 18:28:53 2022
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.31 2020/09/27 13:48:52 roy Exp $
+# $NetBSD: INSTALL,v 1.32 2022/02/04 18:28:53 tsutsui Exp $
 #
 # config for installation ramdisk kernel
 # 
@@ -108,6 +108,9 @@ options 	NFS_BOOT_DHCP	# superset of BOO
 options 	WSEMUL_VT100
 options 	WSDISPLAY_DEFAULTSCREENS=1
 #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
+options 	WS_KERNEL_FG=WSCOL_GREEN
+#options 	WS_KERNEL_BG=WSCOL_BLACK
+
 options 	FONT_OMRON12x20
 
 config		netbsd root on ? type ?



CVS commit: src/sys/arch/luna68k/conf

2022-02-04 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Feb  4 18:28:53 UTC 2022

Modified Files:
src/sys/arch/luna68k/conf: GENERIC INSTALL

Log Message:
Use "options WS_KERNEL_FG=WSCOL_GREEN" as most ports with color support.

For demonstration on nono that supports 4bpp framebuffer recently.


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/luna68k/conf/GENERIC
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/luna68k/conf/INSTALL

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



CVS commit: src/sys/arch/luna68k/conf

2020-05-19 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Tue May 19 09:14:52 UTC 2020

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
Oops, fix comment in the previous for accuracy.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/luna68k/conf/INSTALL

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



CVS commit: src/sys/arch/luna68k/conf

2020-05-19 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Tue May 19 09:14:52 UTC 2020

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
Oops, fix comment in the previous for accuracy.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/luna68k/conf/INSTALL

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

Modified files:

Index: src/sys/arch/luna68k/conf/INSTALL
diff -u src/sys/arch/luna68k/conf/INSTALL:1.28 src/sys/arch/luna68k/conf/INSTALL:1.29
--- src/sys/arch/luna68k/conf/INSTALL:1.28	Tue May 19 09:02:48 2020
+++ src/sys/arch/luna68k/conf/INSTALL	Tue May 19 09:14:52 2020
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.28 2020/05/19 09:02:48 rin Exp $
+# $NetBSD: INSTALL,v 1.29 2020/05/19 09:14:52 rin Exp $
 #
 # config for installation ramdisk kernel
 # 
@@ -15,7 +15,7 @@ options 	FPSP	# on m68040 to emulate som
 options 	MEMORY_DISK_HOOKS
 options 	MEMORY_DISK_IS_ROOT		# Force root on ram-disk
 options 	MEMORY_DISK_SERVER=0		# no userspace md(4) support
-options 	MEMORY_DISK_ROOT_SIZE=4000	# 2.00 Megabytes
+options 	MEMORY_DISK_ROOT_SIZE=4000	# size of memory disk, in blocks
 options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
 
 # Standard system options



CVS commit: src/sys/arch/luna68k/conf

2016-09-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Sep 18 14:20:23 UTC 2016

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
bump


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/luna68k/conf/INSTALL

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

Modified files:

Index: src/sys/arch/luna68k/conf/INSTALL
diff -u src/sys/arch/luna68k/conf/INSTALL:1.19 src/sys/arch/luna68k/conf/INSTALL:1.20
--- src/sys/arch/luna68k/conf/INSTALL:1.19	Sat Aug 23 16:26:58 2014
+++ src/sys/arch/luna68k/conf/INSTALL	Sun Sep 18 10:20:23 2016
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.19 2014/08/23 20:26:58 dholland Exp $
+# $NetBSD: INSTALL,v 1.20 2016/09/18 14:20:23 christos Exp $
 #
 # config for installation ramdisk kernel
 # 
@@ -15,7 +15,7 @@ options 	FPSP	# on m68040 to emulate som
 options 	MEMORY_DISK_HOOKS
 options 	MEMORY_DISK_IS_ROOT		# Force root on ram-disk
 options 	MEMORY_DISK_SERVER=0		# no userspace md(4) support
-options 	MEMORY_DISK_ROOT_SIZE=3600	# 1.80 Megabytes
+options 	MEMORY_DISK_ROOT_SIZE=3800	# 1.90 Megabytes
 options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
 
 # Standard system options



CVS commit: src/sys/arch/luna68k/conf

2016-09-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Sep 18 14:20:23 UTC 2016

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
bump


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/luna68k/conf/INSTALL

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



CVS commit: src/sys/arch/luna68k/conf

2014-08-05 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Aug  5 15:52:38 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
Adapt to grown ramdisk image size


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/luna68k/conf/INSTALL

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

Modified files:

Index: src/sys/arch/luna68k/conf/INSTALL
diff -u src/sys/arch/luna68k/conf/INSTALL:1.15 src/sys/arch/luna68k/conf/INSTALL:1.16
--- src/sys/arch/luna68k/conf/INSTALL:1.15	Thu Feb 20 14:30:23 2014
+++ src/sys/arch/luna68k/conf/INSTALL	Tue Aug  5 15:52:38 2014
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.15 2014/02/20 14:30:23 tsutsui Exp $
+# $NetBSD: INSTALL,v 1.16 2014/08/05 15:52:38 martin Exp $
 #
 # config for installation ramdisk kernel
 # 
@@ -15,7 +15,7 @@ options 	FPSP	# on m68040 to emulate som
 options 	MEMORY_DISK_HOOKS
 options 	MEMORY_DISK_IS_ROOT		# Force root on ram-disk
 options 	MEMORY_DISK_SERVER=0		# no userspace md(4) support
-options 	MEMORY_DISK_ROOT_SIZE=3400	# 1.60 Megabytes
+options 	MEMORY_DISK_ROOT_SIZE=3600	# 1.80 Megabytes
 options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
 
 # Standard system options



CVS commit: src/sys/arch/luna68k/conf

2014-08-05 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Aug  5 15:52:38 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: INSTALL

Log Message:
Adapt to grown ramdisk image size


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/luna68k/conf/INSTALL

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



CVS commit: src/sys/arch/luna68k/conf

2014-07-20 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Jul 20 11:33:31 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Add options WSDISPLAY_COMPAT_RAWKBD for Xorg server.


To generate a diff of this commit:
cvs rdiff -u -r1.112 -r1.113 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.112 src/sys/arch/luna68k/conf/GENERIC:1.113
--- src/sys/arch/luna68k/conf/GENERIC:1.112	Fri Jul 18 17:30:52 2014
+++ src/sys/arch/luna68k/conf/GENERIC	Sun Jul 20 11:33:31 2014
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.112 2014/07/18 17:30:52 tsutsui Exp $
+# $NetBSD: GENERIC,v 1.113 2014/07/20 11:33:31 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.112 $
+#ident 		GENERIC-$Revision: 1.113 $
 
 makeoptions	COPTS=-O2 -fno-reorder-blocks	# see share/mk/sys.mk
 
@@ -139,6 +139,7 @@ options 	NFS_BOOT_DHCP	# superset of BOO
 # WS console uses SUN or VT100 terminal emulation
 options 	WSEMUL_VT100
 options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
+options 	WSDISPLAY_COMPAT_RAWKBD
 options 	FONT_OMRON12x20
 
 config		netbsd root on ? type ?



CVS commit: src/sys/arch/luna68k/conf

2014-07-20 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Jul 20 11:33:31 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Add options WSDISPLAY_COMPAT_RAWKBD for Xorg server.


To generate a diff of this commit:
cvs rdiff -u -r1.112 -r1.113 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2014-07-18 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Jul 18 17:30:52 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable INET6 (for modern network) and MODULAR, and disable accept filters.


To generate a diff of this commit:
cvs rdiff -u -r1.111 -r1.112 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.111 src/sys/arch/luna68k/conf/GENERIC:1.112
--- src/sys/arch/luna68k/conf/GENERIC:1.111	Sat Jul  5 09:16:45 2014
+++ src/sys/arch/luna68k/conf/GENERIC	Fri Jul 18 17:30:52 2014
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.111 2014/07/05 09:16:45 tsutsui Exp $
+# $NetBSD: GENERIC,v 1.112 2014/07/18 17:30:52 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.111 $
+#ident 		GENERIC-$Revision: 1.112 $
 
 makeoptions	COPTS=-O2 -fno-reorder-blocks	# see share/mk/sys.mk
 
@@ -40,6 +40,9 @@ options 	KTRACE
 options 	SYSVMSG			# System V message queues
 options 	SYSVSEM			# System V semaphores
 options 	SYSVSHM			# System V shared memory
+
+options 	MODULAR			# new style module(7) framework
+
 options 	USERCONF		# userconf(4) support
 #options	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
 options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
@@ -104,7 +107,7 @@ options 	WAPBL		# File system journaling
 
 # Networking options
 options 	INET		# IP protocol stack support
-#options 	INET6		# IPV6
+options 	INET6		# IPV6
 #options 	IPSEC		# IP security
 #options 	IPSEC_DEBUG	# debug for IP security
 #options 	GATEWAY		# IP packet forwarding
@@ -174,8 +177,8 @@ cd* at scsibus? target ? lun ?		# SCSI C
 
 #
 # accept filters
-pseudo-device   accf_data		# dataready accept filter
-pseudo-device   accf_http		# httpready accept filter
+#pseudo-device   accf_data		# dataready accept filter
+#pseudo-device   accf_http		# httpready accept filter
 
 pseudo-device	bpfilter		# Berkeley Packet Filter
 #pseudo-device	carp			# Common Address Redundancy Protocol



CVS commit: src/sys/arch/luna68k/conf

2014-07-18 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Jul 18 17:30:52 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable INET6 (for modern network) and MODULAR, and disable accept filters.


To generate a diff of this commit:
cvs rdiff -u -r1.111 -r1.112 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2014-07-05 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Jul  5 09:16:45 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Use COPTS=-O2 -fno-reorder-blocks as defined in sys.mk for userland.

with -O2:
   textdata bss dec hex filename
2064824   48784   85920 2199528  218fe8 netbsd

with -O2 -fno-reorder-blocks:
   textdata bss dec hex filename
1842944   48784   85920 1977648  1e2d30 netbsd


To generate a diff of this commit:
cvs rdiff -u -r1.110 -r1.111 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.110 src/sys/arch/luna68k/conf/GENERIC:1.111
--- src/sys/arch/luna68k/conf/GENERIC:1.110	Wed Jan  1 08:41:52 2014
+++ src/sys/arch/luna68k/conf/GENERIC	Sat Jul  5 09:16:45 2014
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.110 2014/01/01 08:41:52 tsutsui Exp $
+# $NetBSD: GENERIC,v 1.111 2014/07/05 09:16:45 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,9 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.110 $
+#ident 		GENERIC-$Revision: 1.111 $
+
+makeoptions	COPTS=-O2 -fno-reorder-blocks	# see share/mk/sys.mk
 
 maxusers	8
 



CVS commit: src/sys/arch/luna68k/conf

2014-07-05 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Jul  5 09:16:45 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Use COPTS=-O2 -fno-reorder-blocks as defined in sys.mk for userland.

with -O2:
   textdata bss dec hex filename
2064824   48784   85920 2199528  218fe8 netbsd

with -O2 -fno-reorder-blocks:
   textdata bss dec hex filename
1842944   48784   85920 1977648  1e2d30 netbsd


To generate a diff of this commit:
cvs rdiff -u -r1.110 -r1.111 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2014-01-01 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Wed Jan  1 08:41:52 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable file-system CD9660 to make cd(4) actually usable.


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.109 src/sys/arch/luna68k/conf/GENERIC:1.110
--- src/sys/arch/luna68k/conf/GENERIC:1.109	Sat Dec 21 17:12:36 2013
+++ src/sys/arch/luna68k/conf/GENERIC	Wed Jan  1 08:41:52 2014
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.109 2013/12/21 17:12:36 tsutsui Exp $
+# $NetBSD: GENERIC,v 1.110 2014/01/01 08:41:52 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.109 $
+#ident 		GENERIC-$Revision: 1.110 $
 
 maxusers	8
 
@@ -79,7 +79,7 @@ file-system 	FFS		# ufs file system
 #file-system	LFS		# log-structured file system
 file-system 	NFS		# nfs client support
 file-system	MFS
-#file-system 	CD9660		# ISO 9660 + Rock Ridge file system
+file-system 	CD9660		# ISO 9660 + Rock Ridge file system
 #file-system	MSDOSFS		# MS-DOS FAT file system
 file-system 	KERNFS		# /kern
 file-system 	PROCFS		# /proc



CVS commit: src/sys/arch/luna68k/conf

2014-01-01 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Wed Jan  1 08:41:52 UTC 2014

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable file-system CD9660 to make cd(4) actually usable.


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2013-12-21 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Dec 21 17:12:36 UTC 2013

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Add and enable wsmux(4) in GENERIC (for mlterm-fb demonstration).


To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.108 src/sys/arch/luna68k/conf/GENERIC:1.109
--- src/sys/arch/luna68k/conf/GENERIC:1.108	Sun Jun 30 21:38:57 2013
+++ src/sys/arch/luna68k/conf/GENERIC	Sat Dec 21 17:12:36 2013
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.108 2013/06/30 21:38:57 rmind Exp $
+# $NetBSD: GENERIC,v 1.109 2013/12/21 17:12:36 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.108 $
+#ident 		GENERIC-$Revision: 1.109 $
 
 maxusers	8
 
@@ -156,8 +156,8 @@ fb0	at mainbus0		# 16 or 256 pseudo colo
 
 # Workstation Console attachments
 wsdisplay*	at fb?
-wskbd*		at ws? console ?
-wsmouse*	at ws?
+wskbd*		at ws? console ? mux 1
+wsmouse*	at ws? mux 0
 
 # SCSI bus support
 scsibus* at spc?
@@ -202,6 +202,8 @@ pseudo-device	ksyms			# /dev/ksyms
 #pseudo-device	pf			# PF packet filter
 #pseudo-device	pflog			# PF log if
 
+pseudo-device	wsmux			# mouse  keyboard multiplexsor
+
 # Veriexec
 #
 # a pseudo device needed for veriexec



CVS commit: src/sys/arch/luna68k/conf

2013-12-21 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Dec 21 17:12:36 UTC 2013

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Add and enable wsmux(4) in GENERIC (for mlterm-fb demonstration).


To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2013-05-10 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri May 10 16:30:50 UTC 2013

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable cd at scsibus, just works on LUNA-II.


To generate a diff of this commit:
cvs rdiff -u -r1.105 -r1.106 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.105 src/sys/arch/luna68k/conf/GENERIC:1.106
--- src/sys/arch/luna68k/conf/GENERIC:1.105	Sat Apr 27 21:43:31 2013
+++ src/sys/arch/luna68k/conf/GENERIC	Fri May 10 16:30:50 2013
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.105 2013/04/27 21:43:31 christos Exp $
+# $NetBSD: GENERIC,v 1.106 2013/05/10 16:30:50 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.105 $
+#ident 		GENERIC-$Revision: 1.106 $
 
 maxusers	8
 
@@ -167,7 +167,7 @@ scsibus* at spc?
 # SCSI devices
 sd* at scsibus? target ? lun ?		# SCSI disks
 st* at scsibus? target ? lun ?		# SCSI tapes
-#cd* at scsibus? target ? lun ?		# SCSI CD-ROMs
+cd* at scsibus? target ? lun ?		# SCSI CD-ROMs
 #ch* at scsibus? target ? lun ?		# SCSI changer devices
 #ss* at scsibus? target ? lun ?		# SCSI scanners
 #uk* at scsibus? target ? lun ?		# unknown SCSI devices



CVS commit: src/sys/arch/luna68k/conf

2013-05-10 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri May 10 16:30:50 UTC 2013

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Enable cd at scsibus, just works on LUNA-II.


To generate a diff of this commit:
cvs rdiff -u -r1.105 -r1.106 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2011-11-25 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Nov 26 04:58:42 UTC 2011

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Bump (commented out) SYMTAB_SPACE.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/sys/arch/luna68k/conf/GENERIC

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

Modified files:

Index: src/sys/arch/luna68k/conf/GENERIC
diff -u src/sys/arch/luna68k/conf/GENERIC:1.95 src/sys/arch/luna68k/conf/GENERIC:1.96
--- src/sys/arch/luna68k/conf/GENERIC:1.95	Tue Nov 22 21:25:23 2011
+++ src/sys/arch/luna68k/conf/GENERIC	Sat Nov 26 04:58:42 2011
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.95 2011/11/22 21:25:23 tls Exp $
+# $NetBSD: GENERIC,v 1.96 2011/11/26 04:58:42 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@ include		arch/luna68k/conf/std.luna68k
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		GENERIC-$Revision: 1.95 $
+#ident 		GENERIC-$Revision: 1.96 $
 
 maxusers	8
 
@@ -51,7 +51,7 @@ options 	SYSCTL_INCLUDE_DESCR	# Include 
 # Debugging options
 options 	DDB
 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
-#options 	SYMTAB_SPACE=72000	# place DDB symbols in data segment
+#options 	SYMTAB_SPACE=448000	# place DDB symbols in data segment
 #options 	DEBUG			# extra kernel debugging support
 #options 	DIAGNOSTIC		# extra kernel sanity checking
 #options 	SCSIVERBOSE		# Verbose SCSI errors



CVS commit: src/sys/arch/luna68k/conf

2011-11-25 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Nov 26 04:58:42 UTC 2011

Modified Files:
src/sys/arch/luna68k/conf: GENERIC

Log Message:
Bump (commented out) SYMTAB_SPACE.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/sys/arch/luna68k/conf/GENERIC

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



CVS commit: src/sys/arch/luna68k/conf

2011-07-20 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Wed Jul 20 12:00:04 UTC 2011

Modified Files:
src/sys/arch/luna68k/conf: Makefile.luna68k

Log Message:
Fix thinko.  src/sys/conf/mkldscript.sh requires $OBJDUMP, not $ELF2AOUT.
(note generated faked a.out kernels can still be loaded and work fine)


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/luna68k/conf/Makefile.luna68k

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

Modified files:

Index: src/sys/arch/luna68k/conf/Makefile.luna68k
diff -u src/sys/arch/luna68k/conf/Makefile.luna68k:1.21 src/sys/arch/luna68k/conf/Makefile.luna68k:1.22
--- src/sys/arch/luna68k/conf/Makefile.luna68k:1.21	Sat Jul 16 15:52:21 2011
+++ src/sys/arch/luna68k/conf/Makefile.luna68k	Wed Jul 20 12:00:04 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.luna68k,v 1.21 2011/07/16 15:52:21 tsutsui Exp $
+#	$NetBSD: Makefile.luna68k,v 1.22 2011/07/20 12:00:04 tsutsui Exp $
 
 # Makefile for NetBSD
 #
@@ -60,7 +60,7 @@
 
 SYSTEM_LD_HEAD_EXTRA+=; \
 	( cat ${LUNA68K}/conf/kern.ldscript.head ; \
-	  ELF2AOUT=${ELF2AOUT} ${HOST_SH} $S/conf/mkldscript.sh \
+	  OBJDUMP=${OBJDUMP} ${HOST_SH} $S/conf/mkldscript.sh \
 	${SYSTEM_OBJ} ; \
 	  cat ${LUNA68K}/conf/kern.ldscript.tail )  ldscript
 



CVS commit: src/sys/arch/luna68k/conf

2011-07-20 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Wed Jul 20 12:00:04 UTC 2011

Modified Files:
src/sys/arch/luna68k/conf: Makefile.luna68k

Log Message:
Fix thinko.  src/sys/conf/mkldscript.sh requires $OBJDUMP, not $ELF2AOUT.
(note generated faked a.out kernels can still be loaded and work fine)


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/luna68k/conf/Makefile.luna68k

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