#
# This make file is used for installing kernel config files, if you do not
# or cannot use the loadable modules
#

KVM		= /usr/kvm/sys
CONFIGDIR	= ${KVM}/`arch -k`/conf
KERNELNAME	= GENERIC
NEWNAME		= "${KERNELNAME}+DP"
PATCH		= patch


all:

install:
	grep PPP ${KVM}/fles.cmn || \
		cat files.cmn >> ${KVM}/conf.common/files.cmn
	cat ${CONFIGDIR}/${KERNELNAME} config > ${CONFIGDIR}/${NEWNAME}
	${PATCH} -d ${KVM}/sun < diffs

clean:

depend:

