summaryrefslogtreecommitdiffstats
path: root/release/Makefile
blob: f8ac200f6c7f436953ca02c13f290f4f54112292 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
#	$Id: Makefile,v 1.113 1995/02/28 20:32:29 phk Exp $
#
# How to roll a release:
#
#	make release CHROOTDIR=<lots of disk> [ RELEASETAG=something ]
#
# As far as I know, this will roll everything nicely into the "stage"
# directory.  I still need to write the two rules to move that into
# the "cdrom" and "ftp" directories.
# I also need to "make ports" and install those, but I'm not going to do
# that on a 14.4 line just yet...

# Things which without too much trouble can be considered variables
EXTRADISTRIBUTIONS=	secure games manpages proflibs dict info
CPIO1=			etc/services etc/protocols
CPIO2=  scripts/miscfuncs.sh scripts/instdist.sh scripts/netinst.sh \
	scripts/adduser.sh scripts/bininst.sh scripts/setup.sh

FDDEVICE=		fd0
FDCYLS=			80
FDCYLSIZE=		15k
FDLABEL=		fd1200
MNT=			/mnt

ZIPNSPLIT=		gzip --no-name -9 -c | split -b 240640 -


# Things which will get you into trouble if you change them
DISTRIBUTIONS=		bin ${EXTRADISTRIBUTIONS}                      
MTREEFILES=		${.CURDIR}/../etc/mtree
RD=			${RELEASEDIR}/stage

release:
.if !defined(CHROOTDIR)
	@echo "To make a release you must set CHROOTDIR" && false
.endif
	-mkdir ${CHROOTDIR}
	chflags -R noschg ${CHROOTDIR}/.
	rm -rf ${CHROOTDIR}/*
	cd ${.CURDIR}/../etc ; ${MAKE} distrib-dirs DESTDIR=${CHROOTDIR}
	cd ${.CURDIR}/../etc ; ${MAKE} distribution DESTDIR=${CHROOTDIR}
	cd ${.CURDIR}/.. ; ${MAKE} install DESTDIR=${CHROOTDIR}
	echo "#!/bin/sh"			> ${CHROOTDIR}/mk
	echo "set -ex"				>> ${CHROOTDIR}/mk
	echo "cd /usr/src"			>> ${CHROOTDIR}/mk
	echo "make world"			>> ${CHROOTDIR}/mk
	echo "cd sbin/sysinstall"		>> ${CHROOTDIR}/mk
	echo "make obj"				>> ${CHROOTDIR}/mk
	echo "cd ../../release"			>> ${CHROOTDIR}/mk
	echo "make obj"				>> ${CHROOTDIR}/mk
	echo "make doRELEASE"			>> ${CHROOTDIR}/mk
	echo "RELEASEDIR=/R"			>> ${CHROOTDIR}/etc/make.conf
.if !defined(RELEASETAG)
	cd ${CHROOTDIR}/usr ; cvs co -P src
.else
	cd ${CHROOTDIR}/usr ; cvs export -r ${RELEASETAG} src
.endif
	chmod 755 ${CHROOTDIR}/mk
	chroot ${CHROOTDIR} /mk

clean:
	rm -rf cpio_crunch boot_crunch release.[0-9] release.1[0]

# Clean out ${RELEASEDIR} and make the directory structure.
release.1:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	-mkdir ${RELEASEDIR}
	chflags -R noschg ${RELEASEDIR}/.
	rm -rf ${RELEASEDIR}/*
	mkdir ${RD}
	mkdir ${RD}/bootfd
	mkdir ${RD}/bootfd/dev
	mkdir ${RD}/bootfd/mnt
	mkdir ${RD}/bootfd/stand
	mkdir ${RD}/cpiofd
	mkdir ${RD}/cpiofd/stand
	mkdir ${RD}/fixitfd
	mkdir ${RD}/fixitfd/stand
	mkdir ${RD}/fixitfd/sbin
	mkdir ${RD}/fixitfd/mnt
	mkdir ${RD}/floppies
	mkdir ${RD}/dists
	mkdir ${RD}/dists/bin
	mkdir ${RD}/tarballs
	mkdir ${RD}/tarballs/bin
	cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/dists/bin
	for i in ${EXTRADISTRIBUTIONS} ; do \
		mkdir ${RD}/dists/$$i ; \
		mkdir ${RD}/tarballs/$$i ; \
		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
		    -p ${RD}/dists/$$i > /dev/null ; \
		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
		    -p ${RD}/dists/$$i/usr > /dev/null ; \
		mtree -deU -f ${MTREEFILES}/BSD.var.dist \
		    -p ${RD}/dists/$$i/var > /dev/null ; \
	done
	touch release.1

# Install the system into the various distributions.
release.2:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	cd ${.CURDIR}/.. ; make distribute DISTDIR=${RD}/dists
	touch release.2

# Make and install a couple of kernels we need.
release.3:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	cd ${.CURDIR}/../sys/i386/conf ; \
		config GENERIC ; \
		config BOOTFLP
	cd ${.CURDIR}/../sys/compile/GENERIC ; \
		make depend ; \
		make kernel ; \
		install -c kernel ${RD}/dists/bin/kernel.GENERIC
	ln -f ${RD}/dists/bin/kernel.GENERIC ${RD}/cpiofd/kernel
	cd ${.CURDIR}/../sys/compile/BOOTFLP ; \
		make depend ; \
		make kernel ; \
		install -s -c kernel ${RD}/bootfd/kernel
	ln -f ${RD}/bootfd/kernel ${RD}/fixitfd/kernel
	touch release.3

# Make and install the two crunched binaries which live on the floppies.
# You are not supposed to like this :-)
release.4:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	for j in boot cpio fixit; do \
		rm -rf $${j}_crunch ; \
		mkdir $${j}_crunch ; \
		( cd $${j}_crunch ; \
		crunchgen ${.CURDIR}/$${j}_crunch.conf ; \
		${MAKE} -f $${j}_crunch.mk objs exe NOCRYPT=yes ) ; \
		gzip -9 < $${j}_crunch/$${j}_crunch \
			> ${RD}/$${j}fd/stand/$${j}_crunch ; \
		rm -rf $${j}_crunch ; \
		chmod 555 ${RD}/$${j}fd/stand/$${j}_crunch ; \
		for i in `crunchgen -l ${.CURDIR}/$${j}_crunch.conf` ; do \
			ln -f ${RD}/$${j}fd/stand/$${j}_crunch \
				${RD}/$${j}fd/stand/$$i ; \
		done ; \
	done
	touch release.4

# Fix up the distributions.
release.5:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	if [ -d ${RD}/dists/bin/usr/share/man ] ; then \
		rm -rf ${RD}/dists/manpages/usr/share/man ;\
		mv ${RD}/dists/bin/usr/share/man \
			${RD}/dists/manpages/usr/share/man ;\
	fi
	if [ -d ${RD}/dists/bin/usr/games ] ; then \
		rm -rf ${RD}/dists/games/usr/games ;\
		mv ${RD}/dists/bin/usr/games \
			${RD}/dists/games/usr/games ;\
	fi
	if [ -d ${RD}/dists/bin/usr/share/games ] ; then \
		rm -rf ${RD}/dists/games/usr/share/games ;\
		mv ${RD}/dists/bin/usr/share/games \
			${RD}/dists/games/usr/share/games ;\
	fi
	if [ -d ${RD}/dists/bin/var/games ] ; then \
		rm -rf ${RD}/dists/games/var/games ;\
		mv ${RD}/dists/bin/var/games \
			${RD}/dists/games/var/games ;\
	fi
	if [ -d ${RD}/dists/bin/usr/share/dict ] ; then \
		rm -rf ${RD}/dists/dict/usr/share/dict ;\
		mv ${RD}/dists/bin/usr/share/dict \
			${RD}/dists/dict/usr/share/dict ;\
	fi
	for i in airport birthtoken flowers na.phone zipcodes ; do \
		if [ -f ${RD}/dists/bin/usr/share/misc/$$i ] ; then \
			mv ${RD}/dists/bin/usr/share/misc/$$i \
				${RD}/dists/dict/usr/share/misc ; \
		fi ; \
	done
	for i in ${RD}/dists/bin/usr/lib/*_p.a ; do \
		if [ -f $$i ] ; then \
			mv $$i \
				${RD}/dists/proflibs/usr/lib ; \
		fi ; \
	done
	-cd ${RD}/dists ; \
		find ${EXTRADISTRIBUTIONS} -depth -type d -print | xargs rmdir

	touch release.5

# Complete the bootfd 
release.6:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	( cd ${RD}/dists/bin/dev ; \
		ls console tty ttyv1 null zero \
		sd[0123][a-h] wd[0123][a-h] fd[01] \
		rsd[0123][a-h] rwd[0123][a-h] rfd[01] | \
	cpio -dump ${RD}/bootfd/dev )
	install -c ${.CURDIR}/../COPYRIGHT ${RD}/bootfd
	cd ${RD}/dists/bin/usr/share/FAQ ; \
		install -c diskspace.FAQ ${RD}/bootfd/DISKSPACE.FAQ ;\
		install -c RELNOTES.FreeBSD ${RD}/bootfd ;\
		install -c TROUBLESHOOTING ${RD}/bootfd ;\
		install -c README-2.0 ${RD}/bootfd/README
	touch ${RD}/bootfd/this_is_boot_flp
	cd ${.CURDIR} ; ${MAKE} doFLOPPY FLOPPY=boot
	touch release.6

# Complete the cpiofd directory
# XXX a lot of stuff is missing here...
release.7:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	cd ${RD}/dists/bin ; ls ${CPIO1} | cpio -dump ${RD}/cpiofd
	cd ${.CURDIR} ; ls ${CPIO2} | cpio -dumpv ${RD}/cpiofd
	chmod 755 ${RD}/cpiofd/scripts/*
	cp ${RD}/dists/bin/usr/sbin/tzsetup ${RD}/cpiofd
	( cd ${RD}/cpiofd ; \
		( rm -f OK ; find . -print ; touch OK ; echo OK ) | \
		cpio -H newc -oa | gzip -9 -c | dd conv=osync ) \
		> ${RD}/floppies/cpio.flp
	gzip -1 -c < ${RD}/floppies/cpio.flp > ${RD}/floppies/cpio.flp.gz
	touch release.7

# Make binary tarballs
release.8:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	rm -rf ${RD}/tarballs
	mkdir -p ${RD}/tarballs
	@for i in ${DISTRIBUTIONS} ; \
	do \
		if [ -d ${RD}/dists/$${i} ] ; then \
			cd ${.CURDIR} ; \
				$(MAKE) doTARBALL SD=${RD}/dists/$${i} \
					TD=$$i ARG="." ; \
			( cd ${RD}/tarballs/$${i}; \
			sh -e ${.CURDIR}/scripts/mkchecksums.sh ) ; \
			cp ${.CURDIR}/scripts/extract_$${i}.sh \
				${RD}/tarballs/$${i}/extract.sh;\
			echo "$${i} distribution is finished."; \
		fi ; \
	done                                                 
	touch release.8


# Make source tarballs
release.9:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	@cd ${.CURDIR} ; $(MAKE) doTARBALL SD=/usr/src TD=src/base ARG="[A-Z]*"
	@for i in bin etc games gnu include lib libexec release sbin \
		secure lkm eBones share sys usrbin usrsbin ; do \
		if [ -d /usr/src/$$i ] ; then \
			cd ${.CURDIR} ; \
				$(MAKE) doTARBALL SD=/usr/src \
					TD=src/$$i ARG="$$i" ; \
		fi ; \
	done
	( cd ${RD}/tarballs/src; \
	sh -e ${.CURDIR}/scripts/mkchecksums.sh ) ; \
	cp ${.CURDIR}/scripts/extract_src.sh \
		${RD}/tarballs/src/extract.sh;\
	echo "src distribution is finished."; \
	touch release.9

# Complete the fixitfd
release.10:
	@cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR
	( cd ${RD}/dists/bin/dev ; \
		ls console tty ttyv1 null zero \
		sd[0123][a-h] wd[0123][a-h] fd[01] \
		rsd[0123][a-h] rwd[0123][a-h] rfd[01] | \
	cpio -dump ${RD}/fixitfd/dev )
	ln -f ${RD}/fixitfd/stand/init ${RD}/fixitfd/sbin
	cd ${.CURDIR} ; ${MAKE} doFLOPPY FLOPPY=fixit
	touch release.10


# Various "subroutine" and other supporting targets.

doTARBALL:
.if !defined(SD)
	@echo "SD undefined in doTARBALL" ; exit 1
.endif               
.if !defined(TD)
	@echo "TB undefined in doTARBALL" ; exit 1
.endif               
.if !defined(ARG)
	@echo "ARG undefined in doTARBALL" ; exit 1
.endif               
	rm -rf ${RD}/tarballs/${TD}
	mkdir -p ${RD}/tarballs/${TD}
	( cd ${SD} ; \
		echo rolling ${TD} tarball ;\
		tar --exclude CVS -cf - ${ARG} | \
		${ZIPNSPLIT} ${RD}/tarballs/${TD}/`basename ${TD}`. )

doRELEASE:  release.1 release.2 release.3 release.4 release.5 release.6 \
		release.7 release.8 release.9 release.10
	@echo "Release done"

ckRELEASEDIR:
.if !defined(RELEASEDIR)
	@echo "To make a release RELEASEDIR must be defined" && false
.endif               

doFLOPPY:
.if !defined(FLOPPY)
	@echo "FLOPPY undefined in doFLOPPY" ; exit 1
.endif
.if !defined(VNDEVICE)
	-umount /dev/${FDDEVICE}
	-umount ${MNT}
	echo y | fdformat /dev/r${FDDEVICE}
	disklabel -w -r -B \
		-b ${RD}/dists/bin/usr/mdec/fdboot \
		-s ${RD}/dists/bin/usr/mdec/bootfd \
		/dev/r${FDDEVICE} ${FDLABEL}
	newfs -c 80 -b 4096 -f 512 -i 4096 -m 0 -t 0 -u 0 \
		-o space -T ${FDLABEL} /dev/r${FDDEVICE}
	mount -o async /dev/${FDDEVICE} ${MNT}
	cd ${RD}/${FLOPPY}fd ; find . -print | cpio -dumpv ${MNT}
	sync
	umount ${MNT}
	fsck /dev/r${FDDEVICE}
	dd if=/dev/r${FDDEVICE} of=${RD}/floppies/${FLOPPY}.tmp \
		bs=${FDCYLSIZE} count=${FDCYLS}
	mv ${RD}/floppies/${FLOPPY}.tmp ${RD}/floppies/${FLOPPY}.flp
	gzip -9 -c < ${RD}/floppies/${FLOPPY}.flp \
		> ${RD}/floppies/${FLOPPY}.flp.gz
.endif

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud