Update example.conf to be more relevant to NetBSD 1.6, and to take

advantage of the support for symlinks to shared/* .
This commit is contained in:
lukem 2002-10-08 07:38:52 +00:00
parent 7e912cff61
commit 887a1407d6

View File

@ -1,4 +1,4 @@
# $NetBSD: example.conf,v 1.5 2002/10/01 00:58:00 lukem Exp $
# $NetBSD: example.conf,v 1.6 2002/10/08 07:38:52 lukem Exp $
#
# Makefile fragment for CD sets; includes config information.
@ -9,26 +9,33 @@
CD_IMAGES= cd1 cd2
##############################################################################
# The maximum size of an individual CD.
#CD_SIZE= 700000
##############################################################################
# The NetBSD release being packaged on this CD set. This also implies
# inclusion of a config file for that release, named NetBSD-${CD_RELEASE}.mk.
# That file defines the various per-port specifics for that release.
CD_RELEASE= 1.5
CD_RELEASE= 1.6
##############################################################################
# The CD volume IDs for each CD-ROM image. This will show up as the
# "volume label" on most operating systems. This is REQUIRED for each image.
# Typically only 16 characters should be used for maximum OS compatibility.
VOLID.cd1= NetBSD ${CD_RELEASE} CD 1
VOLID.cd2= NetBSD ${CD_RELEASE} CD 2
.for image in ${CD_IMAGES}
VOLID.${image}= NetBSD ${CD_RELEASE} CD ${image:S/^cd//}
.endfor
# The "abstract file" name. If there is a file in the CD root describing
# use of the CD or booting info, this may be useful to some OS's.
#ABSTRACT.cd1= booting.txt
#ABSTRACT.cd2= booting.txt
#.for image in ${CD_IMAGES}
#ABSTRACT.${image}= booting.txt
#.endfor
# The "copyright file" name. If there is a file in the CD root describing
# the copyright of the contained files, this may be useful to some OS's.
@ -62,10 +69,6 @@ PREPARER= NetBSD CD Build System
# * macppc and mac68k will cause the inclusion of HFS partition and
# filesystem info on the CD, with automatic MacBinary probing and encoding.
#
# * alpha and macppc cannot boot on the same disc. This will cause a warning
# in the build, and macppc will override. This will be fixed by a better
# installboot for alpha in the future.
#
# * macppc and vax cannot boot on the same disc. These platforms use the
# same locations in block 0 to store boot information. This will cause a
# warning in the build, and macppc will override.
@ -76,21 +79,17 @@ PREPARER= NetBSD CD Build System
# and sparc64 machines will have to boot with "boot cdrom:g" instead of
# "boot cdrom".
# Independent ports:
# alpha arm32 i386 macppc pc532 sparc sparc64 vax
# m68k ports:
# amiga atari hp300 mac68k mvme68k news68k next68k sun3
# mipsel ports:
# arc cobalt hpcmips pmax
BASE_PORTS.cd1= i386 macppc shared/powerpc sparc sparc64 source
BASE_PORTS.cd1= i386 arm32 macppc pc532 sparc sparc64 source
BASE_PORTS.cd2= amiga atari hp300 mac68k mvme68k news68k next68k sun3 \
arc cobalt hpcmips pmax alpha vax
BASE_PORTS.cd2= alpha \
amiga atari hp300 mac68k mvme68k news68k next68k sun3 \
shared/m68k \
arc cobalt hpcmips pmax shared/mipsel \
vax
.for image in ${CD_IMAGES}
#INTDIRS.${image}+= packages
BASE_PORTS.${image}+= CHANGES CHANGES.prev LAST_MINUTE MIRRORS README.files
BASE_PORTS.${image}+= CHANGES CHANGES.prev LAST_MINUTE README.files shared/ALL
.endfor
##############################################################################