View | Details | Raw Unified | Return to bug 39515
Collapse All | Expand All

(-)cvsup/README (+4 lines)
Lines 15-20 Link Here
15
15
16
    stable-supfile		Main source tree
16
    stable-supfile		Main source tree
17
17
18
To maintain the sources for the FreeBSD-release security branch, use:
19
20
    release-supfile             Main source tree
21
18
To maintain a copy of the CVS repository containing all versions of
22
To maintain a copy of the CVS repository containing all versions of
19
FreeBSD, use:
23
FreeBSD, use:
20
24
(-)cvsup/release-supfile (+110 lines)
Line 0 Link Here
1
# $FreeBSD: $
2
#
3
# This file contains all of the "CVSup collections" that make up the
4
# FreeBSD-release source tree with the latest security patches if any.
5
#
6
# CVSup (CVS Update Protocol) allows you to download the latest CVS
7
# tree (or any branch of development therefrom) to your system easily
8
# and efficiently (far more so than with sup, which CVSup is aimed
9
# at replacing).  If you're running CVSup interactively, and are
10
# currently using an X display server, you should run CVSup as follows
11
# to keep your CVS tree up-to-date:
12
#
13
#	cvsup release-supfile
14
#
15
# If not running X, or invoking cvsup from a non-interactive script, then
16
# run it as follows:
17
#
18
#	cvsup -g -L 2 release-supfile
19
#
20
# You may wish to change some of the settings in this file to better
21
# suit your system:
22
#
23
# host=CHANGE_THIS.FreeBSD.org
24
#		This specifies the server host which will supply the
25
#		file updates.  You must change it to one of the CVSup
26
#		mirror sites listed in the FreeBSD Handbook at
27
#		http://www.freebsd.org/handbook/mirrors.html.
28
#		You can	override this setting on the command line
29
#		with cvsup's "-h host" option.
30
#
31
# base=/usr
32
#		This specifies the root where CVSup will store information
33
#		about the collections you have transferred to your system.
34
#		A setting of "/usr" will generate this information in
35
#		/usr/sup.  Even if you are CVSupping a large number of
36
#		collections, you will be hard pressed to generate more than
37
#		~1MB of data in this directory.  You can override the
38
#		"base" setting on the command line with cvsup's "-b base"
39
#		option.  This directory must exist in order to run CVSup.
40
#
41
# prefix=/usr
42
#		This specifies where to place the requested files.  A
43
#		setting of "/usr" will place all of the files requested
44
#		in "/usr/src" (e.g., "/usr/src/bin", "/usr/src/lib").
45
#		The prefix directory must exist in order to run CVSup.
46
#
47
###############################################################################
48
#
49
# DANGER!  WARNING!  LOOK OUT!  VORSICHT!
50
#
51
# If you add any of the ports collections to this file, be sure to
52
# specify them like this:
53
#
54
#   ports-all tag=.
55
#
56
# If you leave out the "tag=." portion, CVSup will delete all of
57
# the files in your ports tree.  That is because the ports collections
58
# do not use the same tags as the main part of the FreeBSD source tree.
59
#
60
###############################################################################
61
62
# Defaults that apply to all the collections
63
#
64
# IMPORTANT: Change the next line to use one of the CVSup mirror sites
65
# listed at http://www.freebsd.org/handbook/mirrors.html.
66
*default host=CHANGE_THIS.FreeBSD.org
67
*default base=/usr
68
*default prefix=/usr
69
# The following line is for 4.6-RELEASE.  If you want 4.5-RELEASE
70
# change "RELENG_4_6" to "RELENG_4_5".
71
*default release=cvs tag=RELENG_4_6
72
*default delete use-rel-suffix
73
74
# If your network link is a T1 or faster, comment out the following line.
75
*default compress
76
77
## Main Source Tree.
78
#
79
# The easiest way to get the main source tree is to use the "src-all"
80
# mega-collection.  It includes all of the individual "src-*" collections.
81
# Please note:  If you want to track -STABLE, leave this uncommented.
82
src-all
83
84
# These are the individual collections that make up "src-all".  If you
85
# use these, be sure to comment out "src-all" above.
86
#src-base
87
#src-bin
88
#src-contrib
89
#src-etc
90
#src-games
91
#src-gnu
92
#src-include
93
#src-kerberos5
94
#src-kerberosIV
95
#src-lib
96
#src-libexec
97
#src-release
98
#src-sbin
99
#src-share
100
#src-sys
101
#src-tools
102
#src-usrbin
103
#src-usrsbin
104
# These are the individual collections that make up FreeBSD's crypto
105
# collection. They are no longer export-restricted and are a part of
106
# src-all
107
#src-crypto
108
#src-eBones
109
#src-secure
110
#src-sys-crypto

Return to bug 39515