xref: /OK3568_Linux_fs/buildroot/support/kconfig/Makefile (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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 syncconfig update-po-config \
7	localmodconfig localyesconfig
8
9# Easy method for doing a status message
10       kecho := :
11 quiet_kecho := echo
12silent_kecho := :
13kecho := $($(quiet)kecho)
14
15ifdef KBUILD_KCONFIG
16Kconfig := $(KBUILD_KCONFIG)
17else
18Kconfig := Kconfig
19endif
20
21ifeq ($(quiet),silent_)
22silent := -s
23endif
24
25# We need this, in case the user has it in its environment
26unexport CONFIG_
27
28xconfig: $(obj)/qconf
29	$< $(silent) $(Kconfig)
30
31gconfig: $(obj)/gconf
32	$< $(silent) $(Kconfig)
33
34menuconfig: $(obj)/mconf
35	$< $(silent) $(Kconfig)
36
37config: $(obj)/conf
38	$< $(silent) --oldaskconfig $(Kconfig)
39
40nconfig: $(obj)/nconf
41	$< $(silent) $(Kconfig)
42
43# This has become an internal implementation detail and is now deprecated
44# for external use.
45syncconfig: $(obj)/conf
46	$(Q)mkdir -p include/config include/generated
47	$< $(silent) --$@ $(Kconfig)
48
49localyesconfig localmodconfig: $(obj)/conf
50	$(Q)mkdir -p include/config include/generated
51	$(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
52	$(Q)if [ -f .config ]; then 					\
53			cmp -s .tmp.config .config ||			\
54			(mv -f .config .config.old.1;			\
55			 mv -f .tmp.config .config;			\
56			 $< $(silent) --oldconfig $(Kconfig);		\
57			 mv -f .config.old.1 .config.old)		\
58	else								\
59			mv -f .tmp.config .config;			\
60			$< $(silent) --oldconfig $(Kconfig);		\
61	fi
62	$(Q)rm -f .tmp.config
63
64# Create new linux.pot file
65# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
66update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
67	$(Q)$(kecho) "  GEN     config.pot"
68	$(Q)xgettext --default-domain=linux                         \
69	    --add-comments --keyword=_ --keyword=N_                 \
70	    --from-code=UTF-8                                       \
71	    --files-from=$(srctree)/scripts/kconfig/POTFILES.in     \
72	    --directory=$(srctree) --directory=$(objtree)           \
73	    --output $(obj)/config.pot
74	$(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
75	$(Q)(for i in `ls $(srctree)/arch/*/Kconfig      \
76	    $(srctree)/arch/*/um/Kconfig`;               \
77	    do                                           \
78		$(kecho) "  GEN     $$i";                    \
79		$(obj)/kxgettext $$i                     \
80		     >> $(obj)/config.pot;               \
81	    done )
82	$(Q)$(kecho) "  GEN     linux.pot"
83	$(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
84	    --output $(obj)/linux.pot
85	$(Q)rm -f $(obj)/config.pot
86
87# These targets map 1:1 to the commandline options of 'conf'
88simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
89	alldefconfig randconfig listnewconfig olddefconfig
90PHONY += $(simple-targets)
91
92$(simple-targets): $(obj)/conf
93	$< $(silent) --$@ $(Kconfig)
94
95PHONY += oldnoconfig silentoldconfig savedefconfig defconfig
96
97# oldnoconfig is an alias of olddefconfig, because people already are dependent
98# on its behavior (sets new symbols to their default value but not 'n') with the
99# counter-intuitive name.
100oldnoconfig: olddefconfig
101	@echo "  WARNING: \"oldnoconfig\" target will be removed after Linux 4.19"
102	@echo "            Please use \"olddefconfig\" instead, which is an alias."
103
104# We do not expect manual invokcation of "silentoldcofig" (or "syncconfig").
105silentoldconfig: syncconfig
106	@echo "  WARNING: \"silentoldconfig\" has been renamed to \"syncconfig\""
107	@echo "            and is now an internal implementation detail."
108	@echo "            What you want is probably \"oldconfig\"."
109	@echo "            \"silentoldconfig\" will be removed after Linux 4.19"
110
111savedefconfig: $(obj)/conf
112	$< $(silent) --$@=defconfig $(Kconfig)
113
114defconfig: $(obj)/conf
115ifeq ($(KBUILD_DEFCONFIG),)
116	$< $(silent) --defconfig $(Kconfig)
117else
118ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
119	@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
120	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
121else
122	@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
123	$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
124endif
125endif
126
127%_defconfig: $(obj)/conf
128	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
129
130configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
131
132%.config: $(obj)/conf
133	$(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
134	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
135	+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
136
137PHONY += kvmconfig
138kvmconfig: kvm_guest.config
139	@:
140
141PHONY += xenconfig
142xenconfig: xen.config
143	@:
144
145PHONY += tinyconfig
146tinyconfig:
147	$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
148
149# CHECK: -o cache_dir=<path> working?
150PHONY += testconfig
151testconfig: $(obj)/conf
152	$(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
153	-o cache_dir=$(abspath $(obj)/tests/.cache) \
154	$(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
155clean-dirs += tests/.cache
156
157# Help text used by make help
158help:
159	@echo  '  config	  - Update current config utilising a line-oriented program'
160	@echo  '  nconfig         - Update current config utilising a ncurses menu based'
161	@echo  '                    program'
162	@echo  '  menuconfig	  - Update current config utilising a menu based program'
163	@echo  '  xconfig	  - Update current config utilising a Qt based front-end'
164	@echo  '  gconfig	  - Update current config utilising a GTK+ based front-end'
165	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
166	@echo  '  localmodconfig  - Update current config disabling modules not loaded'
167	@echo  '  localyesconfig  - Update current config converting local mods to core'
168	@echo  '  defconfig	  - New config with default from ARCH supplied defconfig'
169	@echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
170	@echo  '  allnoconfig	  - New config where all options are answered with no'
171	@echo  '  allyesconfig	  - New config where all options are accepted with yes'
172	@echo  '  allmodconfig	  - New config selecting modules when possible'
173	@echo  '  alldefconfig    - New config with all symbols set to default'
174	@echo  '  randconfig	  - New config with random answer to all options'
175	@echo  '  listnewconfig   - List new options'
176	@echo  '  olddefconfig	  - Same as oldconfig but sets new symbols to their'
177	@echo  '                    default value without prompting'
178	@echo  '  kvmconfig	  - Enable additional options for kvm guest kernel support'
179	@echo  '  xenconfig       - Enable additional options for xen dom0 and guest kernel support'
180	@echo  '  tinyconfig	  - Configure the tiniest possible kernel'
181
182# lxdialog stuff
183check-lxdialog  := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
184
185# Use recursively expanded variables so we do not call gcc unless
186# we really need to do so. (Do not call gcc as part of make mrproper)
187HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
188                    -DLOCALE
189
190# ===========================================================================
191# Shared Makefile for the various kconfig executables:
192# conf:	  Used for defconfig, oldconfig and related targets
193# nconf:  Used for the nconfig target.
194#         Utilizes ncurses
195# mconf:  Used for the menuconfig target
196#         Utilizes the lxdialog package
197# qconf:  Used for the xconfig target
198#         Based on Qt which needs to be installed to compile it
199# gconf:  Used for the gconfig target
200#         Based on GTK+ which needs to be installed to compile it
201# object files used by all kconfig flavours
202
203lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
204lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
205
206conf-objs	:= conf.o  zconf.tab.o
207mconf-objs     := mconf.o zconf.tab.o $(lxdialog)
208nconf-objs     := nconf.o zconf.tab.o nconf.gui.o
209kxgettext-objs	:= kxgettext.o zconf.tab.o
210qconf-cxxobjs	:= qconf.o
211qconf-objs	:= zconf.tab.o
212gconf-objs	:= gconf.o zconf.tab.o
213
214hostprogs-y := conf
215
216ifeq ($(MAKECMDGOALS),nconf)
217	hostprogs-y += nconf
218endif
219
220ifeq ($(MAKECMDGOALS),mconf)
221	hostprogs-y += mconf
222endif
223
224ifeq ($(MAKECMDGOALS),update-po-config)
225	hostprogs-y += kxgettext
226endif
227
228ifeq ($(MAKECMDGOALS),qconf)
229	qconf-target := 1
230endif
231
232ifeq ($(MAKECMDGOALS),gconf)
233	gconf-target := 1
234endif
235
236ifeq ($(qconf-target),1)
237	hostprogs-y += qconf
238endif
239
240ifeq ($(gconf-target),1)
241	hostprogs-y += gconf
242endif
243
244targets		+= zconf.lex.c
245clean-files	:= qconf.moc .tmp_qtcheck .tmp_gtkcheck
246clean-files	+= gconf.glade.h
247clean-files     += config.pot linux.pot
248
249# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
250PHONY += $(obj)/dochecklxdialog
251$(addprefix $(obj)/, mconf.o $(lxdialog)): $(obj)/dochecklxdialog
252$(obj)/dochecklxdialog:
253	$(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
254
255always := dochecklxdialog
256
257# Add environment specific flags
258HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
259HOST_EXTRACXXFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCXX) $(HOSTCXXFLAGS))
260
261# generated files seem to need this to find local include files
262HOSTCFLAGS_zconf.lex.o	:= -I$(src)
263HOSTCFLAGS_zconf.tab.o	:= -I$(src)
264
265HOSTLOADLIBES_qconf	= $(KC_QT_LIBS)
266HOSTCXXFLAGS_qconf.o	= $(KC_QT_CFLAGS)
267
268HOSTLOADLIBES_gconf	= `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
269HOSTCFLAGS_gconf.o	= `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
270                          -Wno-missing-prototypes
271
272HOSTLOADLIBES_mconf   = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
273
274HOSTLOADLIBES_nconf	= $(shell \
275				pkg-config --libs menuw panelw ncursesw 2>/dev/null \
276				|| pkg-config --libs menu panel ncurses 2>/dev/null \
277				|| echo "-lmenu -lpanel -lncurses"  )
278$(obj)/qconf.o: $(obj)/.tmp_qtcheck
279
280ifeq ($(MAKECMDGOALS),qconf)
281$(obj)/.tmp_qtcheck: $(src)/Makefile
282-include $(obj)/.tmp_qtcheck
283
284# Qt needs some extra effort...
285$(obj)/.tmp_qtcheck:
286	@set -e; $(kecho) "  CHECK   qt"; \
287	if pkg-config --exists Qt5Core; then \
288	    cflags="-std=c++11 -fPIC `pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets`"; \
289	    libs=`pkg-config --libs Qt5Core Qt5Gui Qt5Widgets`; \
290	    moc=`pkg-config --variable=host_bins Qt5Core`/moc; \
291	elif pkg-config --exists QtCore; then \
292	    cflags=`pkg-config --cflags QtCore QtGui`; \
293	    libs=`pkg-config --libs QtCore QtGui`; \
294	    moc=`pkg-config --variable=moc_location QtCore`; \
295	else \
296	    echo >&2 "*"; \
297	    echo >&2 "* Could not find Qt via pkg-config."; \
298	    echo >&2 "* Please install either Qt 4.8 or 5.x. and make sure it's in PKG_CONFIG_PATH"; \
299	    echo >&2 "*"; \
300	    exit 1; \
301	fi; \
302	echo "KC_QT_CFLAGS=$$cflags" > $@; \
303	echo "KC_QT_LIBS=$$libs" >> $@; \
304	echo "KC_QT_MOC=$$moc" >> $@
305endif
306
307ifeq ($(MAKECMDGOALS),gconf)
308$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
309-include $(obj)/.tmp_gtkcheck
310
311# GTK+ needs some extra effort, too...
312$(obj)/.tmp_gtkcheck:
313	@if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then		\
314		if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then			\
315			touch $@;								\
316		else									\
317			echo >&2 "*"; 							\
318			echo >&2 "* GTK+ is present but version >= 2.0.0 is required.";	\
319			echo >&2 "*";							\
320			false;								\
321		fi									\
322	else										\
323		echo >&2 "*"; 								\
324		echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; 	\
325		echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; 	\
326		echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; 		\
327		echo >&2 "*"; 								\
328		false;									\
329	fi
330endif
331
332$(obj)/zconf.tab.o: $(obj)/zconf.lex.c
333
334$(obj)/qconf.o: $(obj)/qconf.moc
335
336$(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
337	$(KC_QT_MOC) -i $< -o $@
338
339# Extract gconf menu items for i18n support
340$(obj)/gconf.glade.h: $(obj)/gconf.glade
341	$(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
342	$(obj)/gconf.glade
343