]> git.ipfire.org Git - ipfire-3.x.git/blob - .config-default
Added new package: tcpdump.
[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|atom330|core2duo|via-c7|via-c3|geodelx. #
46 # This is the target architecture you specify for the system that is built. #
47 # Default is i686. #
48 # ALLOWED_TARGETS is a setting for cron builds only. By default it includes #
49 # all targets the host can build (./make.sh check targets). #
50 # So, if you want to build only some of them, define them in ALLOWED_TARGETS. #
51 ###############################################################################
52
53 #TARGET=i686
54 #ALLOWED_TARGETS="i686 i586 atom330" # Just an example
55
56 ###############################################################################
57 # Embedded Build #
58 ###############################################################################
59 # Set this to "1" to make a build for embedded systems. #
60 # This will use some other configurations, leave out the installer and #
61 # generate images for flash cards. #
62 # Default is 0 (=off). #
63 ###############################################################################
64
65 #EMB=0
66
67 ###############################################################################
68 # Addons + Debugging tools #
69 ###############################################################################
70 # These switches let the user say if the build should do the addons or not. #
71 # One can also set if the system should build the debugging tools. #
72 # Purpose is to save build time. #
73 # BUILD_EXTRAS is enabled by default. To disable set it to zero. #
74 # BUILD_DEBUG is disabled by default. To enable set it to one. #
75 ###############################################################################
76
77 #BUILD_EXTRAS=1
78 #BUILD_DEBUG=0
79
80 ###############################################################################
81 # Niceness #
82 ###############################################################################
83 # NICE is the value that indicates the priority to the process it runs with. #
84 # The higher the niceness the less is the priority of the whole task. #
85 # Default is 10. #
86 ###############################################################################
87
88 #NICE=10
89
90 ###############################################################################
91 # Parallelism #
92 ###############################################################################
93 # If you have got more than one processor you can advice make to run more #
94 # than one job a time. You also may want to adjust this when using distcc. #
95 # Default is count of cpus twice + 1. (-jN) #
96 # Possible options: #
97 # -j [N] : N is the number of the parallel jobs. #
98 # -l N : Specify the max. load avg. for the system. #
99 # Read more: http://www.gnu.org/software/automake/manual/make/Parallel.html #
100 ###############################################################################
101
102 #PARALLELISMFLAGS=-j3
103
104 ###############################################################################
105 # Distcc Config #
106 ###############################################################################
107 # DISTCC_PORT: Allows the definition of an other port than the default one. #
108 # If you change this, you need to restart the local distcc daemon. #
109 # Default is tcp/3632. "0" disables the start of the distcc daemon. #
110 # #
111 # DISTCC_HOSTS: Distcc lets you run some instances of gcc on other dedicated #
112 # machines. In this list you add the adresses of the hosts. Note that there #
113 # is no dns available in the chroot. #
114 # Default is compling on localhost only. #
115 ###############################################################################
116
117 #DISTCC_PORT=3632
118 #DISTCC_JOBS=4
119 #DISTCC_HOSTS="localhost"
120
121 ###############################################################################
122 # Mail #
123 ###############################################################################
124 # When the batch build has finished it will send an email. #
125 # Here are some self-explaining options. #
126 ###############################################################################
127
128 #MAIL_SERVER=
129 #MAIL_USER=
130 #MAIL_PASS=
131 #MAIL_FROM="build@ipfire.org"
132 #MAIL_TO="developers@ipfire.org"