aboutsummaryrefslogtreecommitdiff
blob: 2272cb86e2ca97781d143d92ab7ade992733bd3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# /etc/catalyst/catalyst.conf

# Simple descriptions of catalyst settings. Please refer to the online
# documentation for more information.

# Creates a .DIGESTS file containing the hash output from each of the selected
# hashes.
#
# To see a list of supported hashes, run
#
#     $ python3 -c 'import hashlib; print(hashlib.algorithms_available)'
#
digests = ["blake2b", "sha512"]

# envscript allows users to set options such as http proxies, MAKEOPTS,
# GENTOO_MIRRORS, or any other environment variables needed for building.
# The envscript file sets environment variables like so:
# export FOO="bar"
envscript = "/etc/catalyst/catalystrc"

# options set different build-time options for catalyst.
options = [
	# Attempt to resume a failed build, clear the autoresume flags with the
	# -a option to the catalyst cmdline.  -p will clear the autoresume
	# flags as well as your pkgcache and kerncache
	"autoresume",

	# Enables the bindist USE flag, please see package specific definition,
	# however, it is suggested to enable this if redistributing builds.
	# This optional USE flag is normally cleaned from the make.conf file on
	# completion of the stage.  For a non-cleaned version, use
	# sticky-config also (see below)
	"bindist",

	# Enable FEATURES=ccache
	# "ccache",

	# Enable FEATURES=distcc. You have to set distcc_hosts in your spec
	# file.
	# "distcc",

	# Enable FEATURES=icecream
	# "icecream",

	# Prevents the removal of the working chroot path and any autoresume
	# files or points.
	# "keepwork",

	# keeps a tbz2 of your built kernel and modules (useful if your
	# build stops in livecd-stage2)
	"kerncache",

	# Build and use binary packages
	"pkgcache",

	# Use the build output of a previous target if it exists rather than
	# the tarball
	"seedcache",

	# enables the code that will keep any internal 'catalyst_use' flags
	# added to the USE= for building the stage.  These are usually added
	# for legal or specific needs in building the the early stage.  Mostly
	# it is the 'bindist' USE flag option that is used for legal reasons,
	# please see its specific definition.  It will also keep any
	# /etc/portage/package.* files or directories.
	# "sticky-config",
]

# port_logdir is where all build logs will be kept. This dir will be automatically cleaned
# of all logs over 30 days old. If left undefined the logs will remain in the build directory
# as usual and get cleaned every time a stage build is restarted.
# port_logdir = "/var/tmp/catalyst/tmp"

# var_tmpfs_portage will mount a tmpfs for /var/tmp/portage so building takes place in RAM
# this feature requires a pretty large tmpfs ({open,libre}office needs ~8GB to build)
# WARNING: If you use too much RAM everything will fail horribly and it is not our fault.
# set size of /var/tmp/portage tmpfs in gigabytes
# var_tmpfs_portage = 16