32 lines
707 B
PHP
32 lines
707 B
PHP
|
#
|
||
|
# $NetBSD: Makefile.inc,v 1.1.1.1 1995/10/08 23:07:45 gwr Exp $
|
||
|
#
|
||
|
|
||
|
# TOP is assumed to be defined by Makefile including this one.
|
||
|
|
||
|
CBIN?= instbin
|
||
|
COMMONDIR= ${TOP}/common
|
||
|
|
||
|
MOUNT_POINT?= /mnt
|
||
|
BDEV?= /dev/rd0
|
||
|
DISKTYPE?= xxx-disktype
|
||
|
IMAGE?= xxx-${REV}.fs
|
||
|
MDEC= ${DESTDIR}/usr/mdec
|
||
|
|
||
|
LISTS= ${.CURDIR}/list
|
||
|
MTREE= ${.CURDIR}/mtree.conf
|
||
|
|
||
|
fsimage:
|
||
|
newfs -O -m 0 -o space -i 3052 -c 60 ${BDEV} ${DISKTYPE}
|
||
|
mount ${BDEV} ${MOUNT_POINT}
|
||
|
mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u
|
||
|
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
|
||
|
TARGDIR=${MOUNT_POINT} sh ${TOP}/Runlist.sh ${LISTS}
|
||
|
@echo ""
|
||
|
@df -i ${MOUNT_POINT}
|
||
|
@echo ""
|
||
|
-umount ${MOUNT_POINT}
|
||
|
|
||
|
.include <bsd.obj.mk>
|
||
|
.include <bsd.subdir.mk>
|