blob: ac0c3355c6d9022ef33302dd960b6d714a5b7379 (
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
59
60
61
62
63
64
|
# $OpenBSD: Makefile,v 1.7 2014/11/22 15:02:27 deraadt 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 vnd0 ${TARGET}
disklabel -w vnd0 fakeramdisk
newfs -m 0 /dev/rvnd0a
mount /dev/vnd0a /mnt
showit:
df -ki /mnt
vn_down:
-umount /mnt
-vnconfig -u vnd0
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:
installboot -v vnd0
blank_filesystem:
dd if=/dev/zero of=${TARGET} bs=512 count=5760
.endif
unconfig:
-umount -f /mnt
-vnconfig -u /dev/vnd0a
.ifdef RELEASEDIR
install:
cp ${TARGET} ${RELEASEDIR}
.endif
clean:
rm -f ${TARGET}
.include <bsd.own.mk>
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|