blob: 98a763629e8bf12b36de0bf2f6b855acfaf33211 (
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
|
# $OpenBSD: Makefile,v 1.15 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
bsd.rd: ${IMAGE} bsd
cp bsd bsd.rd
rdsetroot bsd.rd ${IMAGE}
${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
.endif
bsd:
cd ${TOP}/../../sys/arch/loongson/compile/RAMDISK && \
su ${BUILDUSER} -c '${MAKE} config && ${MAKE} clean && exec ${MAKE}'
cp -p ${TOP}/../../sys/arch/loongson/compile/RAMDISK/obj/bsd bsd
instbin.mk instbin.cache instbin.c: ${CRUNCHCONF}
crunchgen -EM -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 ${RELEASEDIR}
.endif
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|