Kconfig: Various typo/grammar/line-length fixes in Config*.in files
[openwrt/staging/chunkeey.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
44 custom path. Use this option to re-define the location of the target
45 root filesystem directory.
46
47 config CCACHE
48 bool "Use ccache" if DEVEL
49 default n
50 help
51 Compiler cache; see http://ccache.samba.org/.
52
53 config EXTERNAL_KERNEL_TREE
54 string "Use external kernel tree" if DEVEL
55 default ""
56
57 config KERNEL_GIT_CLONE_URI
58 string "Enter git repository to clone" if DEVEL
59 default ""
60 help
61 Enter the full git repository path i.e.:
62 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
63 This will create a git clone of the kernel in your build 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 --reference 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.