config: add KERNEL_DYNAMIC_DEBUG option
[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                 default ""
68                 help
69                   Enter a full pathname to a local reference git repository.
70                   In this instance, the --refererence option of git clone will
71                   be used thus creating a quick local clone of your repo.
72
73         config BUILD_LOG
74                 bool "Enable log files during build process" if DEVEL
75                 help
76                   If enabled log files will be written to the ./log directory
77
78         config SRC_TREE_OVERRIDE
79                 bool "Enable package source tree override" if DEVEL
80                 help
81                   If enabled, you can force a package to use a git tree as source
82                   code instead of the normal tarball. Create a symlink 'git-src'
83                   in the package directory, pointing to the .git tree that you want
84                   to pull the source code from
85
86         config EXTRA_OPTIMIZATION
87                 string "Additional compiler options" if DEVEL
88                 default "-fno-caller-saves"
89                 help
90                   Extra Target-independent optimizations to use when building for the target.