Makefile (0fdc50dfab47d525b71a9f0d8310746cdc0c09c5) | Makefile (c027b02d89fd42ecee911c39e9098b9609a5ca0b) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# =========================================================================== 3# Kernel configuration targets 4# These targets are used from top-level makefile 5 6PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \ 7 build_menuconfig build_nconfig build_gconfig build_xconfig 8 9ifdef KBUILD_KCONFIG 10Kconfig := $(KBUILD_KCONFIG) 11else 12Kconfig := Kconfig 13endif 14 | 1# SPDX-License-Identifier: GPL-2.0 2# =========================================================================== 3# Kernel configuration targets 4# These targets are used from top-level makefile 5 6PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \ 7 build_menuconfig build_nconfig build_gconfig build_xconfig 8 9ifdef KBUILD_KCONFIG 10Kconfig := $(KBUILD_KCONFIG) 11else 12Kconfig := Kconfig 13endif 14 |
15ifndef KBUILD_DEFCONFIG 16KBUILD_DEFCONFIG := defconfig 17endif 18 | |
19ifeq ($(quiet),silent_) 20silent := -s 21endif 22 23# We need this, in case the user has it in its environment 24unexport CONFIG_ 25 26xconfig: $(obj)/qconf --- 95 unchanged lines hidden (view full) --- 122help: 123 @echo ' config - Update current config utilising a line-oriented program' 124 @echo ' nconfig - Update current config utilising a ncurses menu based program' 125 @echo ' menuconfig - Update current config utilising a menu based program' 126 @echo ' xconfig - Update current config utilising a Qt based front-end' 127 @echo ' gconfig - Update current config utilising a GTK+ based front-end' 128 @echo ' oldconfig - Update current config utilising a provided .config as base' 129 @echo ' localmodconfig - Update current config disabling modules not loaded' | 15ifeq ($(quiet),silent_) 16silent := -s 17endif 18 19# We need this, in case the user has it in its environment 20unexport CONFIG_ 21 22xconfig: $(obj)/qconf --- 95 unchanged lines hidden (view full) --- 118help: 119 @echo ' config - Update current config utilising a line-oriented program' 120 @echo ' nconfig - Update current config utilising a ncurses menu based program' 121 @echo ' menuconfig - Update current config utilising a menu based program' 122 @echo ' xconfig - Update current config utilising a Qt based front-end' 123 @echo ' gconfig - Update current config utilising a GTK+ based front-end' 124 @echo ' oldconfig - Update current config utilising a provided .config as base' 125 @echo ' localmodconfig - Update current config disabling modules not loaded' |
126 @echo ' except those preserved by LMC_KEEP environment variable' |
|
130 @echo ' localyesconfig - Update current config converting local mods to core' | 127 @echo ' localyesconfig - Update current config converting local mods to core' |
128 @echo ' except those preserved by LMC_KEEP environment variable' |
|
131 @echo ' defconfig - New config with default from ARCH supplied defconfig' 132 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)' 133 @echo ' allnoconfig - New config where all options are answered with no' 134 @echo ' allyesconfig - New config where all options are accepted with yes' 135 @echo ' allmodconfig - New config selecting modules when possible' 136 @echo ' alldefconfig - New config with all symbols set to default' 137 @echo ' randconfig - New config with random answer to all options' 138 @echo ' yes2modconfig - Change answers from yes to mod if possible' --- 78 unchanged lines hidden --- | 129 @echo ' defconfig - New config with default from ARCH supplied defconfig' 130 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)' 131 @echo ' allnoconfig - New config where all options are answered with no' 132 @echo ' allyesconfig - New config where all options are accepted with yes' 133 @echo ' allmodconfig - New config selecting modules when possible' 134 @echo ' alldefconfig - New config with all symbols set to default' 135 @echo ' randconfig - New config with random answer to all options' 136 @echo ' yes2modconfig - Change answers from yes to mod if possible' --- 78 unchanged lines hidden --- |