[BACK]Return to 1.6.2.conf CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / distrib / cdrom

Annotation of src/distrib/cdrom/1.6.2.conf, Revision 1.1

1.1     ! jmc         1: # $NetBSD: 1.6.1.conf,v 1.2 2003/07/26 17:06:37 salo Exp $
        !             2: #
        !             3: # Makefile fragment for CD sets; includes config information.
        !             4:
        !             5: ##############################################################################
        !             6: # The names of the individual CD images, without ".iso".
        !             7: # This also indicates the suffix of configuration variables later in this file
        !             8: # which are CD-image specific.
        !             9:
        !            10: CD_IMAGES=     multi-cd1 multi-cd2
        !            11: CD_IMAGES+=    acorn26cd acorn32cd algorcd alphacd amigacd arccd ataricd
        !            12: CD_IMAGES+=    catscd cobaltcd dreamcastcd evbarmcd evbmipscd evbsh3cd hp300cd
        !            13: CD_IMAGES+=    hpcarmcd hpcmipscd hpcshcd i386cd luna68kcd mac68kcd macppccd
        !            14: CD_IMAGES+=    mipscocd mvme68kcd netwindercd news68kcd newsmipscd next68kcd
        !            15: CD_IMAGES+=    pmaxcd prepcd sandpointcd sbmipscd sgimipscd sharkcd
        !            16: CD_IMAGES+=    sourcecd sparccd sparc64cd sun2cd sun3cd vaxcd walnutcd x68kcd
        !            17:
        !            18: ##############################################################################
        !            19: # The maximum size of an individual CD.
        !            20:
        !            21: CD_SIZE=       700000
        !            22:
        !            23: ##############################################################################
        !            24: # The NetBSD release being packaged on this CD set.  This also implies
        !            25: # inclusion of a config file for that release, named NetBSD-${CD_RELEASE}.mk.
        !            26: # That file defines the various per-port specifics for that release.
        !            27:
        !            28: CD_RELEASE=    1.6.2
        !            29:
        !            30: ##############################################################################
        !            31: # The CD volume IDs for each CD-ROM image.  This will show up as the
        !            32: # "volume label" on most operating systems.  This is REQUIRED for each image.
        !            33: # Typically only 16 characters should be used for maximum OS compatibility.
        !            34:
        !            35: .for image in ${CD_IMAGES}
        !            36: VOLID.${image}=        NetBSD ${CD_RELEASE} CD ${image:S/^cd//}
        !            37: .endfor
        !            38:
        !            39: # The "abstract file" name.  If there is a file in the CD root describing
        !            40: # use of the CD or booting info, this may be useful to some OS's.
        !            41:
        !            42: #.for image in ${CD_IMAGES}
        !            43: #ABSTRACT.${image}=    booting.txt
        !            44: #.endfor
        !            45:
        !            46: # The "copyright file" name.  If there is a file in the CD root describing
        !            47: # the copyright of the contained files, this may be useful to some OS's.
        !            48: # This usually needs ADDFILES to go along with it.
        !            49:
        !            50: #.for image in ${CD_IMAGES}
        !            51: #COPYRIGHT.${image}=   copyrght.txt
        !            52: #ADDFILES.${image}+=   copyrght.txt:${.CURDIR}/extra/copyright.txt,link
        !            53: #.endfor
        !            54:
        !            55: # The "publisher name" field on the CD-ROM.  Room for 128 characters.
        !            56:
        !            57: PUBLISHER=             The NetBSD Foundation, Inc. / http://www.NetBSD.org/
        !            58:
        !            59: # The "preparer name" field on the CD-ROM.  Room for 128 characters.
        !            60:
        !            61: PREPARER=              NetBSD CD Build System
        !            62:
        !            63: ##############################################################################
        !            64: # The ports for which the base OS binaries will be included.
        !            65: # MACHINE_ARCH shared distribution directories and the "ALL" shared
        !            66: # distribution directory are added automatically where needed.
        !            67: #
        !            68: # The following ports, if included, will be bootable on their respective
        !            69: # CD images:
        !            70: #
        !            71: #     alpha, cats, i386, macppc, pmax, sparc, sparc64, sun3, vax.
        !            72: #
        !            73: # Special notes on booting:
        !            74: #
        !            75: # * macppc and mac68k will cause the inclusion of HFS partition and
        !            76: #   filesystem info on the CD, with automatic MacBinary probing and encoding.
        !            77: #
        !            78: # * macppc cannot boot on the same disc as either pmax or vax.
        !            79: #   macppc uses the same locations in block 0 to store boot
        !            80: #   information as pmax and vax.
        !            81: #   This will cause a warning in the build, and macppc will override.
        !            82: #
        !            83: # * sparc64 cannot boot using default boot arguments on the same disc as
        !            84: #   the sun3x model of sun3.  These platforms use the same partitions
        !            85: #   in the Sun boot map by default.  This will cause a warning in the build,
        !            86: #   and sparc64 machines will have to boot with "boot cdrom:g" instead of
        !            87: #   "boot cdrom".
        !            88:
        !            89: BASE_PORTS.multi-cd1=  i386 macppc sparc sparc64 source
        !            90:
        !            91: BASE_PORTS.multi-cd2= alpha \
        !            92:                amiga atari hp300 mac68k mvme68k news68k next68k sun3 \
        !            93:                cobalt hpcmips pmax vax
        !            94: BASE_PORTS.acorn26cd=acorn26
        !            95: BASE_PORTS.acorn32cd=acorn32
        !            96: BASE_PORTS.algorcd=algor
        !            97: BASE_PORTS.alphacd=alpha
        !            98: BASE_PORTS.amigacd=amiga
        !            99: BASE_PORTS.arccd=arc
        !           100: BASE_PORTS.ataricd=atari
        !           101: BASE_PORTS.catscd=cats
        !           102: BASE_PORTS.cobaltcd=cobalt
        !           103: BASE_PORTS.dreamcastcd=dreamcast
        !           104: BASE_PORTS.evbarmcd=evbarm
        !           105: BASE_PORTS.evbmipscd=evbmips
        !           106: BASE_PORTS.evbsh3cd=evbsh3
        !           107: BASE_PORTS.hp300cd=hp300
        !           108: BASE_PORTS.hpcarmcd=hpcarm
        !           109: BASE_PORTS.hpcmipscd=hpcmips
        !           110: BASE_PORTS.hpcshcd=hpcsh
        !           111: BASE_PORTS.i386cd=i386
        !           112: BASE_PORTS.luna68kcd=luna68k
        !           113: BASE_PORTS.mac68kcd=mac68k
        !           114: BASE_PORTS.macppccd=macppc
        !           115: BASE_PORTS.mipscocd=mipsco
        !           116: BASE_PORTS.mvme68kcd=mvme68k
        !           117: BASE_PORTS.netwindercd=netwinder
        !           118: BASE_PORTS.news68kcd=news68k
        !           119: BASE_PORTS.newsmipscd=newsmips
        !           120: BASE_PORTS.next68kcd=next68k
        !           121: BASE_PORTS.pmaxcd=pmax
        !           122: BASE_PORTS.prepcd=prep
        !           123: BASE_PORTS.sandpointcd=sandpoint
        !           124: BASE_PORTS.sbmipscd=sbmips
        !           125: BASE_PORTS.sgimipscd=sgimips
        !           126: BASE_PORTS.sharkcd=shark
        !           127: BASE_PORTS.sourcecd=source
        !           128: BASE_PORTS.sparccd=sparc
        !           129: BASE_PORTS.sparc64cd=sparc64
        !           130: BASE_PORTS.sun2cd=sun2
        !           131: BASE_PORTS.sun3cd=sun3
        !           132: BASE_PORTS.vaxcd=vax
        !           133: BASE_PORTS.walnutcd=walnut
        !           134: BASE_PORTS.x68kcd=x68k
        !           135:
        !           136: .for image in ${CD_IMAGES}
        !           137: #INTDIRS.${image}+=    packages
        !           138: BASE_PORTS.${image}+=  CHANGES CHANGES-1.6.1 CHANGES-1.6.2 CHANGES.prev LAST_MINUTE README.files
        !           139: .endfor
        !           140:
        !           141: ##############################################################################
        !           142: # These provide additional functionality to some host OS's that may or may
        !           143: # not be desired in some cases.  Uncomment to enable, or comment out to
        !           144: # disable.
        !           145:
        !           146: # USE_ROCK_RIDGE adds -r to mkisofs to use full Un*x style pathnames and
        !           147: # permissions.  For most situations, this is needed.
        !           148:
        !           149: USE_ROCK_RIDGE=        yes
        !           150:
        !           151: # USE_LONG_NAMES adds -l to mkisofs to use full 32-character ISO-9660 names.
        !           152: # This allows some host OS's, particularly AmigaDOS, the ability to see long
        !           153: # filenames in most cases.
        !           154:
        !           155: USE_LONG_NAMES=        yes
        !           156:
        !           157: # USE_TRANS_TBL adds -T to mkisofs to provide long names through the use of
        !           158: # TRANS.TBL translation table files.  (These will automatically be hidden
        !           159: # from Joliet and HFS trees.)  Typically this is not used in conjunction
        !           160: # with USE_LONG_NAMES, but may be used if names still exceed 32 characters.
        !           161:
        !           162: #USE_TRANS_TBL=        yes
        !           163:
        !           164: # USE_JOLIET adds -J to mkisofs to provide Joliet long filename support for
        !           165: # Microsoft Windows OS's
        !           166:
        !           167: USE_JOLIET=    yes
        !           168:
        !           169: # USE_APPLE_ISO adds -apple to mkisofs to provide the Apple ISO-9660
        !           170: # Extensions.  This gives full MacOS attribute information to files without
        !           171: # the overhead of full HFS.  (A disc that is forced into HFS mode by the
        !           172: # presence of mac68k or macppc will use HFS, not the Apple ISO Extensions.)
        !           173:
        !           174: USE_APPLE_ISO= yes
        !           175:
        !           176: # LOG_MKISOFS causes the mkisofs command to be logged in "extra verbose"
        !           177: # mode (-v -v) to the image filename with .log appended.
        !           178:
        !           179: #LOG_MKISOFS=  yes
        !           180:
        !           181: ##############################################################################
        !           182: # "Easter egg" file.  If this option is present, the standard 32k end padding
        !           183: # is replaced by a message in this file (no more than 16k), padded to 32k
        !           184: # with null bytes.
        !           185:
        !           186: #EASTER_EGG=   ${.CURDIR}/extra/egg.txt
        !           187:
        !           188: ##############################################################################

CVSweb <webmaster@jp.NetBSD.org>