Deleted Added
full compact
Makefile (53746) Makefile (54616)
1# $FreeBSD: head/release/Makefile 53746 1999-11-27 14:32:27Z phk $
1# $FreeBSD: head/release/Makefile 54616 1999-12-14 22:41:09Z joerg $
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
4#
5# Where "/some/dir" is the pathname of a directory on a some
6# filesystem with at least 1000MB of free space, "somename" is what
7# you want the release to call itself and, optionally, which CVS "tag"
8# name should be used when checking out the sources to build the release
9# (default is HEAD).

--- 73 unchanged lines hidden (view full) ---

83# Various floppy image parameters.
84#
85BOOTSIZE= 1440
86FIXITSIZE= 1440
87MFSSIZE= 2880
88BIGBOOTSIZE= 2880
89BOOTINODE= 80000
90MFSINODE= 8000
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
4#
5# Where "/some/dir" is the pathname of a directory on a some
6# filesystem with at least 1000MB of free space, "somename" is what
7# you want the release to call itself and, optionally, which CVS "tag"
8# name should be used when checking out the sources to build the release
9# (default is HEAD).

--- 73 unchanged lines hidden (view full) ---

83# Various floppy image parameters.
84#
85BOOTSIZE= 1440
86FIXITSIZE= 1440
87MFSSIZE= 2880
88BIGBOOTSIZE= 2880
89BOOTINODE= 80000
90MFSINODE= 8000
91FIXITINODE= 2000
91FIXITINODE= 4000
92BOOTLABEL= fd1440
93FIXITLABEL= fd1440
94BIGBOOTLABEL= minimum2
95MFSLABEL= minimum2
96
97# overrides.
92BOOTLABEL= fd1440
93FIXITLABEL= fd1440
94BIGBOOTLABEL= minimum2
95MFSLABEL= minimum2
96
97# overrides.
98#.if ${MACHINE_ARCH} == "alpha"
98.if ${MACHINE_ARCH} == "alpha"
99FIXITSIZE= 2880
100FIXITLABEL= minimum2
99FIXITSIZE= 2880
100FIXITLABEL= minimum2
101#.endif
101.endif
102
103ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 -
104
105
106VNDEVICE?= vn0
107
108# Things which may get you into trouble if you change them
109MTREEFILES= ${.CURDIR}/../etc/mtree

--- 405 unchanged lines hidden (view full) ---

515 @cd ${RD}/fixitfd && \
516 mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
517 usr/share/misc
518 @cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \
519 DIR=${RD}/fixitfd/stand ZIP=false
520 @( cd ${RD}/fixitfd/dev && \
521 sed -e '/^PATH/s/^/#/' ${RD}/trees/bin/dev/MAKEDEV > MAKEDEV && \
522 chmod 755 MAKEDEV && \
102
103ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 -
104
105
106VNDEVICE?= vn0
107
108# Things which may get you into trouble if you change them
109MTREEFILES= ${.CURDIR}/../etc/mtree

--- 405 unchanged lines hidden (view full) ---

515 @cd ${RD}/fixitfd && \
516 mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
517 usr/share/misc
518 @cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \
519 DIR=${RD}/fixitfd/stand ZIP=false
520 @( cd ${RD}/fixitfd/dev && \
521 sed -e '/^PATH/s/^/#/' ${RD}/trees/bin/dev/MAKEDEV > MAKEDEV && \
522 chmod 755 MAKEDEV && \
523 sh MAKEDEV all )
523 sh MAKEDEV fixit )
524 @cp ${RD}/trees/bin/etc/spwd.db ${RD}/trees/bin/etc/group \
525 ${RD}/trees/bin/etc/protocols ${RD}/fixitfd/etc
526 @cp ${RD}/trees/bin/usr/share/misc/scsi_modes \
527 ${RD}/fixitfd/usr/share/misc
528 @cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
529 @cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
530 @cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
531 @chmod 555 ${RD}/fixitfd/stand/tar

--- 234 unchanged lines hidden ---
524 @cp ${RD}/trees/bin/etc/spwd.db ${RD}/trees/bin/etc/group \
525 ${RD}/trees/bin/etc/protocols ${RD}/fixitfd/etc
526 @cp ${RD}/trees/bin/usr/share/misc/scsi_modes \
527 ${RD}/fixitfd/usr/share/misc
528 @cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
529 @cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
530 @cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
531 @chmod 555 ${RD}/fixitfd/stand/tar

--- 234 unchanged lines hidden ---