blob: 9698cc27ff6c3012d9b3f493994dd732dd010c4f (
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
89
90
91
92
93
94
95
|
# $OpenBSD: Makefile,v 1.38 2019/04/28 15:21:49 deraadt Exp $
REV= ${OSrev}
TOP= ${.CURDIR}/..
IMAGE= mr.fs
CRUNCHCONF?= instbin.conf
CRUNCHCONFS?= ${.CURDIR}/../common/crunch.conf
LISTS= ${.CURDIR}/list
UTILS?= ${.CURDIR}/../../miniroot
MTREE= ${UTILS}/mtree.conf
DISKTYPE= rdroot
MAKEFSARGS_RD= -o disklabel=${DISKTYPE},minfree=0,density=4096
.ifndef DESTDIR
all ${IMAGE}:
@echo setenv DESTDIR before making a ramdisk!
@false
.else
# mix config is not needed.
all: bsd.rd cd
bsd.rd: ${IMAGE} bsd
cp bsd bsd.rd
rdsetroot bsd.rd ${IMAGE}
cd: bsd.rd
-rm -rf ${.OBJDIR}/cd-dir/
-@mkdir -p ${.OBJDIR}/cd-dir/${OSREV}/macppc/
cp bsd.rd ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd
strip -R .SUNW_ctf ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd
gzip -9n ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd
mv ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd.gz ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd
# On HFS, doing the following means COPIES of the files.. therefore
# we skip doing so.
# ln ${.OBJDIR}/cd-dir/${OSREV}/macppc/bsd.rd ${.OBJDIR}/cd-dir/bsd.rd
# ln ${.OBJDIR}/cd-dir/bsd.rd ${.OBJDIR}/cd-dir/bsd
cp ${.CURDIR}/../../../sys/arch/macppc/stand/tbxidata/bsd.tbxi \
${.OBJDIR}/cd-dir/${OSREV}/macppc
cp ${DESTDIR}/usr/mdec/ofwboot ${.OBJDIR}/cd-dir/
mkhybrid -v -v -r -part -hfs \
-hfs-bless ${.OBJDIR}/cd-dir/${OSREV}/macppc \
-map ${.CURDIR}/../../../gnu/usr.sbin/mkhybrid/src/more.mapping \
-A "OpenBSD ${OSREV} macppc bootonly CD" \
-P "Copyright (c) `date +%Y` Theo de Raadt, The OpenBSD project" \
-p "Theo de Raadt <deraadt@openbsd.org>" \
-V "OpenBSD/macppc ${OSREV} boot-only CD" \
-o ${.OBJDIR}/cd${OSrev}.iso ${.OBJDIR}/cd-dir
${IMAGE}: instbin
rm -rf $@.d
install -d -o root -g wheel $@.d
mtree -def ${MTREE} -p $@.d -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} REV=${REV} \
TARGDIR=$@.d UTILS=${UTILS} RELEASEDIR=${RELEASEDIR} \
sh ${UTILS}/runlist.sh ${LISTS}
rm $@.d/instbin
makefs ${MAKEFSARGS_RD} $@ $@.d
vnconfig -v mr.fs > vnd
df -i /dev/`cat vnd`a
vnconfig -u `cat vnd`
rm -f vnd
.endif
bsd:
cd ${TOP}/../../sys/arch/macppc/compile/RAMDISK && \
su ${BUILDUSER} -c '${MAKE} config && ${MAKE} clean && exec ${MAKE}'
cp -p ${TOP}/../../sys/arch/macppc/compile/RAMDISK/obj/bsd bsd
instbin.mk instbin.cache instbin.c: ${CRUNCHCONF}
crunchgen -E -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib ${.ALLSRC}
instbin: instbin.mk instbin.cache instbin.c
${MAKE} -f instbin.mk SRCLIBDIR=${.CURDIR}/../../../lib all
${CRUNCHCONF}: ${LISTS}
awk -f ${UTILS}/makeconf.awk ${LISTS} > instbin.conf
clean cleandir:
/bin/rm -f *.core ${IMAGE} instbin instbin.mk instbin.cache \
lib*.a lib*.olist instbin.map *.o *.lo *.c bsd bsd.rd cd${REV}.iso
rm -rf cd-dir ${IMAGE}.d
.ifdef RELEASEDIR
install:
cp bsd.rd cd${REV}.iso ${RELEASEDIR}
.endif
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|