Thu Jan 1 19:43:58 2009 UTC ()
Purge multiple kernel opt files.


(pooka)
diff -r1.20 -r1.21 src/sys/rump/Makefile.rump
diff -r1.1 -r0 src/sys/rump/fs/lib/libnfs/opt_compat_netbsd.h
diff -r1.1 -r0 src/sys/rump/fs/lib/libnfs/opt_ddb.h
diff -r1.27 -r1.28 src/sys/rump/librump/rumpkern/Makefile.rumpkern
diff -r1.1 -r1.2 src/sys/rump/librump/rumpkern/opt/opt_ddb.h
diff -r0 -r1.1 src/sys/rump/librump/rumpkern/opt/opt_ipkdb.h
diff -r1.1 -r1.2 src/sys/rump/librump/rumpnet/opt/arp.h
diff -r1.1 -r0 src/sys/rump/librump/rumpnet/opt/opt_ddb.h
diff -r1.1 -r0 src/sys/rump/librump/rumpnet/opt/opt_multiprocessor.h
diff -r1.2 -r1.3 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs
diff -r1.1 -r1.2 src/sys/rump/net/lib/Makefile.inc
diff -r1.1 -r0 src/sys/rump/net/lib/libnet/opt/arp.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnet/opt/opt_atalk.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnet/opt/opt_iso.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnet/opt/opt_mbuftrace.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnet/opt/opt_natm.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnetinet/opt/opt_ddb.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnetinet/opt/opt_inet.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnetinet/opt/opt_ipkdb.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnetinet/opt/opt_iso.h
diff -r1.1 -r0 src/sys/rump/net/lib/libnetinet/opt/opt_pfil_hooks.h

cvs diff -r1.20 -r1.21 src/sys/rump/Makefile.rump (expand / switch to unified diff)

--- src/sys/rump/Makefile.rump 2008/12/30 21:31:10 1.20
+++ src/sys/rump/Makefile.rump 2009/01/01 19:43:57 1.21
@@ -1,32 +1,34 @@ @@ -1,32 +1,34 @@
1# $NetBSD: Makefile.rump,v 1.20 2008/12/30 21:31:10 pooka Exp $ 1# $NetBSD: Makefile.rump,v 1.21 2009/01/01 19:43:57 pooka Exp $
2# 2#
3 3
4WARNS?= 4 4WARNS?= 4
5NOLINT= # kernel code 5NOLINT= # kernel code
6 6
7.include <bsd.own.mk> 7.include <bsd.own.mk>
8 8
9# use kernel ABI instead of rump ABI (needs md code) 9# use kernel ABI instead of rump ABI (needs md code)
10.ifndef(RUMPKMOD) 10.ifndef(RUMPKMOD)
11CPPFLAGS:= -I${RUMPTOP}/include ${CPPFLAGS} 11CPPFLAGS:= -I${RUMPTOP}/include ${CPPFLAGS}
12.endif 12.endif
13 13
14CFLAGS+= -ffreestanding 14CFLAGS+= -ffreestanding
15CPPFLAGS+= -D_RUMPKERNEL # XXX: this should die 15CPPFLAGS+= -D_RUMPKERNEL # XXX: this should die
16CPPFLAGS+= -D_KERNEL -DMULTIPROCESSOR -D_MODULE 16CPPFLAGS+= -D_KERNEL -DMULTIPROCESSOR -D_MODULE
 17CPPFLAGS+= -DMAXUSERS=32
17CPPFLAGS+= -DDIAGNOSTIC 18CPPFLAGS+= -DDIAGNOSTIC
18CPPFLAGS+= -I${.CURDIR} -I. 19CPPFLAGS+= -I${.CURDIR} -I.
19CPPFLAGS+= -I${RUMPTOP}/../../common/include -I${RUMPTOP}/../arch 20CPPFLAGS+= -I${RUMPTOP}/../../common/include -I${RUMPTOP}/../arch
20CPPFLAGS+= -I${RUMPTOP}/include 21CPPFLAGS+= -I${RUMPTOP}/include
 22CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern/opt
21CPPFLAGS+= -nostdinc -I${RUMPTOP}/.. 23CPPFLAGS+= -nostdinc -I${RUMPTOP}/..
22#CPPFLAGS+= -DDEBUG 24#CPPFLAGS+= -DDEBUG
23 25
24RUMPKERNEL= This is NetBSD and I am the rump. Good evening. 26RUMPKERNEL= This is NetBSD and I am the rump. Good evening.
25 27
26# workaround: evbppc is not a well-defined arch 28# workaround: evbppc is not a well-defined arch
27.if (${MACHINE} == "evbppc") 29.if (${MACHINE} == "evbppc")
28CPPFLAGS+= -DPPC_OEA 30CPPFLAGS+= -DPPC_OEA
29.endif 31.endif
30 32
31# If an options are changed, trigger a rebuild 33# If an options are changed, trigger a rebuild
32${SRCS:S/.c/.o/g}: ${RUMPTOP}/Makefile.rump 34${SRCS:S/.c/.o/g}: ${RUMPTOP}/Makefile.rump

File Deleted: src/sys/rump/fs/lib/libnfs/Attic/opt_compat_netbsd.h

File Deleted: src/sys/rump/fs/lib/libnfs/Attic/opt_ddb.h

cvs diff -r1.27 -r1.28 src/sys/rump/librump/rumpkern/Makefile.rumpkern (expand / switch to unified diff)

--- src/sys/rump/librump/rumpkern/Makefile.rumpkern 2009/01/01 19:07:43 1.27
+++ src/sys/rump/librump/rumpkern/Makefile.rumpkern 2009/01/01 19:43:57 1.28
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.rumpkern,v 1.27 2009/01/01 19:07:43 pooka Exp $ 1# $NetBSD: Makefile.rumpkern,v 1.28 2009/01/01 19:43:57 pooka Exp $
2# 2#
3 3
4.include "${RUMPTOP}/Makefile.rump" 4.include "${RUMPTOP}/Makefile.rump"
5 5
6LIB= rump 6LIB= rump
7LDFLAGS+= -Wl,--wrap=malloc 7LDFLAGS+= -Wl,--wrap=malloc
8 8
9.PATH: ${RUMPTOP}/librump/rumpkern \ 9.PATH: ${RUMPTOP}/librump/rumpkern \
10 ${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern \ 10 ${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern \
11 ${RUMPTOP}/../conf ${RUMPTOP}/../dev \ 11 ${RUMPTOP}/../conf ${RUMPTOP}/../dev \
12 ${RUMPTOP}/../../common/lib/libutil \ 12 ${RUMPTOP}/../../common/lib/libutil \
13 ${RUMPTOP}/../../common/lib/libutil \ 13 ${RUMPTOP}/../../common/lib/libutil \
14 ${RUMPTOP}/../../common/lib/libc/gen \ 14 ${RUMPTOP}/../../common/lib/libc/gen \
@@ -59,27 +59,26 @@ SRCS+= snprintb.c rb.c heapsort.c @@ -59,27 +59,26 @@ SRCS+= snprintb.c rb.c heapsort.c
59#CPPFLAGS+= -DRUMP_USE_REAL_KMEM 59#CPPFLAGS+= -DRUMP_USE_REAL_KMEM
60#SRCS+= subr_kmem.c subr_vmem.c 60#SRCS+= subr_kmem.c subr_vmem.c
61 61
62.if ${MACHINE_ARCH} == "vax" 62.if ${MACHINE_ARCH} == "vax"
63.PATH: ${RUMPTOP}/../lib/libkern/arch/vax 63.PATH: ${RUMPTOP}/../lib/libkern/arch/vax
64SRCS+= blkset.S 64SRCS+= blkset.S
65.endif 65.endif
66 66
67# no shlib_version because this is automatically in sync with lib/librump 67# no shlib_version because this is automatically in sync with lib/librump
68SHLIB_MAJOR= 0 68SHLIB_MAJOR= 0
69SHLIB_MINOR= 0 69SHLIB_MINOR= 0
70 70
71CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern 71CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
72CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern/opt -DMAXUSERS=32 
73CPPFLAGS+= -I${RUMPTOP}/librump/rumpnet -I${RUMPTOP}/librump/rumpvfs 72CPPFLAGS+= -I${RUMPTOP}/librump/rumpnet -I${RUMPTOP}/librump/rumpvfs
74CFLAGS+= -Wno-pointer-sign 73CFLAGS+= -Wno-pointer-sign
75 74
76# 75#
77# If archdir exists, it is required to provide: 76# If archdir exists, it is required to provide:
78# 1) kobj_reloc() and kobj_machdep() 77# 1) kobj_reloc() and kobj_machdep()
79# 2) ...? 78# 2) ...?
80# 3) PROFIT! 79# 3) PROFIT!
81# 80#
82ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_ARCH} 81ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_ARCH}
83.if exists(${ARCHDIR}) 82.if exists(${ARCHDIR})
84.include "${ARCHDIR}/Makefile.inc" 83.include "${ARCHDIR}/Makefile.inc"
85.PATH: ${ARCHDIR} 84.PATH: ${ARCHDIR}

cvs diff -r1.1 -r1.2 src/sys/rump/librump/rumpkern/opt/Attic/opt_ddb.h (expand / switch to unified diff)

--- src/sys/rump/librump/rumpkern/opt/Attic/opt_ddb.h 2007/08/08 09:06:13 1.1
+++ src/sys/rump/librump/rumpkern/opt/Attic/opt_ddb.h 2009/01/01 19:43:57 1.2

File Added: src/sys/rump/librump/rumpkern/opt/Attic/opt_ipkdb.h
/*	$NetBSD: opt_ipkdb.h,v 1.1 2009/01/01 19:43:57 pooka Exp $	*/

/* dummy */

cvs diff -r1.1 -r1.2 src/sys/rump/librump/rumpnet/opt/Attic/arp.h (expand / switch to unified diff)

--- src/sys/rump/librump/rumpnet/opt/Attic/arp.h 2008/10/15 13:00:40 1.1
+++ src/sys/rump/librump/rumpnet/opt/Attic/arp.h 2009/01/01 19:43:57 1.2

File Deleted: src/sys/rump/librump/rumpnet/opt/Attic/opt_ddb.h

File Deleted: src/sys/rump/librump/rumpnet/opt/Attic/opt_multiprocessor.h

cvs diff -r1.2 -r1.3 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs (expand / switch to unified diff)

--- src/sys/rump/librump/rumpvfs/Makefile.rumpvfs 2008/12/19 00:57:24 1.2
+++ src/sys/rump/librump/rumpvfs/Makefile.rumpvfs 2009/01/01 19:43:57 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.rumpvfs,v 1.2 2008/12/19 00:57:24 pooka Exp $ 1# $NetBSD: Makefile.rumpvfs,v 1.3 2009/01/01 19:43:57 pooka Exp $
2# 2#
3 3
4.include "${RUMPTOP}/Makefile.rump" 4.include "${RUMPTOP}/Makefile.rump"
5 5
6LIB= rumpvfs 6LIB= rumpvfs
7 7
8.PATH: ${RUMPTOP}/librump/rumpvfs \ 8.PATH: ${RUMPTOP}/librump/rumpvfs \
9 ${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern \ 9 ${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern \
10 ${RUMPTOP}/../miscfs/genfs ${RUMPTOP}/../miscfs/syncfs 10 ${RUMPTOP}/../miscfs/genfs ${RUMPTOP}/../miscfs/syncfs
11 11
12# 12#
13# Source modules, first the ones specifically implemented for librump. 13# Source modules, first the ones specifically implemented for librump.
14#  14#
@@ -24,19 +24,18 @@ SRCS+= vfs_bio.c vfs_cache.c vfs_cwd.c v @@ -24,19 +24,18 @@ SRCS+= vfs_bio.c vfs_cache.c vfs_cwd.c v
24# sys/miscfs 24# sys/miscfs
25SRCS+= genfs_vfsops.c genfs_vnops.c sync_subr.c 25SRCS+= genfs_vfsops.c genfs_vnops.c sync_subr.c
26 26
27# sys/kern bufq 27# sys/kern bufq
28SRCS+= subr_bufq.c bufq_disksort.c bufq_fcfs.c bufq_priocscan.c \ 28SRCS+= subr_bufq.c bufq_disksort.c bufq_fcfs.c bufq_priocscan.c \
29 bufq_readprio.c 29 bufq_readprio.c
30 30
31SRCS+= rumpvnode_if.c 31SRCS+= rumpvnode_if.c
32 32
33# no shlib_version because this is automatically in sync with lib/librump 33# no shlib_version because this is automatically in sync with lib/librump
34SHLIB_MAJOR= 0 34SHLIB_MAJOR= 0
35SHLIB_MINOR= 0 35SHLIB_MINOR= 0
36 36
37CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern/opt -DMAXUSERS=32 
38CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern 37CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
39CFLAGS+= -Wno-pointer-sign 38CFLAGS+= -Wno-pointer-sign
40 39
41.include <bsd.lib.mk> 40.include <bsd.lib.mk>
42.include <bsd.klinks.mk> 41.include <bsd.klinks.mk>

cvs diff -r1.1 -r1.2 src/sys/rump/net/lib/Makefile.inc (expand / switch to unified diff)

--- src/sys/rump/net/lib/Makefile.inc 2008/10/02 21:59:19 1.1
+++ src/sys/rump/net/lib/Makefile.inc 2009/01/01 19:43:58 1.2
@@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
1# $NetBSD: Makefile.inc,v 1.1 2008/10/02 21:59:19 pooka Exp $ 1# $NetBSD: Makefile.inc,v 1.2 2009/01/01 19:43:58 pooka Exp $
2# 2#
3 3
4RUMPTOP= ${.CURDIR}/../../.. 4RUMPTOP= ${.CURDIR}/../../..
 5CPPFLAGS+= -I${RUMPTOP}/librump/rumpnet/opt
5 6
6.include "${RUMPTOP}/Makefile.rump" 7.include "${RUMPTOP}/Makefile.rump"

File Deleted: src/sys/rump/net/lib/libnet/opt/Attic/arp.h

File Deleted: src/sys/rump/net/lib/libnet/opt/Attic/opt_atalk.h

File Deleted: src/sys/rump/net/lib/libnet/opt/Attic/opt_iso.h

File Deleted: src/sys/rump/net/lib/libnet/opt/Attic/opt_mbuftrace.h

File Deleted: src/sys/rump/net/lib/libnet/opt/Attic/opt_natm.h

File Deleted: src/sys/rump/net/lib/libnetinet/opt/Attic/opt_ddb.h

File Deleted: src/sys/rump/net/lib/libnetinet/opt/Attic/opt_inet.h

File Deleted: src/sys/rump/net/lib/libnetinet/opt/Attic/opt_ipkdb.h

File Deleted: src/sys/rump/net/lib/libnetinet/opt/Attic/opt_iso.h

File Deleted: src/sys/rump/net/lib/libnetinet/opt/Attic/opt_pfil_hooks.h