1 1.45.2.5 yamt # $NetBSD: Makefile.rumpkern,v 1.45.2.5 2010/03/11 15:04:37 yamt Exp $ 2 1.45.2.2 yamt # 3 1.45.2.2 yamt 4 1.45.2.2 yamt .include "${RUMPTOP}/Makefile.rump" 5 1.45.2.2 yamt 6 1.45.2.2 yamt LIB= rump 7 1.45.2.2 yamt 8 1.45.2.2 yamt .PATH: ${RUMPTOP}/librump/rumpkern \ 9 1.45.2.2 yamt ${RUMPTOP}/../kern \ 10 1.45.2.5 yamt ${RUMPTOP}/../uvm \ 11 1.45.2.2 yamt ${RUMPTOP}/../conf \ 12 1.45.2.2 yamt ${RUMPTOP}/../dev \ 13 1.45.2.5 yamt ${RUMPTOP}/../secmodel/suser 14 1.45.2.2 yamt 15 1.45.2.2 yamt # 16 1.45.2.2 yamt # Source modules, first the ones specifically implemented for librump. 17 1.45.2.2 yamt # 18 1.45.2.5 yamt SRCS= rump.c rumpcopy.c emul.c intr.c locks.c ltsleep.c \ 19 1.45.2.5 yamt memalloc.c scheduler.c sleepq.c sysproxy_socket.c \ 20 1.45.2.5 yamt threads.c vm.c 21 1.45.2.5 yamt 22 1.45.2.5 yamt vers.c: ${RUMPTOP}/../conf/newvers.sh ${RUMPTOP}/../conf/osrelease.sh 23 1.45.2.5 yamt ${_MKMSG_CREATE} vers.c 24 1.45.2.5 yamt ${HOST_SH} ${RUMPTOP}/../conf/newvers.sh -i RUMP-ROAST -n 25 1.45.2.5 yamt SRCS+= vers.c 26 1.45.2.5 yamt CLEANFILES+= vers.c version 27 1.45.2.2 yamt 28 1.45.2.2 yamt # stubs 29 1.45.2.2 yamt # 30 1.45.2.5 yamt SRCS+= pmap_stub.c 31 1.45.2.2 yamt 32 1.45.2.2 yamt # autogenerated 33 1.45.2.2 yamt # 34 1.45.2.5 yamt SRCS+= rump_syscalls.c rumpkern_if_wrappers.c 35 1.45.2.2 yamt 36 1.45.2.2 yamt # 37 1.45.2.2 yamt # Rest are from the std kernel sources. 38 1.45.2.2 yamt # 39 1.45.2.2 yamt # sys/kern 40 1.45.2.5 yamt SRCS+= init_sysctl_base.c kern_auth.c kern_descrip.c kern_event.c \ 41 1.45.2.5 yamt kern_hook.c kern_ksyms.c kern_malloc_stdtype.c kern_module.c \ 42 1.45.2.5 yamt kern_mutex_obj.c kern_rate.c kern_stub.c kern_sysctl.c \ 43 1.45.2.5 yamt kern_timeout.c kern_uidinfo.c param.c \ 44 1.45.2.5 yamt sys_descrip.c sys_generic.c sys_pipe.c sys_select.c syscalls.c 45 1.45.2.2 yamt 46 1.45.2.2 yamt # sys/kern subr (misc) 47 1.45.2.5 yamt SRCS+= subr_devsw.c subr_callback.c subr_copy.c subr_device.c \ 48 1.45.2.5 yamt subr_evcnt.c subr_extent.c subr_hash.c subr_humanize.c \ 49 1.45.2.2 yamt subr_iostat.c subr_kobj.c subr_log.c subr_once.c subr_prf.c \ 50 1.45.2.5 yamt subr_specificdata.c subr_time.c subr_workqueue.c subr_xcall.c 51 1.45.2.5 yamt 52 1.45.2.5 yamt # sys/uvm 53 1.45.2.5 yamt SRCS+= uvm_readahead.c 54 1.45.2.2 yamt 55 1.45.2.2 yamt # 4.4BSD secmodel. selection is hardcoded for now 56 1.45.2.5 yamt SRCS+= secmodel_suser.c 57 1.45.2.2 yamt 58 1.45.2.2 yamt # the funny bit. this doesn't really belong here, but helps with the 59 1.45.2.2 yamt # needs of kern_descrip.c. And since it's a fully dynamic interface, 60 1.45.2.2 yamt # it doesn't pull in other gunk. 61 1.45.2.2 yamt SRCS+= vnode_if.c 62 1.45.2.2 yamt 63 1.45.2.2 yamt # sys/dev 64 1.45.2.2 yamt SRCS+= clock_subr.c 65 1.45.2.2 yamt 66 1.45.2.5 yamt # Flip the comment to the other line if you want to use malloc(3) 67 1.45.2.5 yamt # directly instead of the kernel allocators backed by malloc(3)/mmap(2). 68 1.45.2.5 yamt # Libc malloc is a few percent faster, but doesn't emulate all kernel 69 1.45.2.5 yamt # corner cases as well (not to mention if you want to debug the 70 1.45.2.5 yamt # allocators themselves). 71 1.45.2.5 yamt #CPPFLAGS+= -DRUMP_USE_UNREAL_ALLOCATORS 72 1.45.2.5 yamt SRCS+= subr_kmem.c subr_percpu.c subr_pool.c subr_vmem.c 73 1.45.2.2 yamt 74 1.45.2.2 yamt # no shlib_version because this is automatically in sync with lib/librump 75 1.45.2.2 yamt SHLIB_MAJOR= 0 76 1.45.2.2 yamt SHLIB_MINOR= 0 77 1.45.2.2 yamt 78 1.45.2.4 yamt CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs 79 1.45.2.4 yamt CPPFLAGS+= -I${RUMPTOP}/librump/rumpnet -I${RUMPTOP}/librump/rumpdev 80 1.45.2.2 yamt AFLAGS+= -D_LOCORE -Wa,-fatal-warnings 81 1.45.2.2 yamt 82 1.45.2.2 yamt # 83 1.45.2.2 yamt # If archdir exists, it is required to provide: 84 1.45.2.2 yamt # 1) kobj_reloc() and kobj_machdep() 85 1.45.2.5 yamt # 2) rump_cpu_bootstrap() 86 1.45.2.5 yamt # 3) ...? 87 1.45.2.5 yamt # 4) PROFIT! 88 1.45.2.2 yamt # 89 1.45.2.2 yamt 90 1.45.2.2 yamt # 91 1.45.2.2 yamt # Check if we are building compat. In compat mode we need to provide 92 1.45.2.2 yamt # the kernel of our compat target (amd64->i386 & sparc64->sparc), so 93 1.45.2.2 yamt # take MD stuff from the right arch. 94 1.45.2.2 yamt # 95 1.45.2.5 yamt .ifdef MLIBDIR 96 1.45.2.5 yamt ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MLIBDIR} 97 1.45.2.5 yamt LIBKERN_ARCH= ${MLIBDIR} 98 1.45.2.5 yamt .elif exists(${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU}) 99 1.45.2.5 yamt ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU} 100 1.45.2.2 yamt .else 101 1.45.2.2 yamt ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_ARCH} 102 1.45.2.2 yamt .endif 103 1.45.2.2 yamt .if exists(${ARCHDIR}) 104 1.45.2.2 yamt .include "${ARCHDIR}/Makefile.inc" 105 1.45.2.2 yamt .PATH: ${ARCHDIR} 106 1.45.2.2 yamt .else 107 1.45.2.5 yamt SRCS+= kobj_stubs.c rumpcpu_generic.c 108 1.45.2.2 yamt .endif 109 1.45.2.2 yamt 110 1.45.2.2 yamt # include libkern source files 111 1.45.2.2 yamt KERNDIR=${RUMPTOP}/../lib/libkern 112 1.45.2.2 yamt .include "${RUMPTOP}/../lib/libkern/Makefile.libkern" 113 1.45.2.2 yamt 114 1.45.2.2 yamt # Some architectures require a little special massage with atomic 115 1.45.2.2 yamt # compare-and-swap. This is because the kernel version is using 116 1.45.2.2 yamt # instructions or routines unavailable to us in userspace. We 117 1.45.2.2 yamt # use effectively the multiprocessor version of the userspace ops. 118 1.45.2.2 yamt # 119 1.45.2.2 yamt .if ${MACHINE_CPU} == "arm" || ${MACHINE_CPU} == "hppa" \ 120 1.45.2.2 yamt || ${MACHINE_CPU} == "mips" || ${MACHINE_CPU} == "sh3" \ 121 1.45.2.5 yamt || ${MACHINE_CPU} == "vax" || ${MACHINE_ARCH} == "m68000" 122 1.45.2.2 yamt CPPFLAGS+= -I${RUMPTOP}/../../common/lib/libc/atomic 123 1.45.2.2 yamt SRCS+= atomic_cas_generic.c 124 1.45.2.2 yamt .endif 125 1.45.2.2 yamt 126 1.45.2.2 yamt .include <bsd.lib.mk> 127 1.45.2.2 yamt .include <bsd.klinks.mk> 128