]> git.ipfire.org Git - ipfire-3.x.git/blob - .config-default
Renamed EMBEDDED to EMB.
[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 # Niceness #
94 ###############################################################################
95 # NICE is the value that indicates the priority to the process it runs with. #
96 # The higher the niceness the less is the priority of the whole task. #
97 # Default is 10. #
98 ###############################################################################
99
100 #NICE=10
101
102 ###############################################################################
103 # Parallelism #
104 ###############################################################################
105 # If you have got more than one processor you can advice make to run more #
106 # than one job a time. You also may want to adjust this when using distcc. #
107 # Default is count of cpus twice + 1. (-jN) #
108 # Possible options: #
109 # -j [N] : N is the number of the parallel jobs. #
110 # -l N : Specify the max. load avg. for the system. #
111 # Read more: http://www.gnu.org/software/automake/manual/make/Parallel.html #
112 ###############################################################################
113
114 #PARALLELISMFLAGS=-j3
115
116 ###############################################################################
117 # Distcc Hosts #
118 ###############################################################################
119 # Distcc lets you run some instances of gcc on other dedicated machines. #
120 # In this list you add the adresses of the hosts. Note that there is no dns #
121 # available in the chroot. #
122 # Default is compling on localhost only. #
123 ###############################################################################
124
125 #DISTCC_HOSTS="localhost"