118d2b1d4f
(Sorry for a big commit, I can't separate this into several pieces...) Pls check sys/netinet6/TODO and sys/netinet6/IMPLEMENTATION for details. - sys/kern: do not assume single mbuf, accept chained mbuf on passing data from userland to kernel (or other way round). - "midway" ATM card: ATM PVC pseudo device support, like those done in ALTQ package (ftp://ftp.csl.sony.co.jp/pub/kjc/). - sys/netinet/tcp*: IPv4/v6 dual stack tcp support. - sys/netinet/{ip6,icmp6}.h, sys/net/pfkeyv2.h: IETF document assumes those file to be there so we patch it up. - sys/netinet: IPsec additions are here and there. - sys/netinet6/*: most of IPv6 code sits here. - sys/netkey: IPsec key management code - dev/pci/pcidevs: regen In my understanding no code here is subject to export control so it should be safe.
15 lines
371 B
Makefile
15 lines
371 B
Makefile
# $NetBSD: Makefile,v 1.36 1999/07/01 08:12:45 itojun Exp $
|
|
|
|
SUBDIR= adosfs arch compat dev filecorefs isofs miscfs msdosfs net \
|
|
netatalk netccitt netinet netinet6 netiso netkey netnatm netns \
|
|
nfs ntfs sys ufs uvm vm
|
|
|
|
.if (${MACHINE_ARCH} != "powerpc" && \
|
|
${MACHINE_ARCH} != "mipseb" && ${MACHINE_ARCH} != "mipsel")
|
|
|
|
SUBDIR+= lkm
|
|
|
|
.endif
|
|
|
|
.include <bsd.kinc.mk>
|