summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2006-11-08 23:08:47 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2006-11-08 23:08:47 +0000
commit99267e80e1e4637567cdee4af19d80ec1d3cc2d0 (patch)
tree866e10ea54a4394863e9f2b59a1b5aecd4da33b5 /distrib
parentc88f1f55cb7dfa17edc1348682c8aa8716bf7063 (diff)
Build miniroot filesystem (for dding onto CF)
Diffstat (limited to 'distrib')
-rw-r--r--distrib/landisk/miniroot/Makefile62
1 files changed, 62 insertions, 0 deletions
diff --git a/distrib/landisk/miniroot/Makefile b/distrib/landisk/miniroot/Makefile
new file mode 100644
index 00000000000..ccf6dbfb6e5
--- /dev/null
+++ b/distrib/landisk/miniroot/Makefile
@@ -0,0 +1,62 @@
+
+REV= ${OSrev}
+BSD_RD= bsd.rd
+
+IMAGE= miniroot40.fs
+
+MOUNT_POINT= /mnt
+
+VND?= svnd0
+VND_DEV= /dev/${VND}a
+VND_RDEV= /dev/r${VND}a
+VND_CRDEV= /dev/r${VND}c
+PID!= echo $$$$
+
+DISKTYPE= rdroot2.5M
+#NBLKS= 8192
+NBLKS= 5120
+# minfree, opt, b/i trks, sects, cpg
+NEWFSARGS= -m 0 -o space -c 16 -i 4096
+
+
+.ifndef DESTDIR
+all ${IMAGE}:
+ @echo setenv DESTDIR before making a ramdisk!
+ @false
+.else
+
+${IMAGE}: rd_setup do_files rd_teardown
+
+.endif
+
+do_files:
+ cp ${DESTDIR}/usr/mdec/boot ${MOUNT_POINT}/boot
+ gzip -c < ${.OBJDIR}/../ramdisk/bsd.rd > ${MOUNT_POINT}/bsd.rd
+
+rd_setup:
+ dd if=/dev/zero of=${IMAGE} bs=512 count=${NBLKS}
+ vnconfig -v -c ${VND} ${IMAGE}
+ fdisk -i ${VND}
+ disklabel -w -r ${VND} ${DISKTYPE}
+ disklabel -B -b ${DESTDIR}/usr/mdec/xxboot ${VND}
+ newfs ${NEWFSARGS} ${VND_RDEV}
+ fsck ${VND_RDEV}
+ mount ${VND_DEV} ${MOUNT_POINT}
+
+rd_teardown:
+ @df -i ${MOUNT_POINT}
+ -umount ${MOUNT_POINT}
+ -vnconfig -u ${VND}
+
+
+unconfig:
+ -umount -f ${MOUNT_POINT}
+ -vnconfig -u ${VND}
+
+.PRECIOUS: ${IMAGE}
+
+install:
+ cp ${IMAGE} ${DESTDIR}/snapshot/
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>