1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1994-09-23 08:28:25 +00:00
|
|
|
#
|
2003-02-21 22:37:18 +00:00
|
|
|
# make release [BUILDNAME=somename] CHROOTDIR=/some/dir CVSROOT=/cvs/dir \
|
|
|
|
# [RELEASETAG=tag]
|
2001-02-19 14:23:49 +00:00
|
|
|
#
|
|
|
|
# Where "/some/dir" is the pathname of a directory on a some filesystem with
|
|
|
|
# at least 1000MB of free space, "somename" is what you want the release to
|
|
|
|
# call itself, "/cvs/dir" is where our source repo resides and, optionally,
|
|
|
|
# which CVS "tag" name should be used when checking out the sources to build
|
|
|
|
# the release (default is HEAD).
|
1995-02-25 22:08:48 +00:00
|
|
|
#
|
2003-02-21 22:37:18 +00:00
|
|
|
# Please note: the md(4) driver must be present in the kernel
|
2003-03-23 04:23:10 +00:00
|
|
|
# (either by being compiled in or available as a kld(4) module),
|
2004-08-06 08:49:51 +00:00
|
|
|
# otherwise the target 'release.8' and possibly others will fail.
|
1996-11-14 14:23:53 +00:00
|
|
|
#
|
2002-03-17 07:34:12 +00:00
|
|
|
# Note: If you add options to this file, please keep release(7) updated!
|
|
|
|
#
|
1997-05-24 20:15:13 +00:00
|
|
|
# Set these, release builder!
|
1997-06-01 08:06:48 +00:00
|
|
|
#
|
|
|
|
# Fixed version:
|
2005-07-11 15:50:29 +00:00
|
|
|
#BUILDNAME=7.0-CURRENT
|
1997-06-01 08:06:48 +00:00
|
|
|
#
|
|
|
|
# Automatic SNAP versioning:
|
1998-07-09 08:26:38 +00:00
|
|
|
DATE != date +%Y%m%d
|
2005-07-11 15:50:29 +00:00
|
|
|
BASE = 7.0
|
1997-09-04 11:54:01 +00:00
|
|
|
BUILDNAME?=${BASE}-${DATE}-SNAP
|
1997-06-01 08:06:48 +00:00
|
|
|
#
|
1996-05-16 03:20:52 +00:00
|
|
|
#CHROOTDIR=/junk/release
|
1999-05-23 20:01:20 +00:00
|
|
|
# If this is a -stable snapshot, then set
|
2005-07-11 15:50:29 +00:00
|
|
|
#RELEASETAG=RELENG_6
|
2002-11-02 06:00:06 +00:00
|
|
|
#
|
2003-07-24 17:28:52 +00:00
|
|
|
# To test a release with a source tree containing patches and
|
|
|
|
# other work. This tree will get copied instead of getting the
|
|
|
|
# src/ tree from a CVS checkout. For "rerelease", this will NOT
|
|
|
|
# be copied; cvs update will be used instead.
|
|
|
|
#EXTSRCDIR=/usr/src
|
|
|
|
#
|
2006-01-02 13:29:58 +00:00
|
|
|
# To use a checked-out ports collection directory instead of
|
|
|
|
# checking out from a local CVS repository, set this option.
|
|
|
|
#EXTPORTSDIR=/usr/ports
|
|
|
|
#
|
2002-11-02 06:00:06 +00:00
|
|
|
# To add other options to the CVS subcommands (co,up), set
|
2002-04-27 14:23:32 +00:00
|
|
|
#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
|
2000-04-06 10:00:20 +00:00
|
|
|
#
|
2002-11-02 06:00:06 +00:00
|
|
|
# To add other options to the CVS command, set
|
|
|
|
#CVSARGS="-lfq"
|
|
|
|
#
|
|
|
|
# To prefix the cvs command
|
|
|
|
#CVSPREFIX="/usr/bin/time"
|
|
|
|
#
|
2003-07-24 17:28:52 +00:00
|
|
|
# Where the CVS repository is
|
|
|
|
#CVSROOT="/home/ncvs"
|
|
|
|
#
|
2000-04-06 10:00:20 +00:00
|
|
|
# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
|
|
|
|
# are building an official release. Otherwise, we are building for
|
|
|
|
# a branch.
|
|
|
|
.if defined(RELEASETAG)
|
2001-07-18 05:40:30 +00:00
|
|
|
ISRELEASE!= expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
|
2000-04-06 10:00:20 +00:00
|
|
|
.if ${ISRELEASE} != 0
|
|
|
|
# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
|
|
|
|
AUXRELEASETAG!= echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
|
2000-11-12 11:04:11 +00:00
|
|
|
DOCRELEASETAG?= ${AUXRELEASETAG}
|
|
|
|
PORTSRELEASETAG?= ${AUXRELEASETAG}
|
2000-04-06 10:00:20 +00:00
|
|
|
.endif
|
|
|
|
.endif
|
1995-04-23 23:06:36 +00:00
|
|
|
|
2000-07-20 03:07:29 +00:00
|
|
|
# If you want to pass flags to the world build such as -j X, use
|
|
|
|
# WORLD_FLAGS. Similarly, you can specify make flags for kernel
|
|
|
|
# builds via KERNEL_FLAGS.
|
2003-07-26 06:47:40 +00:00
|
|
|
#WORLD_FLAGS=-j4
|
|
|
|
#KERNEL_FLAGS=-j4
|
2000-07-20 03:07:29 +00:00
|
|
|
|
2002-04-30 11:50:01 +00:00
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
|
|
.if ${TARGET_ARCH} == ${MACHINE_ARCH}
|
|
|
|
TARGET?= ${MACHINE}
|
|
|
|
.else
|
|
|
|
TARGET?= ${TARGET_ARCH}
|
|
|
|
.endif
|
2003-07-04 14:27:06 +00:00
|
|
|
CROSSENV= TARGET_ARCH=${TARGET_ARCH} TARGET=${TARGET}
|
|
|
|
CROSSMAKE= ${MAKE} ${CROSSENV}
|
2002-05-14 13:45:50 +00:00
|
|
|
NATIVEMAKE= ${MAKE} TARGET_ARCH=${MACHINE_ARCH} TARGET=${MACHINE}
|
2002-04-30 11:50:01 +00:00
|
|
|
|
1998-04-15 18:28:27 +00:00
|
|
|
# If you are using a local CVS repository with components stored in
|
|
|
|
# non-standard modules, override these on the make commandline or
|
|
|
|
# in the environment.
|
|
|
|
RELEASESRCMODULE?= src
|
|
|
|
RELEASEDOCMODULE?= doc
|
|
|
|
RELEASEPORTSMODULE?= ports
|
|
|
|
|
2001-05-04 19:50:34 +00:00
|
|
|
# Uncomment this to disable the doc.1 target. Docs normally require
|
|
|
|
# the ports tree, so NOPORTS can be set together with NODOC in order
|
|
|
|
# to have neither ports or docs. If only NOPORTS is set to YES, but
|
|
|
|
# docs are still desired, the DOMINIMALDOCPORTS logic below will only
|
|
|
|
# install the ports that are minimally required for the docs. This is
|
|
|
|
# intended as a compromise, less disk space is required than for using
|
2002-07-03 18:04:10 +00:00
|
|
|
# the entire ports collection (and much less time due to the huge number
|
2001-05-04 19:50:34 +00:00
|
|
|
# of directories it would create), but still quite a bit as well as some
|
|
|
|
# CPU cycles (some of the programs are C++, and things like ghostscript
|
|
|
|
# belong to the required ports nevertheless).
|
|
|
|
#
|
2001-05-30 17:05:15 +00:00
|
|
|
# Setting this also disables building of release note documentation
|
|
|
|
# (RELNOTESng).
|
1999-08-05 01:28:00 +00:00
|
|
|
#NODOC= YES
|
1998-09-15 13:15:18 +00:00
|
|
|
#NOPORTS= YES
|
2001-04-27 21:28:02 +00:00
|
|
|
|
2004-09-07 14:26:02 +00:00
|
|
|
# When retrieving ports using the pkg_add -r method, set your proxies to these.
|
|
|
|
# src/release/${arch}/mkisoimages.sh can use these.
|
|
|
|
#HTTP_PROXY?= www.example.com
|
|
|
|
#FTP_PROXY?= ftp.example.com
|
|
|
|
|
2005-03-23 15:01:54 +00:00
|
|
|
# When creating ISO images, point ${CD_PACKAGE_TREE} to a directory containing
|
|
|
|
# the package split by an earlier invocation of the 'package-split' target.
|
|
|
|
#CD_PACKAGE_TREE= /path/to/pkg
|
2004-09-07 14:26:02 +00:00
|
|
|
|
|
|
|
# Extra source tarballs; each argument is a pair of source dir and
|
|
|
|
# distribution name. The dist name should not exceed 7 characters
|
|
|
|
# (another "s" for "source" will be prepended).
|
|
|
|
#EXTRA_SRC= games/fortune fortune
|
|
|
|
|
2002-08-14 16:50:50 +00:00
|
|
|
# Modify this definition if you want the release notes
|
2001-05-25 18:01:34 +00:00
|
|
|
# and other release documentation in a language other than English.
|
2002-08-14 16:50:50 +00:00
|
|
|
RELNOTES_LANG?= en_US.ISO8859-1
|
2001-04-27 21:28:02 +00:00
|
|
|
|
2001-05-04 19:50:34 +00:00
|
|
|
# As an alternative to installing the entire ports collection (which
|
|
|
|
# can take a huge amount of time, in particular on slower disks),
|
|
|
|
# setting ${MINIMALDOCPORTS} allows to install and build just those
|
|
|
|
# ports that are really required for getting the docs up & running.
|
|
|
|
.if defined(NOPORTS) && !defined(NODOC)
|
|
|
|
DOMINIMALDOCPORTS= YES
|
|
|
|
.include "Makefile.inc.docports"
|
2002-11-15 22:03:25 +00:00
|
|
|
RELEASEPORTSMODULE= ${MINIMALDOCPORTS}
|
2001-05-04 19:50:34 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# Helper variable
|
|
|
|
.if defined(NOPORTS)
|
|
|
|
.if !defined(DOMINIMALDOCPORTS) || ${DOMINIMALDOCPORTS} != "YES"
|
|
|
|
NOPORTSATALL= YES
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
2004-09-24 02:10:06 +00:00
|
|
|
#
|
|
|
|
# Doing 'make index' in /usr/ports requires Perl.
|
|
|
|
MAKEINDEXPORTS= lang/perl5.8
|
2002-09-23 14:33:47 +00:00
|
|
|
# By default, documentation (Handbook, FAQ, etc.) is built for all
|
|
|
|
# the languages. To speed up building, set the DOC_LANG to just
|
|
|
|
# the languages you need. (The language for the release notes is
|
|
|
|
# controlled by the RELNOTES_LANG variable above.)
|
|
|
|
#DOC_LANG= en_US.ISO8859-1
|
1998-12-18 05:13:01 +00:00
|
|
|
DOCPORTS= textproc/docproj
|
2002-02-03 07:00:37 +00:00
|
|
|
# Set this to wherever the distfiles required by release procedures.
|
|
|
|
.if defined(DOCDISTFILES)
|
|
|
|
# Respect DOCDISTFILES which is used before.
|
|
|
|
RELEASEDISTFILES?= ${DOCDISTFILES}
|
|
|
|
.else
|
|
|
|
RELEASEDISTFILES?= ${.CURDIR}/../../ports/distfiles
|
|
|
|
.endif
|
2000-06-04 04:41:41 +00:00
|
|
|
# Set this to 1 if you want -P to be used for automatic keyboard detection
|
|
|
|
# on the boot floppy. WARNING: Breaks on some Athlon (K7) motherboards.
|
|
|
|
AUTO_KEYBOARD_DETECT?= 0
|
|
|
|
|
2001-05-30 17:05:15 +00:00
|
|
|
.if !defined(NODOC)
|
2004-09-17 19:28:46 +00:00
|
|
|
DIST_DOCS_ARCH_INDEP= readme errata
|
2001-04-27 21:28:02 +00:00
|
|
|
DIST_DOCS_ARCH_DEP= installation relnotes hardware
|
|
|
|
.endif
|
1998-11-03 03:31:22 +00:00
|
|
|
|
1995-02-25 22:08:48 +00:00
|
|
|
# Things which without too much trouble can be considered variables
|
2002-04-23 22:16:41 +00:00
|
|
|
# BASE_DISTS are special in that they get full /etc installation sets.
|
1997-06-21 15:41:55 +00:00
|
|
|
#
|
2005-06-16 18:16:14 +00:00
|
|
|
OTHER_DISTS?= catpages manpages games proflibs dict info doc ${ARCH_DISTS}
|
2002-04-23 22:16:41 +00:00
|
|
|
BASE_DISTS?= base
|
2005-06-16 18:16:14 +00:00
|
|
|
.if ${TARGET_ARCH} == "amd64"
|
|
|
|
ARCH_DISTS?= lib32
|
|
|
|
.endif
|
2004-08-29 18:27:00 +00:00
|
|
|
DISTRIBUTIONS?= ${BASE_DISTS} ${OTHER_DISTS}
|
1995-03-17 04:54:13 +00:00
|
|
|
|
2006-03-08 18:02:32 +00:00
|
|
|
#
|
|
|
|
# Build and package both GENERIC and SMP kernels if the target
|
|
|
|
# has both configuration files. Otherwise only GENERIC is done.
|
|
|
|
#
|
2006-03-09 17:55:08 +00:00
|
|
|
.if exists(${.CURDIR}/../sys/${TARGET}/conf/SMP)
|
2006-03-11 18:59:16 +00:00
|
|
|
KERNELS_BASE?= GENERIC SMP
|
|
|
|
.else
|
|
|
|
KERNELS_BASE?= GENERIC
|
2006-03-08 18:02:32 +00:00
|
|
|
.endif
|
|
|
|
|
1995-04-19 17:42:32 +00:00
|
|
|
# mountpoint for filesystems.
|
|
|
|
MNT= /mnt
|
1995-04-20 06:48:31 +00:00
|
|
|
|
1998-10-07 03:13:36 +00:00
|
|
|
# Various floppy image parameters.
|
|
|
|
#
|
2000-10-31 07:39:07 +00:00
|
|
|
|
2004-08-16 08:56:50 +00:00
|
|
|
.undef MAKE_FLOPPIES
|
2002-04-30 11:50:01 +00:00
|
|
|
.if ${TARGET_ARCH} == "i386"
|
2004-08-16 08:56:50 +00:00
|
|
|
MAKE_FLOPPIES= true
|
2002-04-30 11:50:01 +00:00
|
|
|
.if ${TARGET} == "pc98"
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
SMALLFLOPPYSIZE= 1200
|
|
|
|
SMALLFLOPPYSPLITSIZE= 1152
|
|
|
|
SMALLFLOPPYLABEL= fd1200
|
2004-02-03 22:05:55 +00:00
|
|
|
SPLIT_MFSROOT=
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
.endif
|
|
|
|
FLOPPYSIZE= 1440
|
|
|
|
FLOPPYSPLITSIZE= 1392
|
|
|
|
FLOPPYINODE= 40000
|
2004-01-29 19:01:58 +00:00
|
|
|
FLOPPYLABEL= fd1440
|
1998-10-14 10:58:12 +00:00
|
|
|
BOOTINODE= 80000
|
2004-01-29 19:01:58 +00:00
|
|
|
MFSSIZE= 4320
|
2000-06-05 13:17:23 +00:00
|
|
|
MFSINODE= 8000
|
2000-10-31 07:39:07 +00:00
|
|
|
MFSLABEL= minimum3
|
2002-04-30 11:50:01 +00:00
|
|
|
.elif ${TARGET_ARCH} == "alpha"
|
2004-08-16 08:56:50 +00:00
|
|
|
MAKE_FLOPPIES= true
|
2004-03-25 20:37:59 +00:00
|
|
|
FLOPPYSIZE= 1440
|
|
|
|
FLOPPYSPLITSIZE= 1392
|
|
|
|
FLOPPYINODE= 40000
|
|
|
|
FLOPPYLABEL= fd1440
|
|
|
|
BOOTINODE= 80000
|
2002-03-30 02:31:17 +00:00
|
|
|
MFSSIZE= 4320
|
2000-10-31 07:39:07 +00:00
|
|
|
MFSINODE= 8000
|
2001-11-20 20:27:54 +00:00
|
|
|
MFSLABEL= auto
|
2004-03-25 20:37:59 +00:00
|
|
|
SPLIT_MFSROOT=
|
2002-10-16 05:30:56 +00:00
|
|
|
.elif ${TARGET_ARCH} == "sparc64"
|
2003-04-23 09:01:35 +00:00
|
|
|
DISKLABEL= sunlabel
|
2002-10-16 05:30:56 +00:00
|
|
|
MFSSIZE= 4096
|
|
|
|
MFSINODE= 8192
|
|
|
|
MFSLABEL= auto
|
2003-08-08 21:00:57 +00:00
|
|
|
MINIROOT=
|
2002-11-04 00:50:01 +00:00
|
|
|
.elif ${TARGET_ARCH} == "ia64"
|
2004-01-29 19:01:58 +00:00
|
|
|
MFSSIZE= 8192
|
2002-11-04 00:50:01 +00:00
|
|
|
MFSINODE= 8192
|
|
|
|
MFSLABEL= auto
|
2005-03-04 20:37:20 +00:00
|
|
|
SEPARATE_LIVEFS=
|
2003-06-26 00:55:33 +00:00
|
|
|
.elif ${TARGET_ARCH} == "amd64"
|
2006-01-04 18:02:56 +00:00
|
|
|
MAKE_FLOPPIES= true
|
|
|
|
FLOPPYSIZE= 1440
|
|
|
|
FLOPPYSPLITSIZE= 1392
|
|
|
|
FLOPPYINODE= 40000
|
|
|
|
FLOPPYLABEL= fd1440
|
|
|
|
BOOTINODE= 80000
|
2003-06-26 00:55:33 +00:00
|
|
|
MFSSIZE= 4096
|
|
|
|
MFSINODE= 8192
|
|
|
|
MFSLABEL= auto
|
2006-01-30 14:24:31 +00:00
|
|
|
SPLIT_MFSROOT=
|
2004-08-18 11:11:46 +00:00
|
|
|
.elif ${TARGET_ARCH} == "powerpc"
|
|
|
|
DISKLABEL= ""
|
|
|
|
MFSSIZE= 4096
|
|
|
|
MFSINODE= 8192
|
|
|
|
MFSLABEL= auto
|
2005-05-23 03:14:56 +00:00
|
|
|
SEPARATE_LIVEFS=
|
1999-12-14 22:41:09 +00:00
|
|
|
.endif
|
2004-08-16 10:25:43 +00:00
|
|
|
.if defined(NO_FLOPPIES)
|
|
|
|
.undef MAKE_FLOPPIES
|
|
|
|
.endif
|
1998-10-07 03:13:36 +00:00
|
|
|
|
2003-05-17 19:16:28 +00:00
|
|
|
.if exists(/sbin/bsdlabel)
|
|
|
|
DISKLABEL?= bsdlabel
|
|
|
|
.else
|
2003-04-23 09:01:35 +00:00
|
|
|
DISKLABEL?= disklabel
|
2003-05-17 19:16:28 +00:00
|
|
|
.endif
|
2003-04-23 09:01:35 +00:00
|
|
|
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
ZIPNSPLIT= gzip --no-name -9 -c | split -b 1392k -
|
1998-10-07 03:13:36 +00:00
|
|
|
|
1997-06-21 15:41:55 +00:00
|
|
|
# Things which may get you into trouble if you change them
|
1995-02-25 22:08:48 +00:00
|
|
|
MTREEFILES= ${.CURDIR}/../etc/mtree
|
2001-08-20 21:22:01 +00:00
|
|
|
_R?= /R
|
1999-09-16 08:44:22 +00:00
|
|
|
RD= ${_R}/stage
|
2001-12-28 17:21:28 +00:00
|
|
|
RND= ${RD}/release.doc
|
1999-09-16 08:44:22 +00:00
|
|
|
FD= ${_R}/ftp
|
|
|
|
CD= ${_R}/cdrom
|
2003-08-02 18:21:02 +00:00
|
|
|
CD_BOOT= ${CD}/bootonly
|
1997-04-12 21:55:53 +00:00
|
|
|
CD_DISC1= ${CD}/disc1
|
1997-03-12 02:31:12 +00:00
|
|
|
CD_DISC2= ${CD}/disc2
|
2005-03-23 15:01:54 +00:00
|
|
|
.if defined(SEPARATE_LIVEFS)
|
|
|
|
CD_LIVEFS= ${CD}/livefs
|
2005-03-02 22:46:07 +00:00
|
|
|
.else
|
|
|
|
CD_LIVEFS= ${CD_DISC1}
|
2004-09-30 22:59:47 +00:00
|
|
|
.endif
|
2005-03-02 22:46:07 +00:00
|
|
|
_MK?= ${CHROOTDIR}/mk
|
2004-09-30 22:59:47 +00:00
|
|
|
|
1998-01-28 04:05:10 +00:00
|
|
|
# Where the bootstrap ports (see DOCPORTS) get installed.
|
|
|
|
LOCALDIR= /usr/local/bin
|
|
|
|
|
2003-08-08 21:00:57 +00:00
|
|
|
.if ${TARGET} != ${MACHINE} && ${DISKLABEL} == "bsdlabel"
|
2003-04-23 09:01:35 +00:00
|
|
|
DOFS_SH= ${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ${TARGET}
|
2002-11-05 18:06:01 +00:00
|
|
|
.else
|
2003-04-23 09:01:35 +00:00
|
|
|
DOFS_SH= ${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ""
|
2002-11-05 18:06:01 +00:00
|
|
|
.endif
|
|
|
|
|
2003-08-06 08:09:40 +00:00
|
|
|
CRUNCH_TARGETS= boot
|
|
|
|
.if ${TARGET_ARCH} == "i386"
|
|
|
|
CRUNCH_TARGETS+=fixit
|
|
|
|
.if ${TARGET} == "pc98"
|
|
|
|
CRUNCH_TARGETS+=fixit-small
|
|
|
|
.endif
|
2002-10-16 05:30:56 +00:00
|
|
|
.endif
|
1995-05-20 23:33:14 +00:00
|
|
|
|
2004-08-16 08:56:50 +00:00
|
|
|
.if defined(MAKE_FLOPPIES)
|
2004-03-25 20:37:59 +00:00
|
|
|
EXTRAS= floppies.1
|
|
|
|
.if ${TARGET_ARCH} == "i386"
|
|
|
|
EXTRAS+= floppies.2
|
|
|
|
.endif
|
|
|
|
EXTRAS+= floppies.3
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
.endif
|
|
|
|
EXTRAS+= ftp.1
|
2002-11-15 20:51:27 +00:00
|
|
|
.if !defined(NOCDROM)
|
2005-03-02 22:46:07 +00:00
|
|
|
EXTRAS+= cdrom.1 cdrom.2 cdrom.3
|
2001-07-23 09:01:46 +00:00
|
|
|
.if defined(MAKE_ISOS)
|
|
|
|
EXTRAS+= iso.1
|
2003-05-05 05:29:10 +00:00
|
|
|
.endif
|
2004-01-29 19:01:58 +00:00
|
|
|
.if ${TARGET} == "pc98"
|
2006-05-16 14:22:37 +00:00
|
|
|
BOOTABLE="-G"
|
2003-07-23 20:53:37 +00:00
|
|
|
.else
|
2001-11-25 16:43:45 +00:00
|
|
|
BOOTABLE="-b"
|
|
|
|
.endif
|
2001-07-23 09:01:46 +00:00
|
|
|
.endif
|
1997-06-22 17:21:59 +00:00
|
|
|
|
|
|
|
.if !defined(NODOC)
|
2001-05-30 17:05:15 +00:00
|
|
|
DOCREL= doc.1 doc.2
|
1997-06-22 17:21:59 +00:00
|
|
|
.endif
|
|
|
|
|
2005-03-21 19:17:48 +00:00
|
|
|
.if !make(release) && !make(rerelease) && !make(package-split)
|
2003-07-04 14:27:06 +00:00
|
|
|
BINMAKE!= cd ${.CURDIR}/..; ${MAKE} -V BINMAKE
|
|
|
|
WMAKEENV!= cd ${.CURDIR}/..; \
|
|
|
|
${BINMAKE} ${CROSSENV} -f Makefile.inc1 -V WMAKEENV
|
|
|
|
WMAKE= ${WMAKEENV} ${BINMAKE}
|
2003-07-30 14:33:32 +00:00
|
|
|
.endif
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
|
2002-11-15 22:03:25 +00:00
|
|
|
CVS_SRCARGS= -P
|
|
|
|
.if defined(RELEASETAG)
|
|
|
|
CVS_SRCARGS+= -r ${RELEASETAG}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CVS_DOCARGS= -P
|
|
|
|
.if defined(DOCRELEASETAG)
|
|
|
|
CVS_DOCARGS+= -r ${DOCRELEASETAG}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CVS_PORTSARGS= -P
|
|
|
|
.if defined(PORTSRELEASETAG)
|
|
|
|
CVS_PORTSARGS+= -r ${PORTSRELEASETAG}
|
|
|
|
.endif
|
|
|
|
|
2003-07-23 14:40:51 +00:00
|
|
|
WORLDDIR?= ${.CURDIR}/..
|
|
|
|
|
2003-02-21 22:37:18 +00:00
|
|
|
release rerelease:
|
1997-06-29 18:07:01 +00:00
|
|
|
.if !defined(CHROOTDIR) || !defined(BUILDNAME) || !defined(CVSROOT)
|
|
|
|
@echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
|
1995-02-26 01:35:32 +00:00
|
|
|
.endif
|
2001-05-04 19:50:34 +00:00
|
|
|
.if defined(NOPORTSATALL) && !defined(NODOC)
|
2000-07-14 18:03:32 +00:00
|
|
|
@echo "Ports are required for building the docs. Either set NODOC or"
|
2001-05-04 19:50:34 +00:00
|
|
|
@echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
|
2000-07-14 18:03:32 +00:00
|
|
|
@exit 1
|
|
|
|
.endif
|
2004-07-15 04:52:57 +00:00
|
|
|
.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
|
|
|
|
.for p in ${LOCAL_PATCHES}
|
|
|
|
.if !exists(${p})
|
|
|
|
@echo "The patch file ${p} does not exist!"
|
|
|
|
@exit 1
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
.if defined(LOCAL_SCRIPT) && !exists(${LOCAL_SCRIPT})
|
|
|
|
@echo "The local script ${LOCAL_SCRIPT} does not exist!"
|
|
|
|
@exit 1
|
|
|
|
.endif
|
1996-01-08 22:13:50 +00:00
|
|
|
.if make(release)
|
1995-05-13 19:51:57 +00:00
|
|
|
.if exists(${CHROOTDIR})
|
1998-06-07 21:53:01 +00:00
|
|
|
# The first command will fail on a handful of files that have their schg
|
|
|
|
# flags set. But it greatly speeds up the next two commands.
|
2004-09-08 06:05:19 +00:00
|
|
|
# NB: clear any vestigial devfs mount, just in case
|
2002-10-19 16:44:16 +00:00
|
|
|
-umount ${CHROOTDIR}/dev > /dev/null 2>&1
|
1999-09-19 02:05:52 +00:00
|
|
|
-rm -rf ${CHROOTDIR} 2>/dev/null
|
2005-01-13 08:29:51 +00:00
|
|
|
-chflags -R 0 ${CHROOTDIR}/.
|
1995-12-30 21:15:45 +00:00
|
|
|
-rm -rf ${CHROOTDIR}
|
1995-05-13 19:51:57 +00:00
|
|
|
.endif
|
1999-09-16 08:44:22 +00:00
|
|
|
mkdir -p ${CHROOTDIR}
|
2002-05-27 10:59:41 +00:00
|
|
|
@echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`"
|
2006-03-18 21:37:05 +00:00
|
|
|
cd ${WORLDDIR} && ${NATIVEMAKE} -DWITHOUT_GAMES -DWITHOUT_HTML -DWITHOUT_LIB32 \
|
|
|
|
-DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE installworld DESTDIR=${CHROOTDIR}
|
2005-03-02 14:57:45 +00:00
|
|
|
cd ${WORLDDIR} && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR}
|
1999-03-31 11:18:52 +00:00
|
|
|
if [ -f /etc/resolv.conf ]; then \
|
|
|
|
cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \
|
|
|
|
fi
|
2002-11-17 13:35:12 +00:00
|
|
|
.if defined(EXTLOCALDIR)
|
|
|
|
rm -rf ${CHROOTDIR}/usr/local
|
2003-05-18 19:34:03 +00:00
|
|
|
cd ${CHROOTDIR}/usr && cp -R -H ${EXTLOCALDIR} local
|
2002-11-17 13:35:12 +00:00
|
|
|
.endif
|
2002-11-15 22:03:25 +00:00
|
|
|
rm -rf ${CHROOTDIR}/usr/src
|
|
|
|
.if defined(EXTSRCDIR)
|
|
|
|
cd ${CHROOTDIR}/usr && \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp -R -H ${EXTSRCDIR} src
|
1995-02-25 22:08:48 +00:00
|
|
|
.else
|
2002-11-15 22:03:25 +00:00
|
|
|
cd ${CHROOTDIR}/usr && \
|
2004-01-13 18:46:09 +00:00
|
|
|
${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
|
|
|
|
co ${CVSCMDARGS} ${CVS_SRCARGS} ${RELEASESRCMODULE}
|
1996-01-08 22:13:50 +00:00
|
|
|
.endif
|
2003-09-21 06:33:14 +00:00
|
|
|
.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
|
|
|
|
.for p in ${LOCAL_PATCHES}
|
2003-11-14 08:21:21 +00:00
|
|
|
patch -d ${CHROOTDIR}/usr/${RELEASESRCMODULE} ${PATCH_FLAGS} < ${p}
|
2003-09-21 06:33:14 +00:00
|
|
|
.endfor
|
1996-09-07 01:05:16 +00:00
|
|
|
.endif
|
2004-07-15 04:52:57 +00:00
|
|
|
.if defined(LOCAL_SCRIPT)
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} \
|
|
|
|
RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT}
|
1998-08-16 01:24:40 +00:00
|
|
|
.endif
|
2002-11-15 22:03:25 +00:00
|
|
|
rm -rf ${CHROOTDIR}/usr/ports
|
|
|
|
.if !defined(NOPORTSATALL)
|
2006-01-02 13:29:58 +00:00
|
|
|
.if defined(EXTPORTSDIR)
|
|
|
|
cd ${CHROOTDIR}/usr && cp -R -H ${EXTPORTSDIR} ports
|
|
|
|
# If there are distfiles downloaded removing them
|
|
|
|
rm -rf ports/distfiles/*
|
|
|
|
.else
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
|
|
|
|
co ${CVSCMDARGS} ${CVS_PORTSARGS} ${RELEASEPORTSMODULE}
|
2001-05-04 19:50:34 +00:00
|
|
|
.endif
|
2006-01-02 13:29:58 +00:00
|
|
|
.endif
|
1997-05-24 20:15:13 +00:00
|
|
|
.if !defined(NODOC)
|
2002-11-15 22:03:25 +00:00
|
|
|
rm -rf ${CHROOTDIR}/usr/doc
|
|
|
|
.if defined(EXTDOCDIR)
|
2003-05-18 19:34:03 +00:00
|
|
|
cd ${CHROOTDIR}/usr && cp -R -H ${EXTDOCDIR} doc
|
2000-04-06 10:00:20 +00:00
|
|
|
.else
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
|
|
|
|
co ${CVSCMDARGS} ${CVS_DOCARGS} ${RELEASEDOCMODULE}
|
2000-04-06 10:00:20 +00:00
|
|
|
.endif
|
2002-02-03 07:00:37 +00:00
|
|
|
if [ -d ${RELEASEDISTFILES}/ ]; then \
|
|
|
|
cp -rp ${RELEASEDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \
|
2002-02-12 16:56:06 +00:00
|
|
|
else \
|
2002-02-25 05:35:39 +00:00
|
|
|
mkdir -p ${CHROOTDIR}/usr/ports/distfiles; \
|
1999-03-31 11:18:52 +00:00
|
|
|
fi
|
2003-03-16 22:59:00 +00:00
|
|
|
.if !defined(NO_PREFETCHDISTFILES)
|
|
|
|
@cd ${.CURDIR} && ${MAKE} fetch-distfiles
|
2002-07-27 19:43:52 +00:00
|
|
|
.endif
|
1997-05-24 20:15:13 +00:00
|
|
|
.endif
|
1996-01-08 22:13:50 +00:00
|
|
|
.endif
|
|
|
|
.if make(rerelease)
|
|
|
|
.if !defined(RELEASENOUPDATE)
|
|
|
|
.if !defined(RELEASETAG)
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
|
|
|
|
update ${CVSCMDARGS} -P -d -A
|
1996-01-08 22:13:50 +00:00
|
|
|
.else
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
|
|
|
|
update ${CVSCMDARGS} -P -d -r ${RELEASETAG}
|
1996-01-08 22:13:50 +00:00
|
|
|
.endif
|
2003-02-26 15:32:12 +00:00
|
|
|
rm -f ${CHROOTDIR}/tmp/.world_done
|
2006-01-02 13:29:58 +00:00
|
|
|
.if !defined(NOPORTS) && !defined(EXTPORTSDIR)
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr/ports && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
|
|
|
|
update ${CVSCMDARGS} -P -d
|
2005-03-02 22:46:07 +00:00
|
|
|
rm -f ${CHROOTDIR}/tmp/.skip_ports_index
|
1997-03-11 00:07:11 +00:00
|
|
|
.endif
|
2001-05-04 19:50:34 +00:00
|
|
|
.if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES"
|
|
|
|
for i in ${MINIMALDOCPORTS}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
( cd ${CHROOTDIR}/usr/$$i && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
|
|
|
|
update ${CVSCMDARGS} -P -d ) ; \
|
2001-05-04 19:50:34 +00:00
|
|
|
done
|
|
|
|
.endif
|
1997-05-24 20:15:13 +00:00
|
|
|
.if !defined(NODOC)
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${CHROOTDIR}/usr/doc && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
|
|
|
|
update ${CVSCMDARGS} -P -d
|
1997-05-24 20:15:13 +00:00
|
|
|
.endif
|
1996-01-08 22:13:50 +00:00
|
|
|
.endif
|
1995-02-25 22:08:48 +00:00
|
|
|
.endif
|
1997-06-21 15:41:55 +00:00
|
|
|
# Add version information to those things that need it.
|
2003-02-26 15:32:12 +00:00
|
|
|
if [ ! -f ${CHROOTDIR}/tmp/.world_done ]; then \
|
|
|
|
cd ${CHROOTDIR}/usr/src/sys/conf && \
|
|
|
|
mv newvers.sh foo && \
|
|
|
|
sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && \
|
|
|
|
rm foo; \
|
|
|
|
fi
|
1996-09-26 20:48:03 +00:00
|
|
|
-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "#!/bin/sh" > ${_MK}
|
|
|
|
echo "set -ex" >> ${_MK}
|
|
|
|
echo "trap 'umount /dev || true' 0" >> ${_MK}
|
|
|
|
echo "_RELTARGET=\$${1:-doRELEASE}" >> ${_MK}
|
2002-08-14 16:50:50 +00:00
|
|
|
.for var in \
|
2002-12-26 12:20:25 +00:00
|
|
|
AUTO_KEYBOARD_DETECT \
|
|
|
|
BUILDNAME \
|
2005-03-23 15:01:54 +00:00
|
|
|
CD_PACKAGE_TREE \
|
2002-12-26 12:20:25 +00:00
|
|
|
DISTRIBUTIONS \
|
|
|
|
DOC_LANG \
|
|
|
|
DOMINIMALDOCPORTS \
|
|
|
|
EXTRA_SRC \
|
2003-02-16 08:34:11 +00:00
|
|
|
FTP_PASSIVE_MODE \
|
|
|
|
FTP_PROXY \
|
|
|
|
HTTP_PROXY \
|
2002-12-26 12:20:25 +00:00
|
|
|
KERNELS \
|
2006-03-11 18:59:16 +00:00
|
|
|
KERNELS_BASE \
|
2002-12-26 12:20:25 +00:00
|
|
|
KERNEL_FLAGS \
|
2004-08-16 08:56:50 +00:00
|
|
|
MAKE_FLOPPIES \
|
2002-12-26 12:20:25 +00:00
|
|
|
MAKE_ISOS \
|
|
|
|
NOCDROM \
|
|
|
|
NODOC \
|
|
|
|
NOPORTS \
|
2004-12-21 09:59:45 +00:00
|
|
|
NO_SHARED \
|
2002-12-26 12:20:25 +00:00
|
|
|
NOSRC \
|
|
|
|
NO_CPU_CFLAGS \
|
|
|
|
NO_CPU_COPTFLAGS \
|
2004-08-16 10:25:43 +00:00
|
|
|
NO_FLOPPIES \
|
2002-12-26 12:20:25 +00:00
|
|
|
RELEASETAG \
|
|
|
|
RELNOTES_LANG \
|
2005-03-02 22:46:07 +00:00
|
|
|
SEPARATE_LIVEFS \
|
2002-12-26 12:20:25 +00:00
|
|
|
TARGET \
|
|
|
|
TARGET_ARCH \
|
|
|
|
WORLD_FLAGS
|
2002-08-14 16:50:50 +00:00
|
|
|
.if defined(${var})
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "export ${var}=\"${${var}}\"" >> ${_MK}
|
2002-08-14 16:50:50 +00:00
|
|
|
.endif
|
|
|
|
.endfor
|
1997-03-06 07:51:40 +00:00
|
|
|
# Don't remove this, or the build will fall over!
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "export RELEASEDIR=${_R}" >> ${_MK}
|
|
|
|
echo "export PATH=/bin:/usr/bin:/sbin:/usr/sbin:${LOCALDIR}" >> ${_MK}
|
|
|
|
echo "export MANBUILDCAT=YES" >> ${_MK}
|
2002-10-19 16:44:16 +00:00
|
|
|
# NB: these may fail if the host is running w/o devfs
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "umount /dev >/dev/null 2>&1 || true" >> ${_MK}
|
|
|
|
echo "mount -t devfs devfs /dev >/dev/null 2>&1 || true" >> ${_MK}
|
2006-03-23 07:48:58 +00:00
|
|
|
echo "if [ ! -c /dev/null ]; then" >> ${_MK}
|
|
|
|
echo " echo /dev/null is not a device!" >> ${_MK}
|
|
|
|
echo " exit 1" >> ${_MK}
|
|
|
|
echo "fi" >> ${_MK}
|
2004-01-19 13:35:46 +00:00
|
|
|
echo "if [ -x /etc/rc.d/ldconfig ]; then" >> ${_MK}
|
|
|
|
echo " /etc/rc.d/ldconfig start" >> ${_MK}
|
|
|
|
echo "else" >> ${_MK}
|
|
|
|
echo " ldconfig /lib /usr/lib /usr/local/lib || true" >> ${_MK}
|
|
|
|
echo "fi" >> ${_MK}
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "if [ ! -f /tmp/.world_done ]; then" >> ${_MK}
|
|
|
|
echo " cd /usr/src" >> ${_MK}
|
2004-12-21 12:21:26 +00:00
|
|
|
echo " ${CROSSMAKE} ${WORLD_FLAGS} -DNO_CLEAN buildworld && \\" >> ${_MK}
|
2004-06-10 19:33:26 +00:00
|
|
|
echo " touch /tmp/.world_done || exit 1" >> ${_MK}
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "fi" >> ${_MK}
|
2004-09-24 02:10:06 +00:00
|
|
|
echo "if [ ! -f /tmp/.skip_ports_index ]; then" >> ${_MK}
|
|
|
|
echo " echo \">>> make index started on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
|
|
|
|
echo " for i in ${MAKEINDEXPORTS}" >> ${_MK}
|
|
|
|
echo " do" >> ${_MK}
|
|
|
|
echo " cd /usr/ports/\$${i}" >> ${_MK}
|
|
|
|
echo " env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
|
|
|
|
echo " make all install clean BATCH=yes FORCE_PKG_REGISTER=yes" >> ${_MK}
|
|
|
|
echo " done" >> ${_MK}
|
|
|
|
echo " cd /usr/ports" >> ${_MK}
|
|
|
|
echo " rm -f INDEX*" >> ${_MK}
|
|
|
|
echo " make index -DINDEX_PRISTINE" >> ${_MK}
|
2004-09-30 22:59:47 +00:00
|
|
|
echo " rm -f INDEX*.tmp" >> ${_MK}
|
2004-09-24 02:10:06 +00:00
|
|
|
echo " touch /tmp/.skip_ports_index" >> ${_MK}
|
|
|
|
echo " echo \">>> make index finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
|
|
|
|
echo "fi" >> ${_MK}
|
2003-08-10 09:54:22 +00:00
|
|
|
echo "cd /usr/src/release" >> ${_MK}
|
|
|
|
echo "make obj" >> ${_MK}
|
|
|
|
echo "make \$${_RELTARGET}" >> ${_MK}
|
|
|
|
echo "echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
|
|
|
|
chmod 755 ${_MK}
|
2004-09-24 02:10:06 +00:00
|
|
|
.if defined(NOPORTS)
|
|
|
|
touch ${CHROOTDIR}/tmp/.skip_ports_index
|
2003-06-04 05:17:18 +00:00
|
|
|
.endif
|
2004-01-13 18:46:09 +00:00
|
|
|
# Ensure md.ko is loaded if md(4) is not statically compiled into
|
|
|
|
# the kernel
|
2003-03-17 18:49:46 +00:00
|
|
|
-mdconfig 2>/dev/null
|
2003-08-11 04:21:58 +00:00
|
|
|
env -i /usr/sbin/chroot `dirname ${_MK}` /`basename ${_MK}`
|
1995-05-09 00:30:00 +00:00
|
|
|
|
1995-02-25 22:08:48 +00:00
|
|
|
clean:
|
2004-08-06 10:04:06 +00:00
|
|
|
rm -rf ${CRUNCH_TARGETS:S/$/_crunch/} release.[0-8] ${EXTRAS}
|
1995-01-13 08:06:55 +00:00
|
|
|
|
2003-03-16 22:59:00 +00:00
|
|
|
fetch-distfiles:
|
2004-09-24 02:10:06 +00:00
|
|
|
@for i in ${MAKEINDEXPORTS}; do \
|
|
|
|
cd ${CHROOTDIR}/usr/ports/$$i && \
|
|
|
|
make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
|
|
|
|
checksum-recursive ; \
|
|
|
|
done
|
2003-03-16 22:59:00 +00:00
|
|
|
@for i in ${DOCPORTS}; do \
|
|
|
|
cd ${CHROOTDIR}/usr/ports/$$i && \
|
|
|
|
make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
|
|
|
|
WITHOUT_X11=yes JADETEX=no WITHOUT_PYTHON=yes \
|
|
|
|
checksum-recursive ; \
|
|
|
|
done
|
|
|
|
|
1999-09-16 08:44:22 +00:00
|
|
|
# Clean out ${_R} and make the directory structure.
|
1995-02-25 22:08:48 +00:00
|
|
|
release.1:
|
1999-09-16 08:44:22 +00:00
|
|
|
mkdir -p ${_R}
|
1999-09-23 18:40:54 +00:00
|
|
|
-rm -rf ${_R}/* 2> /dev/null
|
1999-09-16 08:44:22 +00:00
|
|
|
-chflags -R noschg ${_R}/.
|
|
|
|
rm -rf ${_R}/*
|
1995-02-25 22:08:48 +00:00
|
|
|
mkdir ${RD}
|
2004-08-16 08:56:50 +00:00
|
|
|
.if defined(MAKE_FLOPPIES)
|
1995-02-25 22:08:48 +00:00
|
|
|
mkdir ${RD}/floppies
|
2003-07-23 12:12:53 +00:00
|
|
|
.endif
|
1995-03-15 06:14:19 +00:00
|
|
|
mkdir ${RD}/trees
|
2004-01-29 19:01:58 +00:00
|
|
|
for i in ${DISTRIBUTIONS}; do \
|
1996-01-08 22:13:50 +00:00
|
|
|
mkdir ${RD}/trees/$$i && \
|
2000-07-23 16:33:00 +00:00
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.root.dist \
|
1996-01-08 22:13:50 +00:00
|
|
|
-p ${RD}/trees/$$i > /dev/null && \
|
2000-07-23 16:33:00 +00:00
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
|
1996-01-08 22:13:50 +00:00
|
|
|
-p ${RD}/trees/$$i/usr > /dev/null && \
|
2000-07-23 16:33:00 +00:00
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.include.dist \
|
1996-01-08 22:13:50 +00:00
|
|
|
-p ${RD}/trees/$$i/usr/include > /dev/null && \
|
2000-07-23 16:33:00 +00:00
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.var.dist \
|
1995-03-15 06:14:19 +00:00
|
|
|
-p ${RD}/trees/$$i/var > /dev/null ; \
|
1995-02-02 08:03:24 +00:00
|
|
|
done
|
2006-03-08 18:02:32 +00:00
|
|
|
mkdir ${RD}/kernels
|
2006-03-11 18:59:16 +00:00
|
|
|
for i in ${KERNELS_BASE} ${KERNELS}; do \
|
|
|
|
mkdir -p ${RD}/kernels/$${i}; \
|
2006-03-08 18:02:32 +00:00
|
|
|
done
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-02-25 22:08:48 +00:00
|
|
|
|
|
|
|
# Install the system into the various distributions.
|
|
|
|
release.2:
|
2002-04-23 22:16:41 +00:00
|
|
|
cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/base
|
2004-10-21 08:54:10 +00:00
|
|
|
cd ${.CURDIR}/.. && ${CROSSMAKE} ${WORLD_FLAGS} distributeworld \
|
|
|
|
DISTDIR=${RD}/trees
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
2002-05-14 13:59:33 +00:00
|
|
|
|
1997-04-12 21:55:53 +00:00
|
|
|
# Make and install the generic kernel(s).
|
2004-08-06 08:49:51 +00:00
|
|
|
release.3:
|
2006-03-11 18:59:16 +00:00
|
|
|
.for kernel in ${KERNELS_BASE} ${KERNELS}
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
cd ${.CURDIR}/..; \
|
2002-07-12 15:15:35 +00:00
|
|
|
${CROSSMAKE} ${KERNEL_FLAGS} \
|
2006-03-08 18:02:32 +00:00
|
|
|
KERNCONF=${kernel} kernel \
|
|
|
|
DESTDIR=${RD}/kernels KODIR=/${kernel}
|
|
|
|
.endfor
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-02-25 22:08:48 +00:00
|
|
|
|
1995-04-10 08:01:27 +00:00
|
|
|
# Make and install the three crunched binaries which live on the floppies.
|
1995-02-25 22:08:48 +00:00
|
|
|
# You are not supposed to like this :-)
|
2004-08-06 08:49:51 +00:00
|
|
|
release.4:
|
1995-04-20 06:48:31 +00:00
|
|
|
rm -rf ${RD}/crunch
|
|
|
|
mkdir -p ${RD}/crunch
|
2002-04-29 15:26:37 +00:00
|
|
|
.for j in ${CRUNCH_TARGETS}
|
2003-08-06 08:09:40 +00:00
|
|
|
.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf)
|
2002-04-29 15:26:37 +00:00
|
|
|
rm -rf ${j}_crunch
|
|
|
|
mkdir ${j}_crunch
|
2004-01-13 18:46:09 +00:00
|
|
|
cd ${j}_crunch; ${WMAKEENV} crunchgen -o \
|
|
|
|
${.CURDIR}/${TARGET}/${j}_crunch.conf
|
2002-04-29 15:26:37 +00:00
|
|
|
cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean
|
2003-07-04 14:39:17 +00:00
|
|
|
cd ${.CURDIR}/..; ${BINMAKE} -f Makefile.inc1 _build-tools
|
2004-08-06 17:07:40 +00:00
|
|
|
cd ${j}_crunch; CFLAGS="-Os -pipe" ${WMAKE} -f ${j}_crunch.mk \
|
|
|
|
-DNO_CPU_CFLAGS all
|
2003-01-29 08:39:28 +00:00
|
|
|
${WMAKEENV} strip -R .comment ${j}_crunch/${j}_crunch
|
2002-04-29 15:26:37 +00:00
|
|
|
mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j}
|
2003-08-06 08:09:40 +00:00
|
|
|
.endif
|
2002-04-29 15:26:37 +00:00
|
|
|
.endfor
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-02-25 22:08:48 +00:00
|
|
|
|
1996-01-11 20:28:40 +00:00
|
|
|
#
|
|
|
|
# --==## Fix up the distributions. ##==--
|
|
|
|
#
|
2004-08-06 08:49:51 +00:00
|
|
|
release.5:
|
1997-06-21 15:41:55 +00:00
|
|
|
# Create any "synthetic dists" now.
|
|
|
|
@for i in ${DISTRIBUTIONS}; do \
|
|
|
|
if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
|
|
|
|
echo -n "Running $$i dist creation script... "; \
|
2002-09-17 01:49:00 +00:00
|
|
|
env RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
|
1997-06-21 15:45:51 +00:00
|
|
|
echo "Done."; \
|
1997-06-21 15:41:55 +00:00
|
|
|
fi \
|
|
|
|
done \
|
|
|
|
|
1996-01-11 20:28:40 +00:00
|
|
|
# Remove all the directories we don't need.
|
1995-04-08 09:45:31 +00:00
|
|
|
-cd ${RD}/trees && \
|
2005-06-16 18:16:14 +00:00
|
|
|
(find ${OTHER_DISTS} -path '*/var/empty' | xargs chflags noschg; \
|
2006-06-09 03:40:04 +00:00
|
|
|
find ${OTHER_DISTS} -depth -type d -empty -print | xargs rmdir)
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-02-25 22:08:48 +00:00
|
|
|
|
1996-01-11 20:28:40 +00:00
|
|
|
#
|
1997-06-21 15:41:55 +00:00
|
|
|
# --==## Package up the tarballs from assembled trees ##==--
|
1996-01-11 20:28:40 +00:00
|
|
|
#
|
2004-08-06 08:49:51 +00:00
|
|
|
release.6:
|
1995-05-24 01:26:23 +00:00
|
|
|
rm -rf ${RD}/dists
|
|
|
|
mkdir -p ${RD}/dists
|
|
|
|
@for i in ${DISTRIBUTIONS} ; \
|
|
|
|
do \
|
|
|
|
if [ -d ${RD}/trees/$${i} ] ; then \
|
1996-01-11 20:28:40 +00:00
|
|
|
cd ${.CURDIR} && $(MAKE) doTARBALL \
|
|
|
|
SD=${RD}/trees/$${i} \
|
|
|
|
TN=$$i TD=$$i ARG="." && \
|
1995-05-24 01:26:23 +00:00
|
|
|
echo "$${i} distribution is finished."; \
|
|
|
|
fi ; \
|
1995-05-30 08:29:07 +00:00
|
|
|
done
|
2006-03-11 18:59:16 +00:00
|
|
|
@for i in ${KERNELS_BASE} ${KERNELS} ; \
|
2006-03-08 18:02:32 +00:00
|
|
|
do \
|
|
|
|
if [ -d ${RD}/kernels/$${i} ] ; then \
|
|
|
|
cd ${.CURDIR} && $(MAKE) doTARBALL \
|
|
|
|
SD=${RD}/kernels \
|
|
|
|
TN=$$i TD=kernels ARG="$$i" && \
|
|
|
|
echo "$${i} distribution is finished."; \
|
|
|
|
fi ; \
|
|
|
|
done
|
2003-08-02 18:21:02 +00:00
|
|
|
.if !defined(NOPORTS)
|
|
|
|
# XXX: Inline stripped version of doTARBALL
|
|
|
|
@rm -rf ${RD}/dists/ports/ports*
|
|
|
|
@mkdir -p ${RD}/dists/ports
|
|
|
|
@echo rolling ports/ports tarball
|
2004-09-24 02:10:06 +00:00
|
|
|
@tar --exclude CVS --exclude 'ports/distfiles/*' \
|
2005-03-02 22:46:07 +00:00
|
|
|
-czf ${RD}/dists/ports/ports.tgz -C /usr ports
|
2003-08-02 18:21:02 +00:00
|
|
|
@cp ${.CURDIR}/scripts/ports-install.sh ${RD}/dists/ports/install.sh
|
|
|
|
@(cd ${RD}/dists/ports; \
|
2006-02-08 11:18:29 +00:00
|
|
|
rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
|
2005-09-28 12:39:00 +00:00
|
|
|
md5 * > .CHECKSUM.MD5; \
|
2006-02-08 11:18:29 +00:00
|
|
|
sha256 * > .CHECKSUM.SHA256; \
|
|
|
|
mv .CHECKSUM.MD5 CHECKSUM.MD5; \
|
|
|
|
mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
|
2003-08-02 18:21:02 +00:00
|
|
|
@echo "ports distribution is finished."
|
|
|
|
.endif
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-05-24 01:26:23 +00:00
|
|
|
|
|
|
|
|
1996-01-11 20:28:40 +00:00
|
|
|
#
|
|
|
|
# --==## Make source dists ##==--
|
|
|
|
#
|
2004-08-06 08:49:51 +00:00
|
|
|
release.7:
|
1997-06-24 23:08:18 +00:00
|
|
|
.if !defined(NOSRC)
|
1996-01-08 22:13:50 +00:00
|
|
|
@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
|
1995-05-24 01:26:23 +00:00
|
|
|
TD=src TN=sbase ARG="[A-Z]*"
|
1997-10-04 09:05:06 +00:00
|
|
|
@for i in `cd /usr/src && echo [a-z]*` ; do \
|
1996-01-11 20:28:40 +00:00
|
|
|
if [ -d /usr/src/$$i ] ; then \
|
|
|
|
cd ${.CURDIR} && $(MAKE) doTARBALL \
|
2000-02-29 11:26:24 +00:00
|
|
|
TN=`echo s$$i | tr -d '.' | \
|
|
|
|
sed -e 's/usr/u/' \
|
|
|
|
-e 's/kerberos5/krb5/'` \
|
1996-01-11 20:28:40 +00:00
|
|
|
SD=/usr/src TD=src ARG="$$i" ; \
|
1995-05-24 01:26:23 +00:00
|
|
|
fi ; \
|
|
|
|
done
|
1995-12-07 10:34:59 +00:00
|
|
|
.if defined(EXTRA_SRC)
|
1996-01-08 22:13:50 +00:00
|
|
|
@set ${EXTRA_SRC} && \
|
1995-12-07 10:34:59 +00:00
|
|
|
while [ $$# -ge 2 ] ; do \
|
1996-01-11 20:28:40 +00:00
|
|
|
if [ -d /usr/src/$$1 ] ; then \
|
|
|
|
cd ${.CURDIR} && $(MAKE) doTARBALL \
|
|
|
|
SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
|
|
|
|
fi && shift && shift ; \
|
1995-12-07 10:34:59 +00:00
|
|
|
done
|
|
|
|
.endif
|
2005-09-28 12:39:00 +00:00
|
|
|
(cd ${RD}/dists/src; \
|
2006-02-08 11:18:29 +00:00
|
|
|
rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
|
2005-09-28 12:39:00 +00:00
|
|
|
md5 * > .CHECKSUM.MD5; \
|
2006-02-08 11:18:29 +00:00
|
|
|
sha256 * > .CHECKSUM.SHA256; \
|
|
|
|
mv .CHECKSUM.MD5 CHECKSUM.MD5; \
|
|
|
|
mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
|
1995-05-24 01:26:23 +00:00
|
|
|
@echo "src distribution is finished."
|
1997-06-24 23:08:18 +00:00
|
|
|
.endif
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-05-24 01:26:23 +00:00
|
|
|
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
# Build the memory root filesystem.
|
2004-08-06 08:49:51 +00:00
|
|
|
release.8:
|
2003-03-21 13:41:17 +00:00
|
|
|
cp ${RD}/trees/base/etc/disktab /etc
|
1995-05-26 21:47:13 +00:00
|
|
|
rm -rf ${RD}/mfsfd
|
|
|
|
mkdir ${RD}/mfsfd
|
|
|
|
cd ${RD}/mfsfd && \
|
2005-07-11 03:59:25 +00:00
|
|
|
mkdir -p etc/defaults dev mnt stand/etc/defaults stand/help \
|
|
|
|
var/empty
|
1995-05-28 07:04:36 +00:00
|
|
|
@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
|
1996-01-13 23:31:46 +00:00
|
|
|
DIR=${RD}/mfsfd/stand ZIP=false
|
2000-07-26 04:28:21 +00:00
|
|
|
( cd ${RD}/mfsfd && \
|
|
|
|
for dir in bin sbin ; do \
|
|
|
|
ln -sf /stand $$dir; \
|
|
|
|
done )
|
2002-07-24 20:37:21 +00:00
|
|
|
cp ${RD}/trees/base/sbin/dhclient-script ${RD}/mfsfd/stand
|
2002-10-20 16:27:11 +00:00
|
|
|
.if ${TARGET} == "pc98"
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${.CURDIR}/../etc/defaults/pccard.conf \
|
|
|
|
${RD}/mfsfd/etc/defaults/pccard.conf
|
2002-03-29 22:22:34 +00:00
|
|
|
.endif
|
2005-07-11 03:59:25 +00:00
|
|
|
cp ${.CURDIR}/../etc/master.passwd ${RD}/mfsfd/etc/master.passwd
|
2005-11-03 07:27:50 +00:00
|
|
|
cp ${RD}/trees/base/etc/*pwd.db ${RD}/mfsfd/etc/
|
2002-11-05 14:44:46 +00:00
|
|
|
( for F in defaults/rc.conf netconfig protocols ; do \
|
2001-04-07 01:53:14 +00:00
|
|
|
sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
|
2002-04-23 22:16:41 +00:00
|
|
|
${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \
|
2001-04-07 01:53:14 +00:00
|
|
|
done )
|
2001-03-21 23:53:40 +00:00
|
|
|
grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
${RD}/trees/base/etc/services | \
|
2001-04-07 01:53:14 +00:00
|
|
|
sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
|
|
|
|
> ${RD}/mfsfd/stand/etc/services
|
2003-11-15 03:58:12 +00:00
|
|
|
grep 'operator' ${RD}/trees/base/etc/group \
|
|
|
|
> ${RD}/mfsfd/stand/etc/group
|
2001-03-21 23:53:40 +00:00
|
|
|
ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
|
2003-11-15 03:58:12 +00:00
|
|
|
ln ${RD}/mfsfd/stand/etc/group ${RD}/mfsfd/etc/group
|
2001-03-21 23:53:40 +00:00
|
|
|
ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
|
2002-08-09 07:45:42 +00:00
|
|
|
cp ${RD}/trees/base/COPYRIGHT ${RD}/mfsfd/stand/help/COPYRIGHT.hlp
|
2001-05-30 17:05:15 +00:00
|
|
|
.if !defined(NODOC)
|
2001-04-27 21:28:02 +00:00
|
|
|
@for i in ${DIST_DOCS_ARCH_INDEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
|
|
|
|
${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
|
|
|
@for i in ${DIST_DOCS_ARCH_DEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
|
|
|
|
${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
2004-01-13 18:46:09 +00:00
|
|
|
@mv ${RD}/mfsfd/stand/help/INSTALLATION.TXT \
|
|
|
|
${RD}/mfsfd/stand/help/INSTALL.TXT
|
2001-04-27 21:28:02 +00:00
|
|
|
.endif
|
2004-01-13 18:46:09 +00:00
|
|
|
-test -f ${.CURDIR}/install.cfg \
|
|
|
|
&& cp ${.CURDIR}/install.cfg ${RD}/mfsfd
|
1999-01-08 05:33:11 +00:00
|
|
|
@mkdir -p ${RD}/mfsfd/boot
|
2004-08-18 11:11:46 +00:00
|
|
|
.if ${TARGET_ARCH} != "ia64" && ${TARGET_ARCH} != "powerpc"
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
@cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot
|
2002-11-04 00:50:01 +00:00
|
|
|
.endif
|
2003-06-04 22:24:43 +00:00
|
|
|
.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
@cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot
|
2002-03-28 08:23:33 +00:00
|
|
|
.endif
|
Milestone #1 in cross-arch make releases.
Do not install games and profiled libraries to the ${CHROOTDIR}
with the initial installworld.
Eliminate the need in the second installworld. For that, make sure
_everything_ is built in the "world" environment, using the right
tool chain.
Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the
buildworld process into stages, and skip some stages when
SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5
dists).
Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running
makewhatis(1) at the end of installworld (used when making crypto,
krb4, and krb5 dists).
In release/scripts/doFS.sh, ensure that the correct boot blocks are
used.
Moved the creation of the "crypto" dist from release.5 to
release.2.
In release.3 and doMFSKERN, build kernels in the "world"
environment. KERNELS now means "additional" kernels, GENERIC is
always built.
Ensure we build crunched binaries in the "world" environment.
Obfuscate release/Makefile some more (WMAKEENV) to achieve this.
Inline createBOOTMFS target.
Use already built GENERIC kernel modules to augment mfsfd's
/stand/modules. GC doMODULES as such.
Assorted fixes:
Get rid of the "afterdistribute" target by moving the single use
of it from sys/Makefile to etc/Makefile's "distribute".
Makefile.inc1: apparently "etc" no longer needs to be last for
"distribute" to succeed.
gnu/usr.bin/perl/library/Makefile.inc: do not override the
"install" and "distribute" targets, do it the "canonical" way.
release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and
catpages appear in the right dists. Note that because Perl does
not respect the MANBUILDCAT (and NOMAN), this results in a loss of
/usr/share/perl/man/cat* empty directories. This will be fixed
soon.
Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it
means "make KerberosIV"), as documented in the make.conf(5)
manpage. Most of the userland makefiles did not test it for "YES"
anyway.
XXX Should specialized kerberized libpam versions be included into
the krb4 and krb5 dists? (libpam.a would be incorrect anyway if
both krb4 and krb5 dists were choosen.)
Make sure "games" dist is made before "catpages", otherwise games
catpages settle in the wrong dist.
Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
|
|
|
@tar --exclude CVS -cf - -C ${.CURDIR}/../usr.sbin/sysinstall help | \
|
1999-01-05 03:44:08 +00:00
|
|
|
tar xf - -C ${RD}/mfsfd/stand
|
2003-08-02 18:21:02 +00:00
|
|
|
@mkdir -p ${RD}/mfsroot
|
2003-08-07 18:22:34 +00:00
|
|
|
sh -e ${DOFS_SH} ${RD}/mfsroot/mfsroot ${RD} ${MNT} \
|
2004-01-13 18:46:09 +00:00
|
|
|
${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
|
2004-01-29 19:01:58 +00:00
|
|
|
@gzip -9fnv ${RD}/mfsroot/mfsroot
|
2003-07-25 08:54:41 +00:00
|
|
|
touch ${.TARGET}
|
|
|
|
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
KERNFLOPPYSET= ${RD}/floppyset/kern/kernel.gz
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
|
|
|
SMALLKERNFLOPPYSET= ${RD}/floppyset/kern-small/kernel.gz
|
2002-10-16 05:30:56 +00:00
|
|
|
.endif
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
.if defined(SPLIT_MFSROOT)
|
|
|
|
MFSROOTFLOPPYSET= ${RD}/floppyset/mfsroot/mfsroot.gz
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
|
|
|
SMALLMFSROOTFLOPPYSET= ${RD}/floppyset/mfsroot-small/mfsroot.gz
|
2002-10-21 14:21:08 +00:00
|
|
|
.endif
|
2002-11-01 20:53:50 +00:00
|
|
|
.endif
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
|
|
|
|
# Build boot and install floppies.
|
|
|
|
floppies.1:
|
2006-03-08 18:02:32 +00:00
|
|
|
@gzip -9nc ${RD}/kernels/GENERIC/kernel > ${RD}/kernels/kernel.gz
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
@echo "Making the kernel boot floppies..."
|
|
|
|
@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern \
|
|
|
|
FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
|
|
|
@echo "Making the small kernel boot floppies..."
|
|
|
|
@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern-small \
|
|
|
|
FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz \
|
|
|
|
FDSIZE="SMALL"
|
|
|
|
.endif
|
|
|
|
.if defined(SPLIT_MFSROOT)
|
|
|
|
@echo "Making the mfsroot boot floppies..."
|
|
|
|
@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot \
|
|
|
|
FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
|
|
|
@echo "Making the small mfsroot boot floppies..."
|
|
|
|
@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot-small \
|
|
|
|
FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz \
|
|
|
|
FDSIZE="SMALL"
|
|
|
|
.endif
|
|
|
|
@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
|
|
|
|
KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
|
|
|
|
MFSROOTFILE="${MFSROOTFLOPPYSET}.split ${MFSROOTFLOPPYSET}.boot"
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
2004-01-29 15:14:59 +00:00
|
|
|
@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
|
|
|
|
MFSROOTFILE="${SMALLMFSROOTFLOPPYSET}.split ${SMALLMFSROOTFLOPPYSET}.boot" \
|
|
|
|
FDSIZE="SMALL"
|
|
|
|
.endif
|
|
|
|
.else # !SPLIT_MFSROOT
|
|
|
|
@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
|
|
|
|
KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
|
|
|
|
MFSROOTFILE=${RD}/mfsroot/mfsroot.gz
|
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
2004-01-29 15:14:59 +00:00
|
|
|
@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
|
|
|
|
MFSROOTFILE=${RD}/mfsroot/mfsroot.gz \
|
|
|
|
FDSIZE="SMALL"
|
|
|
|
.endif
|
|
|
|
.endif # SPLIT_MFSROOT
|
|
|
|
touch ${.TARGET}
|
|
|
|
|
|
|
|
# Build fixit floppy.
|
|
|
|
floppies.2:
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "Making fixit floppy."
|
|
|
|
@rm -rf ${RD}/fixitfd
|
|
|
|
@mkdir ${RD}/fixitfd
|
|
|
|
@cd ${RD}/fixitfd && \
|
2004-01-13 18:46:09 +00:00
|
|
|
mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
|
|
|
|
usr/share/misc
|
2002-04-23 22:16:41 +00:00
|
|
|
@cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \
|
2004-01-13 18:46:09 +00:00
|
|
|
${RD}/fixitfd/etc
|
2003-04-25 06:08:11 +00:00
|
|
|
@sed -e 's/#.*//' ${RD}/trees/base/etc/protocols \
|
2004-01-13 18:46:09 +00:00
|
|
|
> ${RD}/fixitfd/etc/protocols
|
2003-04-25 06:08:11 +00:00
|
|
|
@sed -e 's/#.*//' ${RD}/trees/base/usr/share/misc/scsi_modes \
|
2004-01-13 18:46:09 +00:00
|
|
|
> ${RD}/fixitfd/usr/share/misc/scsi_modes
|
1999-01-05 03:44:08 +00:00
|
|
|
@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
|
|
|
|
@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
|
|
|
|
@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
|
|
|
|
@chmod 555 ${RD}/fixitfd/stand/tar
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
.if defined(SMALLFLOPPYSIZE)
|
2002-11-05 13:54:58 +00:00
|
|
|
@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit-small \
|
2004-01-13 18:46:09 +00:00
|
|
|
DIR=${RD}/fixitfd/stand ZIP=false
|
|
|
|
@sh -e ${DOFS_SH} ${RD}/floppies/fixit-small.flp ${RD} ${MNT} \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
${SMALLFLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${SMALLFLOPPYLABEL}
|
2002-11-05 13:54:58 +00:00
|
|
|
@rm -rf ${RD}/fixitfd/stand
|
|
|
|
@mkdir ${RD}/fixitfd/stand
|
|
|
|
.endif
|
|
|
|
@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit \
|
2004-01-13 18:46:09 +00:00
|
|
|
DIR=${RD}/fixitfd/stand ZIP=false
|
|
|
|
@sh -e ${DOFS_SH} ${RD}/floppies/fixit.flp ${RD} ${MNT} \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
${FLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${FLOPPYLABEL}
|
|
|
|
touch ${.TARGET}
|
|
|
|
|
|
|
|
# Do our last minute floppies directory setup
|
|
|
|
floppies.3:
|
2001-05-30 17:05:15 +00:00
|
|
|
.if !defined(NODOC)
|
2002-06-04 12:05:29 +00:00
|
|
|
@cp ${RND}/${RELNOTES_LANG}/installation/${TARGET}/article.txt \
|
2004-01-13 18:46:09 +00:00
|
|
|
${RD}/floppies/README.TXT
|
1999-07-04 13:31:05 +00:00
|
|
|
@(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5)
|
2005-09-28 12:39:00 +00:00
|
|
|
@(cd ${RD}/floppies; sha256 README.TXT *.flp > CHECKSUM.SHA256)
|
2001-05-29 17:14:59 +00:00
|
|
|
.else
|
|
|
|
@(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5)
|
2005-09-28 12:39:00 +00:00
|
|
|
@(cd ${RD}/floppies; sha256 *.flp > CHECKSUM.SHA256)
|
2001-05-29 17:14:59 +00:00
|
|
|
.endif
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-03-13 20:09:38 +00:00
|
|
|
|
1996-01-11 20:28:40 +00:00
|
|
|
#
|
|
|
|
# --==## Setup a suitable ftp-area ##==--
|
|
|
|
#
|
1995-03-15 06:14:19 +00:00
|
|
|
ftp.1:
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "Setting up FTP distribution area"
|
|
|
|
@mkdir -p ${FD}
|
2001-02-06 08:36:00 +00:00
|
|
|
-@ln -s . ${FD}/${BUILDNAME}
|
2004-08-16 08:56:50 +00:00
|
|
|
.if defined(MAKE_FLOPPIES)
|
1999-01-05 03:44:08 +00:00
|
|
|
@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
|
2003-07-23 12:12:53 +00:00
|
|
|
.endif
|
1999-01-05 03:44:08 +00:00
|
|
|
@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
|
2001-05-30 17:05:15 +00:00
|
|
|
.if !defined(NODOC)
|
2001-04-27 21:28:02 +00:00
|
|
|
@for i in ${DIST_DOCS_ARCH_INDEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
|
|
|
|
${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
|
|
|
|
${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
|
|
|
@for i in ${DIST_DOCS_ARCH_DEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
|
|
|
|
${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
|
|
|
|
${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
2001-12-28 17:21:28 +00:00
|
|
|
@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD}
|
2001-04-27 21:28:02 +00:00
|
|
|
@mv ${FD}/INSTALLATION.TXT ${FD}/INSTALL.TXT
|
|
|
|
@mv ${FD}/INSTALLATION.HTM ${FD}/INSTALL.HTM
|
|
|
|
.endif
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-03-13 20:09:38 +00:00
|
|
|
|
2005-03-02 22:46:07 +00:00
|
|
|
# Build a live filesystem cdrom image
|
1995-03-16 22:54:42 +00:00
|
|
|
cdrom.1:
|
2005-03-02 22:46:07 +00:00
|
|
|
@echo "Building CDROM live filesystem image"
|
|
|
|
@mkdir -p ${CD_LIVEFS}
|
1999-01-05 03:44:08 +00:00
|
|
|
@for i in ${DISTRIBUTIONS} ; \
|
1995-03-16 22:54:42 +00:00
|
|
|
do \
|
|
|
|
if [ -d ${RD}/trees/$${i} ] ; then \
|
1999-02-14 13:56:15 +00:00
|
|
|
chflags -R noschg ${RD}/trees/$${i} || true ; \
|
1995-04-10 08:01:27 +00:00
|
|
|
( cd ${RD}/trees/$${i} && \
|
2005-03-02 22:46:07 +00:00
|
|
|
find . -depth -print | cpio -dumpl ${CD_LIVEFS} ) ; \
|
1995-03-16 22:54:42 +00:00
|
|
|
fi \
|
|
|
|
done
|
2006-03-08 18:02:32 +00:00
|
|
|
@echo "Copy GENERIC kernel to boot area"
|
|
|
|
@cp -Rp ${RD}/kernels/GENERIC/ ${CD_LIVEFS}/boot/kernel
|
2005-03-02 22:46:07 +00:00
|
|
|
@rm -f ${CD_LIVEFS}/.profile
|
|
|
|
@cp ${.CURDIR}/fixit.profile ${CD_LIVEFS}/.profile
|
2005-03-23 02:51:19 +00:00
|
|
|
@ln -sf /rescue ${CD_LIVEFS}/stand
|
2005-03-02 22:46:07 +00:00
|
|
|
@echo "Setting up CDROM boot area"
|
|
|
|
@rm -f ${CD_LIVEFS}/boot/loader.conf
|
|
|
|
@cp ${RD}/mfsroot/mfsroot.gz ${CD_LIVEFS}/boot/mfsroot.gz
|
|
|
|
@echo 'mfsroot_load="YES"' > ${CD_LIVEFS}/boot/loader.conf
|
|
|
|
@echo 'mfsroot_type="mfs_root"' >> ${CD_LIVEFS}/boot/loader.conf
|
|
|
|
@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_LIVEFS}/boot/loader.conf
|
|
|
|
.if exists(${RD}/trees/base/boot/device.hints)
|
|
|
|
# Break the link to device.hints so we can modify it
|
|
|
|
@rm -f ${CD_LIVEFS}/boot/device.hints
|
|
|
|
@cp ${RD}/trees/base/boot/device.hints ${CD_LIVEFS}/boot/device.hints
|
|
|
|
.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
|
|
|
|
@echo 'hint.atkbd.0.flags="0x1"' >> ${CD_LIVEFS}/boot/device.hints
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_LIVEFS}/cdrom.inf
|
|
|
|
touch ${.TARGET}
|
|
|
|
|
2005-03-23 15:01:54 +00:00
|
|
|
# Build disc1 and disc2 cdrom images
|
2005-03-02 22:46:07 +00:00
|
|
|
cdrom.2:
|
|
|
|
@echo "Building CDROM disc1 filesystem image"
|
|
|
|
@mkdir -p ${CD_DISC1}/${BUILDNAME}
|
|
|
|
.if defined(MAKE_FLOPPIES)
|
|
|
|
@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
|
|
|
|
.endif
|
|
|
|
@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}/${BUILDNAME}
|
2001-05-30 17:05:15 +00:00
|
|
|
.if !defined(NODOC)
|
2001-04-27 21:28:02 +00:00
|
|
|
@for i in ${DIST_DOCS_ARCH_INDEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
|
|
|
|
${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
|
|
|
|
${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
|
|
|
@for i in ${DIST_DOCS_ARCH_DEP}; do \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
|
|
|
|
${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
|
|
|
|
cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
|
|
|
|
${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
|
2001-04-27 21:28:02 +00:00
|
|
|
done
|
2001-12-28 17:21:28 +00:00
|
|
|
@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1}
|
2001-04-27 21:28:02 +00:00
|
|
|
@mv ${CD_DISC1}/INSTALLATION.TXT ${CD_DISC1}/INSTALL.TXT
|
|
|
|
@mv ${CD_DISC1}/INSTALLATION.HTM ${CD_DISC1}/INSTALL.HTM
|
|
|
|
.endif
|
2005-03-02 22:46:07 +00:00
|
|
|
.if defined(SEPARATE_LIVEFS)
|
|
|
|
@cp -Rp ${CD_LIVEFS}/boot ${CD_DISC1}
|
|
|
|
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
|
2004-09-14 04:01:57 +00:00
|
|
|
.endif
|
2006-01-29 20:16:25 +00:00
|
|
|
@echo "CD_VOLUME = 1" >> ${CD_DISC1}/cdrom.inf
|
2005-03-23 15:01:54 +00:00
|
|
|
@echo "Building CDROM disc2 filesystem image"
|
|
|
|
@mkdir -p ${CD_DISC2}
|
|
|
|
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
|
|
|
|
@echo "CD_VOLUME = 2" >> ${CD_DISC2}/cdrom.inf
|
2005-03-31 16:19:26 +00:00
|
|
|
.if !defined(NODOC)
|
|
|
|
@mkdir -p ${CD_DISC2}/usr/share/doc
|
|
|
|
@for i in `ls ${CD_LIVEFS}/usr/share/doc`; do \
|
|
|
|
if [ -L ${CD_LIVEFS}/usr/share/doc/$$i -o \
|
|
|
|
-d /usr/doc/$$i ]; then \
|
|
|
|
mv ${CD_LIVEFS}/usr/share/doc/$$i \
|
|
|
|
${CD_DISC2}/usr/share/doc; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
.endif
|
2005-03-02 22:46:07 +00:00
|
|
|
touch ${.TARGET}
|
|
|
|
|
|
|
|
#
|
|
|
|
# --==## Setup a suitable cdrom-area ##==--
|
|
|
|
#
|
|
|
|
cdrom.3:
|
2003-08-02 18:21:02 +00:00
|
|
|
.if defined(CD_BOOT)
|
2005-03-02 22:46:07 +00:00
|
|
|
@echo "Building bootonly CDROM filesystem image"
|
|
|
|
@mkdir -p ${CD_BOOT}
|
|
|
|
@cp -Rp ${CD_LIVEFS}/boot ${CD_BOOT}
|
2005-03-23 15:01:54 +00:00
|
|
|
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_BOOT}/cdrom.inf
|
2003-08-08 21:00:57 +00:00
|
|
|
.if defined(MINIROOT)
|
2005-03-02 22:46:07 +00:00
|
|
|
@echo "Building bootonly UFS filesystem image"
|
2003-08-08 21:00:57 +00:00
|
|
|
@mkdir -p ${FD}/miniroot
|
|
|
|
@sh -e ${DOFS_SH} ${FD}/miniroot/miniroot.ufs \
|
|
|
|
${RD} ${MNT} 0 ${CD_BOOT} 8192 auto
|
|
|
|
@gzip -9v ${FD}/miniroot/miniroot.ufs
|
|
|
|
.endif
|
1997-07-13 00:54:22 +00:00
|
|
|
.endif
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1995-03-16 22:54:42 +00:00
|
|
|
|
2005-03-23 15:01:54 +00:00
|
|
|
.if make(iso.1)
|
|
|
|
.if defined(CD_PACKAGE_TREE)
|
|
|
|
.if exists(${CD_PACKAGE_TREE}/disc1)
|
|
|
|
CD_DISC1_PKGS= ${CD_PACKAGE_TREE}/disc1
|
|
|
|
.endif
|
|
|
|
.if exists(${CD_PACKAGE_TREE}/disc2)
|
|
|
|
CD_DISC2_PKGS= ${CD_PACKAGE_TREE}/disc2
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
2001-07-23 09:01:46 +00:00
|
|
|
iso.1:
|
2003-03-17 17:49:57 +00:00
|
|
|
.if exists(${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh)
|
2003-03-17 05:46:10 +00:00
|
|
|
@echo "Creating ISO images..."
|
2003-08-02 18:21:02 +00:00
|
|
|
.if defined(CD_BOOT)
|
|
|
|
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
|
2005-03-23 15:01:54 +00:00
|
|
|
FreeBSD_bootonly \
|
2003-08-02 18:21:02 +00:00
|
|
|
${CD}/${BUILDNAME}-${TARGET}-bootonly.iso ${CD_BOOT}
|
|
|
|
.endif
|
2003-03-17 05:46:10 +00:00
|
|
|
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
|
2005-03-23 15:01:54 +00:00
|
|
|
FreeBSD_Install \
|
|
|
|
${CD}/${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} \
|
|
|
|
${CD_DISC1_PKGS}
|
|
|
|
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh \
|
|
|
|
FreeBSD_Packages \
|
|
|
|
${CD}/${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2} \
|
|
|
|
${CD_DISC2_PKGS}
|
2005-03-02 22:46:07 +00:00
|
|
|
.if defined(SEPARATE_LIVEFS)
|
2003-03-17 05:46:10 +00:00
|
|
|
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
|
2005-03-23 15:01:54 +00:00
|
|
|
FreeBSD_LiveFS \
|
|
|
|
${CD}/${BUILDNAME}-${TARGET}-livefs.iso ${CD_LIVEFS}
|
2003-03-17 05:46:10 +00:00
|
|
|
.endif
|
2005-09-28 12:39:00 +00:00
|
|
|
@echo "Generating MD5 and SHA256 sums..."
|
2003-12-01 10:46:45 +00:00
|
|
|
@(cd ${CD} && md5 *.iso > ${BUILDNAME}-${TARGET}-iso.CHECKSUM.MD5)
|
2005-09-28 12:39:00 +00:00
|
|
|
@(cd ${CD} && sha256 *.iso > ${BUILDNAME}-${TARGET}-iso.CHECKSUM.SHA256)
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
2003-03-17 05:46:10 +00:00
|
|
|
.else
|
2003-03-17 17:49:57 +00:00
|
|
|
@echo "Do not know how to create an ISO for ${TARGET_ARCH}."
|
2003-03-17 05:46:10 +00:00
|
|
|
.endif
|
2001-07-23 09:01:46 +00:00
|
|
|
|
2001-04-27 21:28:02 +00:00
|
|
|
#
|
|
|
|
# --==## Documentation Project files such as the Handbook and FAQ ##==--
|
|
|
|
#
|
1997-06-22 17:21:59 +00:00
|
|
|
doc.1:
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "Making docs..."
|
|
|
|
@for i in ${DOCPORTS}; do \
|
2002-07-26 11:27:11 +00:00
|
|
|
cd /usr/ports/$$i && \
|
2003-03-08 08:51:25 +00:00
|
|
|
env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \
|
|
|
|
make all install clean BATCH=yes WITHOUT_X11=yes JADETEX=no \
|
|
|
|
WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \
|
1998-01-24 07:30:55 +00:00
|
|
|
done
|
2004-01-13 18:46:09 +00:00
|
|
|
@cd /usr/doc && make all install 'FORMATS=html html-split txt' \
|
2004-05-05 13:06:40 +00:00
|
|
|
INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc \
|
|
|
|
URLS_ABSOLUTE=YES
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
1997-06-22 17:21:59 +00:00
|
|
|
|
2001-04-27 21:28:02 +00:00
|
|
|
#
|
|
|
|
# --==## RELNOTESng: Next-generation replacements for *.TXT files ##==--
|
|
|
|
#
|
|
|
|
doc.2:
|
|
|
|
@echo "Making release documentation..."
|
2004-01-15 10:17:43 +00:00
|
|
|
@cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' \
|
2005-03-20 17:59:17 +00:00
|
|
|
INSTALL_COMPRESSED='' URLS_ABSOLUTE=YES DOCDIR=${RND}
|
2003-07-24 13:45:05 +00:00
|
|
|
touch ${.TARGET}
|
2001-04-27 21:28:02 +00:00
|
|
|
|
1995-02-26 01:35:32 +00:00
|
|
|
# Various "subroutine" and other supporting targets.
|
|
|
|
|
2000-02-29 11:26:24 +00:00
|
|
|
# RD=
|
|
|
|
# SD=
|
|
|
|
# TD=
|
|
|
|
# ARG=
|
1995-02-25 22:08:48 +00:00
|
|
|
doTARBALL:
|
|
|
|
.if !defined(SD)
|
1996-01-08 22:13:50 +00:00
|
|
|
@echo "SD undefined in doTARBALL" && exit 1
|
1995-05-30 08:29:07 +00:00
|
|
|
.endif
|
1995-02-25 22:08:48 +00:00
|
|
|
.if !defined(TD)
|
2001-04-08 23:02:12 +00:00
|
|
|
@echo "TD undefined in doTARBALL" && exit 1
|
1995-05-30 08:29:07 +00:00
|
|
|
.endif
|
1995-02-25 22:08:48 +00:00
|
|
|
.if !defined(ARG)
|
1996-01-08 22:13:50 +00:00
|
|
|
@echo "ARG undefined in doTARBALL" && exit 1
|
1995-05-30 08:29:07 +00:00
|
|
|
.endif
|
1999-01-05 03:44:08 +00:00
|
|
|
@rm -rf ${RD}/dists/${TD}/${TN}*
|
|
|
|
@mkdir -p ${RD}/dists/${TD}
|
|
|
|
@( cd ${SD} && \
|
2003-08-05 05:35:56 +00:00
|
|
|
tn=`echo ${TN} | tr 'A-Z' 'a-z' | cut -c1-8` && \
|
1995-04-07 01:20:26 +00:00
|
|
|
echo rolling ${TD}/$$tn tarball &&\
|
1997-03-12 18:09:15 +00:00
|
|
|
tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
|
1995-05-24 01:26:23 +00:00
|
|
|
${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
|
2004-01-13 18:46:09 +00:00
|
|
|
sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn \
|
|
|
|
> ${RD}/dists/${TD}/$$tn.inf && \
|
1996-06-13 09:35:16 +00:00
|
|
|
if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
|
2004-01-13 18:46:09 +00:00
|
|
|
cp -p ${.CURDIR}/scripts/$${TD}-install.sh \
|
2006-03-21 15:50:08 +00:00
|
|
|
${RD}/dists/${TD}/install.sh && \
|
|
|
|
chmod +x ${RD}/dists/${TD}/install.sh; \
|
1996-06-13 09:35:16 +00:00
|
|
|
fi && \
|
1997-01-01 03:16:34 +00:00
|
|
|
if [ "${SD}" != "/usr/src" ]; then \
|
2000-07-23 16:33:00 +00:00
|
|
|
mtree -c -i -p ${SD}/${ARG} \
|
1996-06-06 10:13:32 +00:00
|
|
|
-k gname,md5digest,mode,nlink,uname,size,link,type \
|
1997-01-01 03:16:34 +00:00
|
|
|
> ${RD}/dists/${TD}/$$tn.mtree ; \
|
|
|
|
else \
|
|
|
|
true; \
|
|
|
|
fi; \
|
2004-01-13 18:46:09 +00:00
|
|
|
( cd ${RD}/dists/${TD}; \
|
2006-02-08 11:18:29 +00:00
|
|
|
rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
|
2005-09-28 12:39:00 +00:00
|
|
|
md5 * > .CHECKSUM.MD5; \
|
2006-02-08 11:18:29 +00:00
|
|
|
sha256 * > .CHECKSUM.SHA256; \
|
|
|
|
mv .CHECKSUM.MD5 CHECKSUM.MD5; \
|
|
|
|
mv .CHECKSUM.SHA256 CHECKSUM.SHA256) \
|
1997-01-01 03:16:34 +00:00
|
|
|
)
|
1995-02-26 01:35:32 +00:00
|
|
|
|
2004-08-06 08:49:51 +00:00
|
|
|
doRELEASE: release.1 release.2 ${DOCREL} release.3 release.4 \
|
|
|
|
release.5 release.6 release.7 release.8 ${EXTRAS}
|
1995-02-26 01:35:32 +00:00
|
|
|
@echo "Release done"
|
|
|
|
|
1995-05-18 13:24:48 +00:00
|
|
|
floppies:
|
2004-08-06 08:49:51 +00:00
|
|
|
@rm -f release.4 release.8 floppies.[123]
|
|
|
|
@cd ${.CURDIR} && ${MAKE} release.4 release.8 floppies.1 floppies.2 \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
floppies.3
|
1999-01-05 03:44:08 +00:00
|
|
|
@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
|
1995-05-18 13:24:48 +00:00
|
|
|
|
1995-04-20 06:48:31 +00:00
|
|
|
installCRUNCH:
|
|
|
|
.if !defined(CRUNCH)
|
1996-01-08 22:13:50 +00:00
|
|
|
@echo "CRUNCH undefined in installCRUNCH" && exit 1
|
1995-04-20 06:48:31 +00:00
|
|
|
.endif
|
|
|
|
.if !defined(DIR)
|
1996-01-08 22:13:50 +00:00
|
|
|
@echo "DIR undefined in installCRUNCH" && exit 1
|
1995-04-20 06:48:31 +00:00
|
|
|
.endif
|
|
|
|
.if !defined(ZIP)
|
1996-01-08 22:13:50 +00:00
|
|
|
@echo "ZIP undefined in installCRUNCH" && exit 1
|
1995-04-20 06:48:31 +00:00
|
|
|
.endif
|
1999-01-05 03:44:08 +00:00
|
|
|
@if ${ZIP} ; then \
|
1995-04-20 06:48:31 +00:00
|
|
|
gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
|
|
|
|
else \
|
|
|
|
ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
|
|
|
|
fi
|
1999-01-05 03:44:08 +00:00
|
|
|
@chmod 555 ${DIR}/${CRUNCH}_crunch
|
2002-04-30 11:50:01 +00:00
|
|
|
@if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \
|
|
|
|
for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
|
2000-06-29 13:34:54 +00:00
|
|
|
ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
|
|
|
|
done \
|
|
|
|
else \
|
|
|
|
for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
|
|
|
|
ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
|
|
|
|
done \
|
|
|
|
fi
|
1996-01-08 22:13:50 +00:00
|
|
|
|
|
|
|
#
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
# --==## Build a floppy set for a splitfs file ##==--
|
1996-01-08 22:13:50 +00:00
|
|
|
#
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
# FLOPPYBASE - basename of floppy image files
|
|
|
|
# FLOPPYDESC - description of floppy set
|
|
|
|
# SPLITFILE - filename of the file to split
|
|
|
|
# FDSIZE - if specified and "small", small floppy is created
|
|
|
|
|
|
|
|
.if make(makeFloppySet)
|
|
|
|
SPLITDIR= ${RD}/floppyset/${FLOPPYBASE}
|
|
|
|
.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
|
|
|
|
FLPSPLITSIZE= ${SMALLFLOPPYSPLITSIZE}
|
|
|
|
FLPSIZE= ${SMALLFLOPPYSIZE}
|
|
|
|
FLPLABEL= ${SMALLFLOPPYLABEL}
|
|
|
|
.else
|
|
|
|
FLPSPLITSIZE= ${FLOPPYSPLITSIZE}
|
|
|
|
FLPSIZE= ${FLOPPYSIZE}
|
|
|
|
FLPLABEL= ${FLOPPYLABEL}
|
2002-05-25 16:13:52 +00:00
|
|
|
.endif
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
makeFloppySet:
|
|
|
|
.if !defined(FLOPPYBASE)
|
|
|
|
@echo "FLOPPYBASE undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
|
|
|
.if !defined(FLOPPYDESC)
|
|
|
|
@echo "FLOPPYDESC undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
|
|
|
.if !defined(SPLITFILE)
|
|
|
|
@echo "SPLITFILE undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
2004-01-29 16:21:00 +00:00
|
|
|
sh ${.CURDIR}/scripts/split-file.sh ${SPLITFILE} \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
${RD}/floppyset/${FLOPPYBASE} ${FLPSPLITSIZE} "${FLOPPYDESC}"
|
|
|
|
( splitfile=${SPLITDIR}/`basename ${SPLITFILE}`.split ; \
|
|
|
|
lines=`cat $${splitfile} | wc -l`; \
|
2004-08-26 19:15:20 +00:00
|
|
|
lines=$$(($$lines - 1)) ; \
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
for line in `jot $$lines`; do \
|
|
|
|
file=`head -n $$(($${line} + 1)) $${splitfile} | tail -1 | cut -f 1 -d ' '` ; \
|
|
|
|
sh -e ${DOFS_SH} ${RD}/floppies/${FLOPPYBASE}$${line}.flp \
|
|
|
|
${RD} ${MNT} ${FLPSIZE} ${SPLITDIR}/$${file} \
|
|
|
|
${BOOTINODE} ${FLPLABEL}; \
|
|
|
|
done )
|
|
|
|
|
|
|
|
#
|
|
|
|
# --==## Build a boot floppy ##==--
|
|
|
|
#
|
|
|
|
# FSIMAGE - base floppy image name
|
|
|
|
# FDSIZE - if specified and "small", small floppy is created
|
|
|
|
# KERNFILE - path to kernel split file
|
|
|
|
# MFSROOTFILE - path to mfsroot split file
|
|
|
|
|
|
|
|
.if make(buildBootFloppy)
|
|
|
|
IMAGEDIR= ${RD}/image.${FSIMAGE}
|
2004-02-03 22:05:55 +00:00
|
|
|
BOOTDIR= ${RD}/trees/base/boot
|
|
|
|
HINTSFILE= ${BOOTDIR}/device.hints
|
2006-04-29 14:03:17 +00:00
|
|
|
ACPI_KO= ${RD}/kernels/GENERIC/acpi.ko
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
IMAGEFILE= ${RD}/floppies/${FSIMAGE}.flp
|
|
|
|
.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
|
|
|
|
FLPSIZE= ${SMALLFLOPPYSIZE}
|
|
|
|
FLPLABEL= ${SMALLFLOPPYLABEL}
|
|
|
|
.else
|
|
|
|
FLPSIZE= ${FLOPPYSIZE}
|
|
|
|
FLPLABEL= ${FLOPPYLABEL}
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
buildBootFloppy:
|
|
|
|
.if !defined(FSIMAGE)
|
|
|
|
@echo "FSIMAGE undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
|
|
|
.if !defined(KERNFILE)
|
|
|
|
@echo "KERNFILE undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
|
|
|
.if !defined(MFSROOTFILE)
|
|
|
|
@echo "MFSROOTFILE undefined in ${.TARGET}" && exit 1
|
|
|
|
.endif
|
|
|
|
@echo "Running ${.TARGET} for ${FSIMAGE}"
|
|
|
|
@rm -rf ${IMAGEDIR}
|
|
|
|
@mkdir ${IMAGEDIR}
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "Setting up /boot directory for ${FSIMAGE} floppy"
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
@mkdir -p ${IMAGEDIR}/boot
|
2002-04-30 11:50:01 +00:00
|
|
|
.if ${TARGET} == "i386"
|
2004-01-13 18:46:09 +00:00
|
|
|
@${WMAKEENV} kgzip -v -l ${RD}/trees/base/usr/lib/kgzldr.o -o \
|
2004-02-03 22:05:55 +00:00
|
|
|
${IMAGEDIR}/boot/loader ${BOOTDIR}/loader
|
2002-01-20 23:17:52 +00:00
|
|
|
.else
|
2004-02-03 22:05:55 +00:00
|
|
|
@cp ${BOOTDIR}/loader ${IMAGEDIR}/boot
|
|
|
|
.endif
|
|
|
|
@cp -Rp ${BOOTDIR}/*.4th ${BOOTDIR}/defaults ${BOOTDIR}/loader.help \
|
|
|
|
${BOOTDIR}/loader.rc ${IMAGEDIR}/boot
|
|
|
|
.if exists(${HINTSFILE})
|
2004-09-14 04:01:57 +00:00
|
|
|
@cp ${HINTSFILE} ${IMAGEDIR}/boot/device.hints
|
|
|
|
.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
|
|
|
|
@echo 'hint.atkbd.0.flags="0x1"' >> ${IMAGEDIR}/boot/device.hints
|
|
|
|
.endif
|
|
|
|
@gzip -9n ${IMAGEDIR}/boot/device.hints
|
2004-02-03 22:05:55 +00:00
|
|
|
.endif
|
|
|
|
@gzip -9n ${IMAGEDIR}/boot/*.4th ${IMAGEDIR}/boot/loader.help \
|
|
|
|
${IMAGEDIR}/boot/defaults/loader.conf
|
|
|
|
@echo 'bootfile="/kernel"' > ${IMAGEDIR}/boot/loader.conf
|
2004-01-29 19:01:58 +00:00
|
|
|
.if exists(${ACPI_KO})
|
|
|
|
@gzip -9nc ${ACPI_KO} > ${IMAGEDIR}/acpi.ko.gz
|
2004-02-03 22:05:55 +00:00
|
|
|
@echo 'acpi_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
@echo 'acpi_name="/acpi.ko"' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
@echo 'acpi_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
.endif
|
|
|
|
@echo 'mfsroot_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
@echo 'mfsroot_type="mfs_root"' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
@echo 'mfsroot_name="/mfsroot"' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
.if !exists(${ACPI_KO})
|
|
|
|
@echo 'mfsroot_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
|
2004-01-29 19:01:58 +00:00
|
|
|
.endif
|
2006-01-02 07:29:22 +00:00
|
|
|
.if defined(SPLIT_MFSROOT)
|
|
|
|
@echo 'mfsroot_after="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
|
|
|
|
.endif
|
2002-04-30 11:50:01 +00:00
|
|
|
.if ${TARGET_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT}
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
@echo "-P" >> ${IMAGEDIR}/boot.config
|
1999-01-29 11:39:04 +00:00
|
|
|
.endif
|
Overhaul our boot floppy generation system so that it scales better and
requires minimal care and feeding for future releases.
- Consolidate multitude of floppy related constants down to a normal
FLOPPY set for 1.44 floppies and on PC98 a SMALLFLOPPY set for 1.2
floppies. Also, cleanup the i386 arch section by not duplicating
constants that are the same on both machine types (i386 and pc98).
- Update the ZIPNSPLIT macro to generate a file chunks that will actually
fit onto 1.44 floppies formatted with UFS1. Unfortunately, split(1)
seems to be somewhat buggy, so the files generated are slightly larger
than the argument passed to split.
- Split the release.10 target into 3 targers: floppies.1, floppies.2 and
floppies.3 that are added to EXTRAS only if NOFLOPPIES is defined.
floppies.1 builds the install floppies, floppies.2 builds the fixit
floppy, and floppies.3 generates the md5 sums and READMEs for the
floppies/ directory.
- Drop the by now largely obsolete and less useful boot.flp picture. This
was more useful when the mfsroot lived inside the kernel rather than
being loaded from a separate file by the loader.
- Only build a single mfsroot containing no modules that is used for all
installation methods.
- Use split-file.sh to split up a gzipped GENERIC kernel into however many
floppies it takes for the boot kernel. Currently, a stock 5.2 GENERIC
kernel including WITNESS, INVARIANTS, DDB, and other assorted bloat fits
onto 2 additional floppies besides the boot floppy with some room to
spare.
- If SPLIT_MFSROOT is defined, the mfsroot.gz file is similar split into
however many floppies are needed. Currently it is not defined as the
mfsroot.gz fits onto the current boot.flp with room to spare.
- Add a 'makeFloppySet' target which builds a floppy set for a file that
was split using split-file.sh.
- Rename the doMFSKERN target to 'buildBootFloppy' as that more closely
matches what it does now. We no longer build a custom BOOTMFS kernel for
each boot floppy.
- We no longer build a 2.88 boot.flp image to use with emulated CD booting.
The non-emulated cdboot works for almost everyone who boots off of CD and
if it doesn't work on a particular machine, the user can always boot from
the 1.44 floppy images.
- We no longer build a driver floppy or stick kernel modules in the mfsroot
since we now use a stock kernel when booting from floppy.
2004-01-26 19:58:38 +00:00
|
|
|
@rm -f ${IMAGEFILE}
|
|
|
|
@cp ${KERNFILE} ${MFSROOTFILE} ${IMAGEDIR}
|
|
|
|
sh -e ${DOFS_SH} ${IMAGEFILE} ${RD} ${MNT} ${FLPSIZE} ${IMAGEDIR} \
|
|
|
|
${BOOTINODE} ${FLPLABEL}
|
1999-01-05 03:44:08 +00:00
|
|
|
@echo "Created ${RD}/floppies/${FSIMAGE}.flp"
|
2003-02-23 06:27:21 +00:00
|
|
|
|
2005-03-21 19:17:48 +00:00
|
|
|
.if make(package-split)
|
|
|
|
# Targets related to making a package split
|
|
|
|
#
|
|
|
|
# PKG_COPY instructs the script to copy the actual package files rather than
|
|
|
|
# make hard links
|
|
|
|
# PKG_TREE is the path to the package tree to be split
|
|
|
|
# PKG_DEST is the path to the destination tree to create the split in
|
|
|
|
# PKG_VERBOSE asks for verbose output of the layout process
|
2005-05-03 04:11:56 +00:00
|
|
|
# PKG_INDEX is the path to the INDEX file. By default ${PKG_TREE}/INDEX.
|
2005-03-21 19:17:48 +00:00
|
|
|
|
|
|
|
.if defined(PKG_COPY)
|
|
|
|
PKG_DO_COPY= cp
|
|
|
|
.else
|
|
|
|
PKG_DO_COPY= ln
|
|
|
|
.endif
|
2005-05-03 04:11:56 +00:00
|
|
|
PKG_WRKIDX= ${PKG_DEST}/INDEX.master
|
2005-03-21 19:17:48 +00:00
|
|
|
PKG_ENV?=
|
|
|
|
.if defined(TARGET_ARCH)
|
|
|
|
PKG_ENV+= PKG_ARCH=${TARGET_ARCH}
|
|
|
|
.endif
|
|
|
|
.if defined(PKG_VERBOSE)
|
|
|
|
PKG_ENV+= PKG_VERBOSE=1
|
|
|
|
.endif
|
2005-05-03 04:11:56 +00:00
|
|
|
PKG_INDEX?= ${PKG_TREE}/INDEX
|
2005-03-21 19:17:48 +00:00
|
|
|
|
|
|
|
package-split:
|
|
|
|
.if !defined(PKG_TREE)
|
|
|
|
@echo "PKG_TREE must be defined" && exit 1
|
|
|
|
.endif
|
|
|
|
.if !defined(PKG_DEST)
|
|
|
|
@echo "PKG_DEST must be defined" && exit 1
|
|
|
|
.endif
|
|
|
|
@env ${PKG_ENV} python ${.CURDIR}/scripts/package-split.py \
|
2005-05-03 04:11:56 +00:00
|
|
|
${PKG_INDEX} ${PKG_WRKIDX}
|
2005-03-21 19:17:48 +00:00
|
|
|
@env ${PKG_ENV} sh ${.CURDIR}/scripts/package-trees.sh ${PKG_DO_COPY} \
|
2005-05-03 04:11:56 +00:00
|
|
|
${PKG_WRKIDX} ${PKG_TREE} ${PKG_DEST}
|
2005-03-21 19:17:48 +00:00
|
|
|
.endif
|
|
|
|
|
2003-02-23 19:15:55 +00:00
|
|
|
.include <bsd.obj.mk>
|