9c2128ecdd
1) savecore will not access the dump or live-kernel directly. It will always use the kvm-functions. Allowing it to work on kernels that don't have a 1-1 PA-VA mapping. 2) the kvm-lib has some additional functions to accomplish 1 - kvm_dump_mkheader() - kvm_dump_wrtheader() - kvm_dump_inval() 3) the file formats of the dump generated by the kernel and the dump generated by savecore have been changed. The file format now looks like the format produced for 'normal' core dumps. Ports not yet supporting the new kvm-format will be using libkvm.old/ savecore.old for the time being.
21 lines
617 B
Makefile
21 lines
617 B
Makefile
# $NetBSD: Makefile,v 1.18 1996/03/16 10:23:29 leo Exp $
|
|
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
|
|
|
|
SUBDIR= csu libarch libc libcompat libcrypt libcurses libedit libl \
|
|
libm libpcap libresolv librpcsvc libskey libterm libutil liby
|
|
|
|
# XXX Temporarely until all ports are able to use libkvm (leo)
|
|
.if (${MACHINE} == "atari")
|
|
SUBDIR+= libkvm
|
|
.else
|
|
SUBDIR+= libkvm.old
|
|
.endif
|
|
|
|
# XXX Keep telnet(1) and libtelnet from getting out of sync during the build
|
|
# XXX process.
|
|
.if !exists(${.CURDIR}/../domestic/lib/libtelnet) || defined(EXPORTABLE_SYSTEM)
|
|
SUBDIR+=libtelnet
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|