blob: c9bbe4ded4839bbd440994f90d38b99e8c651b98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# $OpenBSD: Makefile,v 1.1 2001/10/12 21:55:59 jason Exp $
TOP= ${.CURDIR}/..
.include "${TOP}/Makefile.inc"
TARGET=miniroot${REV}.fs
.ifndef DESTDIR
all ${TARGET}:
@echo setenv DESTDIR before making a ramdisk!
@false
.else
all: ${TARGET}
${TARGET}: vn_up install_files installboot showit vn_down
vn_up: blank_filesystem
vnconfig svnd0 ${TARGET}
disklabel -w svnd0 fakeramdisk
newfs -m 0 /dev/rsvnd0a
mount /dev/svnd0a /mnt
showit:
df -ki /mnt
vn_down:
-umount /mnt
-vnconfig -u svnd0
install_files: bsd.rd ofwboot
bsd.rd:
install -c -m 555 -o root -g wheel \
${.OBJDIR}/../bsd.rd/bsd.rd /mnt/bsd
ofwboot:
install -c -m 555 -o root -g wheel \
${DESTDIR}/usr/mdec/ofwboot /mnt/ofwboot
installboot:
/usr/mdec/installboot -v ${DESTDIR}/usr/mdec/bootblk /dev/svnd0c
blank_filesystem:
dd if=/dev/zero of=${TARGET} bs=512 count=3200
.endif
install:
cp ${TARGET} ${DESTDIR}/snapshot/
clean:
rm -f ${TARGET}
.include <bsd.own.mk>
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|