blob: 7737793abdc307b5c1cbf76490f5ac05bafb5a45 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# $OpenBSD: Makefile.inc,v 1.23 2019/04/29 15:56:26 deraadt Exp $
IMAGE= mr.fs
CRUNCHCONF?= ${.CURDIR}/../common/instbin.conf
LISTS?= ${.CURDIR}/list
UTILS?= ${.CURDIR}/../../miniroot
MOUNT_POINT= /mnt
MTREE= ${UTILS}/mtree.conf
XNAME?= floppy
FS?= ${XNAME}${OSrev}.fs
LISTFLOPPY?= ${.CURDIR}/../common/list_floppy
FLOPPYSIZE?= 144
FLOPPYSECS?= 18
FLOPPYTYPE?= floppy3
all: ${FS}
${FS}: bsd.rd
dd if=/dev/zero of=${FS} bs=10k count=${FLOPPYSIZE}
vnconfig -v ${FS} > vnd
disklabel -w `cat vnd` ${FLOPPYTYPE}
newfs -m 0 -o space -i 524288 -c ${FLOPPYSIZE} /dev/r`cat vnd`a
mount /dev/`cat vnd`a ${MOUNT_POINT}
CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} UTILS=${UTILS} \
RELEASEDIR=${RELEASEDIR} sh ${UTILS}/runlist.sh ${LISTFLOPPY}
installboot -v `cat vnd`
df -i ${MOUNT_POINT}
umount ${MOUNT_POINT}
vnconfig -u `cat vnd`
rm -f vnd
DISKTYPE?= rdroot
NBLKS?= 3510
# minfree, opt, b/i trks, sects, cpg
NEWFSARGS= -m 0 -o space -i 4096
${IMAGE}: instbin rd_setup do_files rd_teardown
rd_setup: instbin
dd if=/dev/zero of=${IMAGE} bs=512 count=${NBLKS}
vnconfig -v ${IMAGE} > vnd
disklabel -w `cat vnd` ${DISKTYPE}
newfs ${NEWFSARGS} /dev/r`cat vnd`a
mount /dev/`cat vnd`a ${MOUNT_POINT}
rd_teardown:
df -i ${MOUNT_POINT}
-umount ${MOUNT_POINT}
-vnconfig -u `cat vnd`
unconfig:
-umount -f ${MOUNT_POINT}
-[ -f vnd ] && vnconfig -u `cat vnd` && rm -f vnd
.PRECIOUS: ${IMAGE}
.ifdef RELEASEDIR
install:
.ifndef NOBSDRD
cp bsd.rd ${RELEASEDIR}
chmod a+r ${RELEASEDIR}/bsd.rd
.endif
cp ${FS} ${RELEASEDIR}
.endif
instbin.mk instbin.cache instbin.c: ${CRUNCHCONF}
crunchgen -E -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib \
-c instbin.c -e instbin -m instbin.mk ${CRUNCHCONF}
instbin: instbin.mk instbin.cache instbin.c
${MAKE} -f instbin.mk SRCLIBDIR=${.CURDIR}/../../../lib all
do_files:
mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u
CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} OSrev=${OSrev} \
TARGDIR=${MOUNT_POINT} UTILS=${UTILS} RELEASEDIR=${RELEASEDIR} \
sh ${UTILS}/runlist.sh ${LISTS}
rm ${MOUNT_POINT}/instbin
clean cleandir:
/bin/rm -f *.core ${IMAGE} instbin instbin.mk instbin*.cache \
lib*.a lib*.olist instbin.map \
*.o *.lo *.c bsd bsd.rd bsd.gz bsd.strip floppy*.fs
.include <bsd.subdir.mk>
|