summaryrefslogtreecommitdiff
path: root/distrib/vax/common/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'distrib/vax/common/Makefile.inc')
-rw-r--r--distrib/vax/common/Makefile.inc69
1 files changed, 69 insertions, 0 deletions
diff --git a/distrib/vax/common/Makefile.inc b/distrib/vax/common/Makefile.inc
new file mode 100644
index 00000000000..11f6c6ecdb9
--- /dev/null
+++ b/distrib/vax/common/Makefile.inc
@@ -0,0 +1,69 @@
+# $OpenBSD: Makefile.inc,v 1.1 2002/04/25 22:10:28 deraadt Exp $
+
+# TOP is assumed to be defined by Makefile including this one.
+
+CBIN= instbin
+COMMONDIR= ${TOP}/common
+UTILS= ${TOP}/../miniroot
+
+MOUNT_POINT?= /mnt
+VND?= svnd0
+VND_DEV= /dev/${VND}a
+VND_RDEV= /dev/r${VND}a
+IMAGE?= miniroot-${REV}.fs
+BOOTSYS= bootroot-${REV}.fs
+MDEC= ${DESTDIR}/usr/mdec
+
+LISTS= ${COMMONDIR}/list ${.CURDIR}/list
+CRUNCHCONF= ${COMMONDIR}/${CBIN}.conf
+MTREE= ${COMMONDIR}/mtree.conf
+
+all: ${CBIN} bootroot
+ dd if=/dev/zero of=${IMAGE} bs=64k count=32
+ vnconfig -v -c ${VND} ${IMAGE}
+ disklabel -w ${VND} miniroot
+ newfs -O -m 0 -o space -i 8192 ${VND_RDEV}
+ mount ${VND_DEV} ${MOUNT_POINT}
+ mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u
+ TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
+ TARGDIR=${MOUNT_POINT} UTILS=${UTILS} \
+ sh ${UTILS}/runlist.sh ${LISTS}
+ @echo ""
+ @df -i ${MOUNT_POINT}
+ @echo ""
+ umount -f ${MOUNT_POINT}
+ vnconfig -u ${VND}
+
+bootroot: xxboot boot
+ dd if=/dev/zero of=${BOOTSYS} bs=512 count=8192
+ vnconfig -v -c ${VND} ${BOOTSYS}
+ disklabel -w ${VND} bootroot
+ newfs -O -m 0 -o space -i 8192 ${VND_RDEV}
+ dd if=xxboot of=${VND_RDEV} count=16
+ mount ${VND_DEV} ${MOUNT_POINT}
+ cp boot ${MOUNT_POINT}
+ umount -f ${MOUNT_POINT}
+ vnconfig -u ${VND}
+
+xxboot boot:
+ (cd /usr/src/sys/arch/vax/boot;make)
+ cp /usr/src/sys/arch/vax/boot/xxboot/xxboot .
+ cp /usr/src/sys/arch/vax/boot/boot/boot .
+
+
+unconfig:
+ -umount -f ${MOUNT_POINT}
+ -vnconfig -u ${VND} ${IMAGE}
+ -/bin/rm -f ${IMAGE}
+
+${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF}
+ crunchgen -D ${TOP}/../../ -L ${DESTDIR}/usr/lib ${.ALLSRC}
+
+${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c
+ make -f ${CBIN}.mk
+
+clean cleandir:
+ /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache *.o *.lo *.c
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>