4a9431b465
Most noticeable change is the addition of dhclient, we now prompt if the user wants DHCP autoconfiguration. Also added chio, rcmd, ping6, rtsol, scsictl We now use the cut down versions of: dhclient, ifconfig, ping, ping6 and route The ramdisk has grown by about 200k, however the kernel can take that, we're still a few 100k from the current 5MB limit for cats kernels.
35 lines
952 B
Makefile
35 lines
952 B
Makefile
# $NetBSD: Makefile,v 1.6 2003/03/23 13:43:41 chris Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
|
|
|
IMAGE= ramdisk.fs
|
|
IMAGESIZE= 2100k
|
|
MAKEFS_FLAGS= -f 14
|
|
|
|
WARNS= 1
|
|
|
|
CRUNCHBIN= ramdiskbin
|
|
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
|
|
MTREECONF= ${DISTRIBDIR}/common/mtree.common
|
|
IMAGEENDIAN= le
|
|
MAKEDEVTARGETS= ramdisk
|
|
IMAGEDEPENDS= ${CRUNCHBIN} \
|
|
disktab.preinstall dot.hdprofile dot.profile termcap.mini \
|
|
${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
|
|
${NETBSDSRCDIR}/etc/netconfig ${NETBSDSRCDIR}/etc/protocols \
|
|
${NETBSDSRCDIR}/etc/services
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC= ${DISTRIBDIR}/utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
${CRUNCHBIN}: libhack.o
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
.include "${DISTRIBDIR}/common/Makefile.makedev"
|
|
.include "${DISTRIBDIR}/common/Makefile.image"
|
|
|
|
release:
|
|
|
|
.include <bsd.prog.mk>
|