]> git.ipfire.org Git - ipfire-3.x.git/blob - .config-default
Updated the sendEmail things.
[ipfire-3.x.git] / .config-default
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2008 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20 # This is a sample config. Copy this file to .config and adjust the values #
21 # below to your own needs. #
22 ###############################################################################
23
24 ###############################################################################
25 # User authentication #
26 ###############################################################################
27 # This is the name of the login on the master system. If you are not a ipfire #
28 # developer, you can request an account by the team. You will need this to #
29 # push to git, upload source and down-/upload toolchains. #
30 ###############################################################################
31
32 #IPFIRE_USER=
33
34 ###############################################################################
35 # UUID #
36 ###############################################################################
37 # This ID is for uniquely identify a build host. #
38 ###############################################################################
39
40 #UUID=@UUID@
41
42 ###############################################################################
43 # Target Architecture #
44 ###############################################################################
45 # TARGET is one out of i686|i586|i486|via-c7|via-c3|geodelx. #
46 # This is the target architecture you specify for the system that is built. #
47 # Default is i686. #
48 ###############################################################################
49
50 #TARGET=i686
51
52 ###############################################################################
53 # Embedded Build #
54 ###############################################################################
55 # Set this to "1" to make a build for embedded systems. #
56 # This will use some other configurations, leave out the installer and #
57 # generate images for flash cards. #
58 # Default is 0 (=off). #
59 ###############################################################################
60
61 #EMB=0
62
63 ###############################################################################
64 # Stack Smashing Protector #
65 ###############################################################################
66 # A security feature that prevents buffer overruns. #
67 # This is enabled by default. To disable set it to zero. #
68 # Read more: http://www.research.ibm.com/trl/projects/security/ssp/ #
69 ###############################################################################
70
71 #SSP=1
72
73 ###############################################################################
74 # Position Independent Executeables #
75 ###############################################################################
76 # This allows base addresses relocation of libraries. #
77 # This is enabled by default. To disable set it to zero. #
78 ###############################################################################
79
80 #PIE=1
81
82 ###############################################################################
83 # GRSecurity #
84 ###############################################################################
85 # GRSecurity is an innovative approach to security utilizing a multi-layered #
86 # detection, prevention, and containment model. #
87 # This is enabled by default. To disable set it to zero. #
88 ###############################################################################
89
90 #PAX=1
91
92 ###############################################################################
93 # Addons + Debugging tools #
94 ###############################################################################
95 # These switches let the user say if the build should do the addons or not. #
96 # One can also set if the system should build the debugging tools. #
97 # Purpose is to save build time. #
98 # BUILD_EXTRAS is enabled by default. To disable set it to zero. #
99 # BUILD_DEBUG is disabled by default. To enable set it to one. #
100 ###############################################################################
101
102 #BUILD_EXTRAS=1
103 #BUILD_DEBUG=0
104
105 ###############################################################################
106 # Niceness #
107 ###############################################################################
108 # NICE is the value that indicates the priority to the process it runs with. #
109 # The higher the niceness the less is the priority of the whole task. #
110 # Default is 10. #
111 ###############################################################################
112
113 #NICE=10
114
115 ###############################################################################
116 # Parallelism #
117 ###############################################################################
118 # If you have got more than one processor you can advice make to run more #
119 # than one job a time. You also may want to adjust this when using distcc. #
120 # Default is count of cpus twice + 1. (-jN) #
121 # Possible options: #
122 # -j [N] : N is the number of the parallel jobs. #
123 # -l N : Specify the max. load avg. for the system. #
124 # Read more: http://www.gnu.org/software/automake/manual/make/Parallel.html #
125 ###############################################################################
126
127 #PARALLELISMFLAGS=-j3
128
129 ###############################################################################
130 # Distcc Hosts #
131 ###############################################################################
132 # Distcc lets you run some instances of gcc on other dedicated machines. #
133 # In this list you add the adresses of the hosts. Note that there is no dns #
134 # available in the chroot. #
135 # Default is compling on localhost only. #
136 ###############################################################################
137
138 #DISTCC_HOSTS="localhost"
139
140 ###############################################################################
141 # Mail #
142 ###############################################################################
143 # When the batch build has finished it will send an email. #
144 # Here are some self-explaining options. #
145 ###############################################################################
146
147 #MAIL_SERVER=
148 #MAIL_USER=
149 #MAIL_PASS=
150 #MAIL_FROM="build@ipfire.org"
151 #MAIL_TO="developers@ipfire.org"