blob: 2d97aab8d21e881ff427f77bf9dbdb90e1a3a8cc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Masahiro Yamada0a9064f2014-07-30 14:08:13 +09002# ===========================================================================
3# Kernel configuration targets
4# These targets are used from top-level makefile
5
Tom Rini587e4a42020-03-27 11:46:27 -04006PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \
7 build_menuconfig build_nconfig build_gconfig build_xconfig
Masahiro Yamada0a9064f2014-07-30 14:08:13 +09008
Masahiro Yamada5f9eb222015-03-13 18:08:55 +09009# Added for U-Boot
10# Linux has defconfig files in arch/$(SRCARCH)/configs/,
11# on the other hand, U-Boot does in configs/.
12# Set SRCARCH to .. fake this Makefile.
13SRCARCH := ..
14
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090015ifdef KBUILD_KCONFIG
16Kconfig := $(KBUILD_KCONFIG)
17else
18Kconfig := Kconfig
19endif
20
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090021ifeq ($(quiet),silent_)
22silent := -s
23endif
24
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090025# We need this, in case the user has it in its environment
26unexport CONFIG_
27
28xconfig: $(obj)/qconf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090029 $< $(silent) $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090030
31gconfig: $(obj)/gconf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090032 $< $(silent) $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090033
34menuconfig: $(obj)/mconf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090035 $< $(silent) $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090036
37config: $(obj)/conf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090038 $< $(silent) --oldaskconfig $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090039
40nconfig: $(obj)/nconf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090041 $< $(silent) $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090042
Tom Rini587e4a42020-03-27 11:46:27 -040043build_menuconfig: $(obj)/mconf
44
45build_nconfig: $(obj)/nconf
46
47build_gconfig: $(obj)/gconf
48
49build_xconfig: $(obj)/qconf
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090050
Eugeniu Roscae91610d2018-05-19 14:13:50 +020051localyesconfig localmodconfig: $(obj)/conf
Eugeniu Roscae91610d2018-05-19 14:13:50 +020052 $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020053 $(Q)if [ -f .config ]; then \
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090054 cmp -s .tmp.config .config || \
55 (mv -f .config .config.old.1; \
56 mv -f .tmp.config .config; \
Eugeniu Roscae91610d2018-05-19 14:13:50 +020057 $< $(silent) --oldconfig $(Kconfig); \
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090058 mv -f .config.old.1 .config.old) \
59 else \
60 mv -f .tmp.config .config; \
Eugeniu Roscae91610d2018-05-19 14:13:50 +020061 $< $(silent) --oldconfig $(Kconfig); \
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090062 fi
63 $(Q)rm -f .tmp.config
64
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090065# These targets map 1:1 to the commandline options of 'conf'
Tom Rini587e4a42020-03-27 11:46:27 -040066#
67# Note:
68# syncconfig has become an internal implementation detail and is now
69# deprecated for external use
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090070simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
Tom Rini587e4a42020-03-27 11:46:27 -040071 alldefconfig randconfig listnewconfig olddefconfig syncconfig
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090072PHONY += $(simple-targets)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090073
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090074$(simple-targets): $(obj)/conf
75 $< $(silent) --$@ $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090076
Tom Rini473fc272021-06-17 18:07:25 -040077PHONY += savedefconfig defconfig
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090078
79savedefconfig: $(obj)/conf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090080 $< $(silent) --$@=defconfig $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090081
82defconfig: $(obj)/conf
83ifeq ($(KBUILD_DEFCONFIG),)
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090084 $< $(silent) --defconfig $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090085else
Masahiro Yamadabf7ab1e2017-02-11 12:39:54 +090086ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090087 @$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
88 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
Masahiro Yamadabf7ab1e2017-02-11 12:39:54 +090089else
90 @$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
91 $(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
92endif
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090093endif
94
95%_defconfig: $(obj)/conf
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090096 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090097
Masahiro Yamada5f9eb222015-03-13 18:08:55 +090098# Added for U-Boot (backward compatibility)
99%_config: %_defconfig
100 @:
101
Jason Kacines06b51f72023-07-11 16:20:46 -0500102configfiles=$(wildcard $(srctree)/kernel/configs/$@ \
103 $(srctree)/arch/$(SRCARCH)/configs/$@ \
104 $(shell find $(srctree)/board -name "$@"))
Masahiro Yamadaad618992014-10-30 11:06:12 +0900105
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900106%.config: $(obj)/conf
107 $(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
108 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
109 +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
Masahiro Yamadaad618992014-10-30 11:06:12 +0900110
111PHONY += kvmconfig
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900112kvmconfig: kvm_guest.config
113 @:
Masahiro Yamadaad618992014-10-30 11:06:12 +0900114
Masahiro Yamadabf7ab1e2017-02-11 12:39:54 +0900115PHONY += xenconfig
116xenconfig: xen.config
117 @:
118
Masahiro Yamadaad618992014-10-30 11:06:12 +0900119PHONY += tinyconfig
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900120tinyconfig:
121 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
Masahiro Yamadaad618992014-10-30 11:06:12 +0900122
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200123# CHECK: -o cache_dir=<path> working?
124PHONY += testconfig
125testconfig: $(obj)/conf
126 $(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
127 -o cache_dir=$(abspath $(obj)/tests/.cache) \
128 $(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
129clean-dirs += tests/.cache
130
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900131# Help text used by make help
132help:
133 @echo ' config - Update current config utilising a line-oriented program'
Tom Rini5972ff02020-03-11 18:11:17 -0400134 @echo ' nconfig - Update current config utilising a ncurses menu based program'
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900135 @echo ' menuconfig - Update current config utilising a menu based program'
Masahiro Yamadabf7ab1e2017-02-11 12:39:54 +0900136 @echo ' xconfig - Update current config utilising a Qt based front-end'
137 @echo ' gconfig - Update current config utilising a GTK+ based front-end'
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900138 @echo ' oldconfig - Update current config utilising a provided .config as base'
139 @echo ' localmodconfig - Update current config disabling modules not loaded'
140 @echo ' localyesconfig - Update current config converting local mods to core'
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900141 @echo ' defconfig - New config with default from ARCH supplied defconfig'
142 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
143 @echo ' allnoconfig - New config where all options are answered with no'
144 @echo ' allyesconfig - New config where all options are accepted with yes'
145 @echo ' allmodconfig - New config selecting modules when possible'
146 @echo ' alldefconfig - New config with all symbols set to default'
147 @echo ' randconfig - New config with random answer to all options'
148 @echo ' listnewconfig - List new options'
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200149 @echo ' olddefconfig - Same as oldconfig but sets new symbols to their'
150 @echo ' default value without prompting'
Masahiro Yamadabf7ab1e2017-02-11 12:39:54 +0900151# @echo ' kvmconfig - Enable additional options for kvm guest kernel support'
152# @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support'
Masahiro Yamadaad618992014-10-30 11:06:12 +0900153# @echo ' tinyconfig - Configure the tiniest possible kernel'
Tom Rini5972ff02020-03-11 18:11:17 -0400154 @echo ' testconfig - Run Kconfig unit tests (requires python3 and pytest)'
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900155
156# ===========================================================================
157# Shared Makefile for the various kconfig executables:
158# conf: Used for defconfig, oldconfig and related targets
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900159# object files used by all kconfig flavours
160
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900161conf-objs := conf.o zconf.tab.o
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900162
Tom Rini5972ff02020-03-11 18:11:17 -0400163hostprogs-y := conf
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900164
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200165targets += zconf.lex.c
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900166
167# generated files seem to need this to find local include files
168HOSTCFLAGS_zconf.lex.o := -I$(src)
169HOSTCFLAGS_zconf.tab.o := -I$(src)
170
Tom Rini5972ff02020-03-11 18:11:17 -0400171# nconf: Used for the nconfig target based on ncurses
172hostprogs-y += nconf
173nconf-objs := nconf.o zconf.tab.o nconf.gui.o
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900174
Tom Rini587e4a42020-03-27 11:46:27 -0400175HOSTLDLIBS_nconf = $(shell . $(obj)/.nconf-cfg && echo $$libs)
Tom Rini5972ff02020-03-11 18:11:17 -0400176HOSTCFLAGS_nconf.o = $(shell . $(obj)/.nconf-cfg && echo $$cflags)
177HOSTCFLAGS_nconf.gui.o = $(shell . $(obj)/.nconf-cfg && echo $$cflags)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900178
Tom Rini587e4a42020-03-27 11:46:27 -0400179$(obj)/nconf.o $(obj)/nconf.gui.o: $(obj)/.nconf-cfg
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900180
Tom Rini5972ff02020-03-11 18:11:17 -0400181# mconf: Used for the menuconfig target based on lxdialog
182hostprogs-y += mconf
183lxdialog := checklist.o inputbox.o menubox.o textbox.o util.o yesno.o
184mconf-objs := mconf.o zconf.tab.o $(addprefix lxdialog/, $(lxdialog))
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900185
Tom Rini587e4a42020-03-27 11:46:27 -0400186HOSTLDLIBS_mconf = $(shell . $(obj)/.mconf-cfg && echo $$libs)
Tom Rini5972ff02020-03-11 18:11:17 -0400187$(foreach f, mconf.o $(lxdialog), \
188 $(eval HOSTCFLAGS_$f = $$(shell . $(obj)/.mconf-cfg && echo $$$$cflags)))
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900189
Tom Rini587e4a42020-03-27 11:46:27 -0400190$(obj)/mconf.o: $(obj)/.mconf-cfg
191$(addprefix $(obj)/lxdialog/, $(lxdialog)): $(obj)/.mconf-cfg
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900192
Tom Rini5972ff02020-03-11 18:11:17 -0400193# qconf: Used for the xconfig target based on Qt
194hostprogs-y += qconf
195qconf-cxxobjs := qconf.o
196qconf-objs := zconf.tab.o
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900197
Tom Rini587e4a42020-03-27 11:46:27 -0400198HOSTLDLIBS_qconf = $(shell . $(obj)/.qconf-cfg && echo $$libs)
Tom Rini5972ff02020-03-11 18:11:17 -0400199HOSTCXXFLAGS_qconf.o = $(shell . $(obj)/.qconf-cfg && echo $$cflags)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900200
Tom Rini5972ff02020-03-11 18:11:17 -0400201$(obj)/qconf.o: $(obj)/.qconf-cfg $(obj)/qconf.moc
202
203quiet_cmd_moc = MOC $@
204 cmd_moc = $(shell . $(obj)/.qconf-cfg && echo $$moc) -i $< -o $@
205
206$(obj)/%.moc: $(src)/%.h $(obj)/.qconf-cfg
207 $(call cmd,moc)
208
209# gconf: Used for the gconfig target based on GTK+
210hostprogs-y += gconf
211gconf-objs := gconf.o zconf.tab.o
212
Tom Rini587e4a42020-03-27 11:46:27 -0400213HOSTLDLIBS_gconf = $(shell . $(obj)/.gconf-cfg && echo $$libs)
Tom Rini5972ff02020-03-11 18:11:17 -0400214HOSTCFLAGS_gconf.o = $(shell . $(obj)/.gconf-cfg && echo $$cflags)
215
216$(obj)/gconf.o: $(obj)/.gconf-cfg
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900217
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200218$(obj)/zconf.tab.o: $(obj)/zconf.lex.c
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900219
Tom Rini5972ff02020-03-11 18:11:17 -0400220# check if necessary packages are available, and configure build flags
221define filechk_conf_cfg
222 $(CONFIG_SHELL) $<
223endef
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900224
Tom Rini5972ff02020-03-11 18:11:17 -0400225$(obj)/.%conf-cfg: $(src)/%conf-cfg.sh FORCE
226 $(call filechk,conf_cfg)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900227
Tom Rini5972ff02020-03-11 18:11:17 -0400228clean-files += .*conf-cfg