ac60400580
This was tested using a custom INSTALL kernel. The current one is >4Mb which the cats firmware can't currently boot. We need to decide what needs to be removed from INSTALL.
40 lines
982 B
Makefile
40 lines
982 B
Makefile
# $NetBSD: Makefile,v 1.1 2002/04/11 16:33:59 skrll Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${_SRC_TOP_}/distrib/Makefile.inc"
|
|
|
|
IMAGE= ramdisk.fs
|
|
IMAGESIZE= 1900k
|
|
MAKEFS_FLAGS= -f 10
|
|
|
|
WARNS= 1
|
|
|
|
CRUNCHBIN= ramdiskbin
|
|
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
|
|
MTREECONF= ${DISTRIBDIR}/common/mtree.common
|
|
IMAGEENDIAN= le
|
|
MAKEDEVTARGETS= ramdisk
|
|
PARSELISTENV= PWD_MKDB=${PWD_MKDB:Q}
|
|
IMAGEDEPENDS= ${CRUNCHBIN} \
|
|
disktab.preinstall dot.hdprofile dot.profile termcap.vt100 \
|
|
${_SRC_TOP_}/etc/group ${_SRC_TOP_}/etc/master.passwd \
|
|
${_SRC_TOP_}/etc/netconfig ${_SRC_TOP_}/etc/protocols \
|
|
${_SRC_TOP_}/etc/services
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC= ${DISTRIBDIR}/utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
${CRUNCHBIN}: libhack.o
|
|
|
|
|
|
realall: ${IMAGE}
|
|
|
|
release:
|
|
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
.include "${DISTRIBDIR}/common/Makefile.makedev"
|
|
.include "${DISTRIBDIR}/common/Makefile.image"
|
|
|
|
.include <bsd.prog.mk>
|