1# $NetBSD: Makefile.ramdisk,v 1.12 2015/10/07 14:09:05 martin Exp $ 2 3.include <bsd.own.mk> 4.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6I386COMMON= ${.CURDIR}/../common 7 8.PATH: ${I386COMMON} 9 10WARNS= 1 11DBG= -Os 12 13CRUNCHBIN= ramdiskbin 14 15# Use ${.CURDIR}/list only if LISTS was not already defined by the caller. 16LISTS?= ${.CURDIR}/list 17LISTS+= ${I386COMMON}/list.ramdisk 18MTREECONF= ${DISTRIBDIR}/common/mtree.common 19IMAGEENDIAN= le 20IMAGEDEPENDS+= ${CRUNCHBIN} \ 21 dot.profile \ 22 ${DESTDIR}/usr/mdec/boot \ 23 ${DESTDIR}/usr/mdec/bootxx_ffsv1 \ 24 ${DESTDIR}/usr/mdec/mbr \ 25 ${DESTDIR}/usr/mdec/mbr_ext \ 26 ${DESTDIR}/usr/mdec/mbr_bootsel \ 27 ${DESTDIR}/usr/mdec/gptmbr.bin \ 28 ${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \ 29 ${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \ 30 ${DISTRIBDIR}/common/services 31PARSELISTENV+= BOOTMODEL=${BOOTMODEL:Q} 32 33# This propogates through to the link of ramdiskbin 34# The map file is useful when trying to prune the image 35LDFLAGS+= -Wl,-Map,${CRUNCHBIN}.map,--cref 36CRUNCHENV += LDFLAGS=${LDFLAGS:Q} 37 38.if defined(USE_SYSINST) 39.if ${USE_SYSINST} != yes 40LISTS+= ${DISTRIBDIR}/common/list.sysinst.${USE_SYSINST} 41.else 42LISTS+= ${DISTRIBDIR}/common/list.sysinst 43.endif 44MAKEFS_FLAGS+= -f 14 45.endif 46 47# Use stubs to eliminate some large stuff from libc 48HACKSRC= ${DISTRIBDIR}/utils/libhack 49.include "${HACKSRC}/Makefile.inc" 50${CRUNCHBIN}: libhack.o 51 52.include "${DISTRIBDIR}/common/Makefile.crunch" 53.include "${DISTRIBDIR}/common/Makefile.makedev" 54.include "${DISTRIBDIR}/common/Makefile.image" 55 56release: 57 58.include <bsd.prog.mk> 59