valgrind: avoid including linux/ptrace.h to fix a musl build error
[openwrt.git] / config / Config-devel.in
1 # Copyright (C) 2006-2013 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6
7 menuconfig DEVEL
8         bool "Advanced configuration options (for developers)"
9         default n
10
11         config BROKEN
12                 bool "Show broken platforms / packages" if DEVEL
13                 default n
14
15         config BINARY_FOLDER
16                 string "Binary folder" if DEVEL
17                 default ""
18
19         config DOWNLOAD_FOLDER
20                 string "Download folder" if DEVEL
21                 default ""
22
23         config LOCALMIRROR
24                 string "Local mirror for source packages" if DEVEL
25                 default ""
26
27         config AUTOREBUILD
28                 bool "Automatic rebuild of packages" if DEVEL
29                 default y
30                 help
31                   Automatically rebuild packages when their files change
32
33         config BUILD_SUFFIX
34                 string "Build suffix to append to the BUILD_DIR variable" if DEVEL
35                 default ""
36                 help
37                   Build suffix to append to the BUILD_DIR variable, i.e: build_dir_suffix
38
39         config TARGET_ROOTFS_DIR
40                 string "Override the default TARGET_ROOTFS_DIR variable" if DEVEL
41                 default ""
42                 help
43                   Override the default TARGET_ROOTFS_DIR variable content $(BUILD_DIR) with custom path.
44                   Use this option to re-define the location of the target root file system directory.
45
46         config CCACHE
47                 bool "Use ccache" if DEVEL
48                 default n
49                 help
50                   Compiler cache; see http://ccache.samba.org/
51
52         config EXTERNAL_KERNEL_TREE
53                 string "Use external kernel tree" if DEVEL
54                 default ""
55
56         config KERNEL_GIT_CLONE_URI
57                 string "Enter git repository to clone" if DEVEL
58                 default ""
59                 help
60                   Enter the full git repository path i.e.:
61                   git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
62                   This will create a git clone of the kernel in your build
63                   directory.
64
65         config KERNEL_GIT_LOCAL_REPOSITORY
66                 string "Enter path to local reference repository" if DEVEL
67                 depends on (KERNEL_GIT_CLONE_URI != "")
68                 default ""
69                 help
70                   Enter a full pathname to a local reference git repository.
71                   In this instance, the --refererence option of git clone will
72                   be used thus creating a quick local clone of your repo.
73
74         config KERNEL_GIT_BRANCH
75                 string "Enter git branch to clone" if DEVEL
76                 depends on (KERNEL_GIT_CLONE_URI != "")
77                 default ""
78                 help
79                   Enter the branch name to checkout after cloning the git repository.
80                   In this instance, the --branch option of git clone will be used.
81                   If unused, the clone's repository HEAD will be checked-out.
82
83         config BUILD_LOG
84                 bool "Enable log files during build process" if DEVEL
85                 help
86                   If enabled log files will be written to the ./log directory
87
88         config SRC_TREE_OVERRIDE
89                 bool "Enable package source tree override" if DEVEL
90                 help
91                   If enabled, you can force a package to use a git tree as source
92                   code instead of the normal tarball. Create a symlink 'git-src'
93                   in the package directory, pointing to the .git tree that you want
94                   to pull the source code from
95
96         config EXTRA_OPTIMIZATION
97                 string "Additional compiler options" if DEVEL
98                 default "-fno-caller-saves"
99                 help
100                   Extra Target-independent optimizations to use when building for the target.