Makefile 7.6 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5
# ===========================================================================
# Kernel configuration targets
# These targets are used from top-level makefile

6 7
PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \
	build_menuconfig build_nconfig build_gconfig build_xconfig
L
Linus Torvalds 已提交
8

A
Al Viro 已提交
9 10 11
ifdef KBUILD_KCONFIG
Kconfig := $(KBUILD_KCONFIG)
else
12
Kconfig := Kconfig
A
Al Viro 已提交
13
endif
14

15 16 17 18
ifeq ($(quiet),silent_)
silent := -s
endif

19 20 21
# We need this, in case the user has it in its environment
unexport CONFIG_

L
Linus Torvalds 已提交
22
xconfig: $(obj)/qconf
23
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
24 25

gconfig: $(obj)/gconf
26
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
27 28

menuconfig: $(obj)/mconf
29
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
30 31

config: $(obj)/conf
32
	$< $(silent) --oldaskconfig $(Kconfig)
L
Linus Torvalds 已提交
33

34
nconfig: $(obj)/nconf
35
	$< $(silent) $(Kconfig)
36

37 38 39 40 41 42 43 44
build_menuconfig: $(obj)/mconf

build_nconfig: $(obj)/nconf

build_gconfig: $(obj)/gconf

build_xconfig: $(obj)/qconf

45 46
localyesconfig localmodconfig: $(obj)/conf
	$(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
47
	$(Q)if [ -f .config ]; then 					\
S
Sam Ravnborg 已提交
48 49 50
			cmp -s .tmp.config .config ||			\
			(mv -f .config .config.old.1;			\
			 mv -f .tmp.config .config;			\
51
			 $< $(silent) --oldconfig $(Kconfig);		\
S
Sam Ravnborg 已提交
52 53 54
			 mv -f .config.old.1 .config.old)		\
	else								\
			mv -f .tmp.config .config;			\
55
			$< $(silent) --oldconfig $(Kconfig);		\
56
	fi
57 58
	$(Q)rm -f .tmp.config

M
Michal Marek 已提交
59
# These targets map 1:1 to the commandline options of 'conf'
60 61 62 63
#
# Note:
#  syncconfig has become an internal implementation detail and is now
#  deprecated for external use
M
Michal Marek 已提交
64
simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
65
	alldefconfig randconfig listnewconfig olddefconfig syncconfig
M
Michal Marek 已提交
66
PHONY += $(simple-targets)
L
Linus Torvalds 已提交
67

M
Michal Marek 已提交
68
$(simple-targets): $(obj)/conf
69
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
70

71
PHONY += silentoldconfig savedefconfig defconfig
72

73 74 75 76 77 78 79
# We do not expect manual invokcation of "silentoldcofig" (or "syncconfig").
silentoldconfig: syncconfig
	@echo "  WARNING: \"silentoldconfig\" has been renamed to \"syncconfig\""
	@echo "            and is now an internal implementation detail."
	@echo "            What you want is probably \"oldconfig\"."
	@echo "            \"silentoldconfig\" will be removed after Linux 4.19"

S
Sam Ravnborg 已提交
80
savedefconfig: $(obj)/conf
81
	$< $(silent) --$@=defconfig $(Kconfig)
S
Sam Ravnborg 已提交
82

L
Linus Torvalds 已提交
83 84
defconfig: $(obj)/conf
ifeq ($(KBUILD_DEFCONFIG),)
85
	$< $(silent) --defconfig $(Kconfig)
86 87
else
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
88 89
	@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
90 91 92
else
	@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
	$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
L
Linus Torvalds 已提交
93
endif
94
endif
L
Linus Torvalds 已提交
95 96

%_defconfig: $(obj)/conf
97
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
L
Linus Torvalds 已提交
98

99
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
100

101 102 103 104
%.config: $(obj)/conf
	$(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
	+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
105 106

PHONY += kvmconfig
107 108
kvmconfig: kvm_guest.config
	@:
109

110 111 112 113
PHONY += xenconfig
xenconfig: xen.config
	@:

114
PHONY += tinyconfig
115 116
tinyconfig:
	$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
117

118 119 120 121 122 123 124 125
# CHECK: -o cache_dir=<path> working?
PHONY += testconfig
testconfig: $(obj)/conf
	$(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
	-o cache_dir=$(abspath $(obj)/tests/.cache) \
	$(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
clean-dirs += tests/.cache

L
Linus Torvalds 已提交
126 127 128
# Help text used by make help
help:
	@echo  '  config	  - Update current config utilising a line-oriented program'
129
	@echo  '  nconfig         - Update current config utilising a ncurses menu based program'
L
Linus Torvalds 已提交
130
	@echo  '  menuconfig	  - Update current config utilising a menu based program'
131
	@echo  '  xconfig	  - Update current config utilising a Qt based front-end'
132
	@echo  '  gconfig	  - Update current config utilising a GTK+ based front-end'
L
Linus Torvalds 已提交
133
	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
134
	@echo  '  localmodconfig  - Update current config disabling modules not loaded'
135
	@echo  '  localyesconfig  - Update current config converting local mods to core'
S
Sam Ravnborg 已提交
136
	@echo  '  defconfig	  - New config with default from ARCH supplied defconfig'
S
Sam Ravnborg 已提交
137
	@echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
138
	@echo  '  allnoconfig	  - New config where all options are answered with no'
S
Sam Ravnborg 已提交
139 140 141 142
	@echo  '  allyesconfig	  - New config where all options are accepted with yes'
	@echo  '  allmodconfig	  - New config selecting modules when possible'
	@echo  '  alldefconfig    - New config with all symbols set to default'
	@echo  '  randconfig	  - New config with random answer to all options'
143
	@echo  '  listnewconfig   - List new options'
144 145
	@echo  '  olddefconfig	  - Same as oldconfig but sets new symbols to their'
	@echo  '                    default value without prompting'
146
	@echo  '  kvmconfig	  - Enable additional options for kvm guest kernel support'
147
	@echo  '  xenconfig       - Enable additional options for xen dom0 and guest kernel support'
148
	@echo  '  tinyconfig	  - Configure the tiniest possible kernel'
149
	@echo  '  testconfig	  - Run Kconfig unit tests (requires python3 and pytest)'
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157

# ===========================================================================
# Shared Makefile for the various kconfig executables:
# conf:	  Used for defconfig, oldconfig and related targets
# object files used by all kconfig flavours

conf-objs	:= conf.o  zconf.tab.o

158
hostprogs-y := conf
L
Linus Torvalds 已提交
159

160
targets		+= zconf.lex.c
161

L
Linus Torvalds 已提交
162
# generated files seem to need this to find local include files
A
Arnaud Lacombe 已提交
163
HOSTCFLAGS_zconf.lex.o	:= -I$(src)
L
Linus Torvalds 已提交
164 165
HOSTCFLAGS_zconf.tab.o	:= -I$(src)

166 167 168 169
# nconf: Used for the nconfig target based on ncurses
hostprogs-y	+= nconf
nconf-objs	:= nconf.o zconf.tab.o nconf.gui.o

170
HOSTLDLIBS_nconf	= $(shell . $(obj)/.nconf-cfg && echo $$libs)
171 172 173
HOSTCFLAGS_nconf.o	= $(shell . $(obj)/.nconf-cfg && echo $$cflags)
HOSTCFLAGS_nconf.gui.o	= $(shell . $(obj)/.nconf-cfg && echo $$cflags)

174
$(obj)/nconf.o $(obj)/nconf.gui.o: $(obj)/.nconf-cfg
175 176 177 178 179 180

# mconf: Used for the menuconfig target based on lxdialog
hostprogs-y	+= mconf
lxdialog	:= checklist.o inputbox.o menubox.o textbox.o util.o yesno.o
mconf-objs	:= mconf.o zconf.tab.o $(addprefix lxdialog/, $(lxdialog))

181
HOSTLDLIBS_mconf = $(shell . $(obj)/.mconf-cfg && echo $$libs)
182 183
$(foreach f, mconf.o $(lxdialog), \
  $(eval HOSTCFLAGS_$f = $$(shell . $(obj)/.mconf-cfg && echo $$$$cflags)))
184

185 186
$(obj)/mconf.o: $(obj)/.mconf-cfg
$(addprefix $(obj)/lxdialog/, $(lxdialog)): $(obj)/.mconf-cfg
187 188 189 190 191 192

# qconf: Used for the xconfig target based on Qt
hostprogs-y	+= qconf
qconf-cxxobjs	:= qconf.o
qconf-objs	:= zconf.tab.o

193
HOSTLDLIBS_qconf	= $(shell . $(obj)/.qconf-cfg && echo $$libs)
194 195 196 197 198 199 200 201 202
HOSTCXXFLAGS_qconf.o	= $(shell . $(obj)/.qconf-cfg && echo $$cflags)

$(obj)/qconf.o: $(obj)/.qconf-cfg $(obj)/qconf.moc

quiet_cmd_moc = MOC     $@
      cmd_moc = $(shell . $(obj)/.qconf-cfg && echo $$moc) -i $< -o $@

$(obj)/%.moc: $(src)/%.h $(obj)/.qconf-cfg
	$(call cmd,moc)
L
Linus Torvalds 已提交
203

204 205 206 207
# gconf: Used for the gconfig target based on GTK+
hostprogs-y	+= gconf
gconf-objs	:= gconf.o zconf.tab.o

208
HOSTLDLIBS_gconf    = $(shell . $(obj)/.gconf-cfg && echo $$libs)
209 210 211
HOSTCFLAGS_gconf.o  = $(shell . $(obj)/.gconf-cfg && echo $$cflags)

$(obj)/gconf.o: $(obj)/.gconf-cfg
L
Linus Torvalds 已提交
212

213
$(obj)/zconf.tab.o: $(obj)/zconf.lex.c
L
Linus Torvalds 已提交
214

215 216 217 218 219 220 221 222 223
# check if necessary packages are available, and configure build flags
define filechk_conf_cfg
	$(CONFIG_SHELL) $<
endef

$(obj)/.%conf-cfg: $(src)/%conf-cfg.sh FORCE
	$(call filechk,conf_cfg)

clean-files += .*conf-cfg