ipq40xx: fritzrepeater-1200: fix MDIO and PHY probing
[openwrt/openwrt.git] / config / Config-devel.in
index d953e6679a8f861e9ef7396d08ec515b1ae7cf8c..cbac91c09dacf16bb50afaef295921c0f905dfab 100644 (file)
@@ -1,16 +1,12 @@
-# Copyright (C) 2006-2013 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
+# SPDX-License-Identifier: GPL-2.0-only
 #
+# Copyright (C) 2006-2013 OpenWrt.org
 
 menuconfig DEVEL
        bool "Advanced configuration options (for developers)"
-       default n
 
        config BROKEN
-               bool "Show broken platforms / packages" if DEVEL
-               default n
+               bool "Show broken platforms / packages / devices" if DEVEL
 
        config BINARY_FOLDER
                string "Binary folder" if DEVEL
@@ -19,6 +15,20 @@ menuconfig DEVEL
                  Store built firmware images and filesystem images in this directory.
                  If not set, uses './bin/$(BOARD)'
 
+       config DOWNLOAD_TOOL_CUSTOM
+               string "Use custom download tool" if DEVEL
+               default ""
+               help
+                 Use and force custom download tool instead of relying on autoselection
+                 between curl if available and wget as a fallback.
+
+                 download.pl supports 3 tools officially aria2c, curl and wget.
+                 If one of the tool is used in this config, download.pl will use the
+                 default args to make use of them.
+
+                 If the provided string is different than aria2c, curl or wget, the command
+                 is used as is and the download url will be appended at the end of such command.
+
        config DOWNLOAD_FOLDER
                string "Download folder" if DEVEL
                default ""
@@ -41,12 +51,17 @@ menuconfig DEVEL
 
        config AUTOREMOVE
                bool "Automatic removal of build directories" if DEVEL
-               default n
                help
                  Automatically delete build directories after make target completed.
                  This allows you to symlink build_dir into a scratch location, e.g. a ramdisk,
                  which does not have enough space to keep a complete build_dir.
 
+       config BUILD_ALL_HOST_TOOLS
+               bool "Compile all host tools" if DEVEL
+               help
+                 Compile all host host tools even if not needed. This is needed to prepare a
+                 universal precompiled host tools archive to use in another buildroot.
+
        config BUILD_SUFFIX
                string "Build suffix to append to the target BUILD_DIR variable" if DEVEL
                default ""
@@ -65,9 +80,20 @@ menuconfig DEVEL
 
        config CCACHE
                bool "Use ccache" if DEVEL
-               default n
                help
-                 Compiler cache; see http://ccache.samba.org/.
+                 Compiler cache; see https://ccache.samba.org/
+
+       config CCACHE_DIR
+               string "Set ccache directory" if CCACHE
+               default ""
+               help
+                 Store ccache in this directory.
+                 If not set, uses './.ccache'
+
+       config KERNEL_CFLAGS
+               string "Kernel extra CFLAGS" if DEVEL
+               default "-falign-functions=32" if TARGET_bcm53xx
+               default ""
 
        config EXTERNAL_KERNEL_TREE
                string "Use external kernel tree" if DEVEL
@@ -90,20 +116,33 @@ menuconfig DEVEL
                  In this instance, the --reference option of git clone will
                  be used thus creating a quick local clone of your repo.
 
-       config KERNEL_GIT_BRANCH
-               string "Enter git branch to clone" if DEVEL
+       config KERNEL_GIT_REF
+               string "Enter git ref at which to checkout" if DEVEL
                depends on (KERNEL_GIT_CLONE_URI != "")
                default ""
                help
-                 Enter the branch name to checkout after cloning the git repository.
-                 In this instance, the --branch option of git clone will be used.
+                 Enter the git ref at which to checkout the git repository
+                 after it is cloned, and before making it a tar-ball.
+                 It can be a git hash or a branch name.
                  If unused, the clone's repository HEAD will be checked-out.
 
+       config KERNEL_GIT_MIRROR_HASH
+               string "Enter hash of Git kernel tree source checkout tarball" if DEVEL
+               depends on (KERNEL_GIT_CLONE_URI != "")
+               default ""
+
        config BUILD_LOG
                bool "Enable log files during build process" if DEVEL
                help
                  If enabled, log files will be written to the ./log directory.
 
+       config BUILD_LOG_DIR
+               string "Log folder" if DEVEL
+               default ""
+               help
+                 Store build logs in this directory.
+                 If not set, uses './logs'
+
        config SRC_TREE_OVERRIDE
                bool "Enable package source tree override" if DEVEL
                help