config: Remove KERNEL_GIT_LOCAL_REPOSITORY option
[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 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 BUILD_LOG
66 bool "Enable log files during build process" if DEVEL
67 help
68 If enabled log files will be written to the ./log directory
69
70 config SRC_TREE_OVERRIDE
71 bool "Enable package source tree override" if DEVEL
72 help
73 If enabled, you can force a package to use a git tree as source
74 code instead of the normal tarball. Create a symlink 'git-src'
75 in the package directory, pointing to the .git tree that you want
76 to pull the source code from
77
78 config EXTRA_OPTIMIZATION
79 string "Additional compiler options" if DEVEL
80 default "-fno-caller-saves"
81 help
82 Extra Target-independent optimizations to use when building for the target.