Makefile 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. # SPDX-License-Identifier: GPL-2.0
  2. # ===========================================================================
  3. # Kernel configuration targets
  4. # These targets are used from top-level makefile
  5. PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \
  6. build_menuconfig build_nconfig build_gconfig build_xconfig
  7. # Added for U-Boot
  8. # Linux has defconfig files in arch/$(SRCARCH)/configs/,
  9. # on the other hand, U-Boot does in configs/.
  10. # Set SRCARCH to .. fake this Makefile.
  11. SRCARCH := ..
  12. ifdef KBUILD_KCONFIG
  13. Kconfig := $(KBUILD_KCONFIG)
  14. else
  15. Kconfig := Kconfig
  16. endif
  17. ifeq ($(quiet),silent_)
  18. silent := -s
  19. endif
  20. # We need this, in case the user has it in its environment
  21. unexport CONFIG_
  22. xconfig: $(obj)/qconf
  23. $< $(silent) $(Kconfig)
  24. gconfig: $(obj)/gconf
  25. $< $(silent) $(Kconfig)
  26. menuconfig: $(obj)/mconf
  27. $< $(silent) $(Kconfig)
  28. config: $(obj)/conf
  29. $< $(silent) --oldaskconfig $(Kconfig)
  30. nconfig: $(obj)/nconf
  31. $< $(silent) $(Kconfig)
  32. build_menuconfig: $(obj)/mconf
  33. build_nconfig: $(obj)/nconf
  34. build_gconfig: $(obj)/gconf
  35. build_xconfig: $(obj)/qconf
  36. localyesconfig localmodconfig: $(obj)/conf
  37. $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
  38. $(Q)if [ -f .config ]; then \
  39. cmp -s .tmp.config .config || \
  40. (mv -f .config .config.old.1; \
  41. mv -f .tmp.config .config; \
  42. $< $(silent) --oldconfig $(Kconfig); \
  43. mv -f .config.old.1 .config.old) \
  44. else \
  45. mv -f .tmp.config .config; \
  46. $< $(silent) --oldconfig $(Kconfig); \
  47. fi
  48. $(Q)rm -f .tmp.config
  49. # These targets map 1:1 to the commandline options of 'conf'
  50. #
  51. # Note:
  52. # syncconfig has become an internal implementation detail and is now
  53. # deprecated for external use
  54. simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
  55. alldefconfig randconfig listnewconfig olddefconfig syncconfig
  56. PHONY += $(simple-targets)
  57. $(simple-targets): $(obj)/conf
  58. $< $(silent) --$@ $(Kconfig)
  59. PHONY += savedefconfig defconfig
  60. savedefconfig: $(obj)/conf
  61. $< $(silent) --$@=defconfig $(Kconfig)
  62. defconfig: $(obj)/conf
  63. ifeq ($(KBUILD_DEFCONFIG),)
  64. $< $(silent) --defconfig $(Kconfig)
  65. else
  66. ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
  67. @$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
  68. $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
  69. else
  70. @$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
  71. $(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
  72. endif
  73. endif
  74. %_defconfig: $(obj)/conf
  75. $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
  76. # Added for U-Boot (backward compatibility)
  77. %_config: %_defconfig
  78. @:
  79. configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
  80. %.config: $(obj)/conf
  81. $(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
  82. $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
  83. +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
  84. PHONY += kvmconfig
  85. kvmconfig: kvm_guest.config
  86. @:
  87. PHONY += xenconfig
  88. xenconfig: xen.config
  89. @:
  90. PHONY += tinyconfig
  91. tinyconfig:
  92. $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
  93. # CHECK: -o cache_dir=<path> working?
  94. PHONY += testconfig
  95. testconfig: $(obj)/conf
  96. $(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
  97. -o cache_dir=$(abspath $(obj)/tests/.cache) \
  98. $(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
  99. clean-dirs += tests/.cache
  100. # Help text used by make help
  101. help:
  102. @echo ' config - Update current config utilising a line-oriented program'
  103. @echo ' nconfig - Update current config utilising a ncurses menu based program'
  104. @echo ' menuconfig - Update current config utilising a menu based program'
  105. @echo ' xconfig - Update current config utilising a Qt based front-end'
  106. @echo ' gconfig - Update current config utilising a GTK+ based front-end'
  107. @echo ' oldconfig - Update current config utilising a provided .config as base'
  108. @echo ' localmodconfig - Update current config disabling modules not loaded'
  109. @echo ' localyesconfig - Update current config converting local mods to core'
  110. @echo ' defconfig - New config with default from ARCH supplied defconfig'
  111. @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
  112. @echo ' allnoconfig - New config where all options are answered with no'
  113. @echo ' allyesconfig - New config where all options are accepted with yes'
  114. @echo ' allmodconfig - New config selecting modules when possible'
  115. @echo ' alldefconfig - New config with all symbols set to default'
  116. @echo ' randconfig - New config with random answer to all options'
  117. @echo ' listnewconfig - List new options'
  118. @echo ' olddefconfig - Same as oldconfig but sets new symbols to their'
  119. @echo ' default value without prompting'
  120. # @echo ' kvmconfig - Enable additional options for kvm guest kernel support'
  121. # @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support'
  122. # @echo ' tinyconfig - Configure the tiniest possible kernel'
  123. @echo ' testconfig - Run Kconfig unit tests (requires python3 and pytest)'
  124. # ===========================================================================
  125. # Shared Makefile for the various kconfig executables:
  126. # conf: Used for defconfig, oldconfig and related targets
  127. # object files used by all kconfig flavours
  128. conf-objs := conf.o zconf.tab.o
  129. hostprogs-y := conf
  130. targets += zconf.lex.c
  131. # generated files seem to need this to find local include files
  132. HOSTCFLAGS_zconf.lex.o := -I$(src)
  133. HOSTCFLAGS_zconf.tab.o := -I$(src)
  134. # nconf: Used for the nconfig target based on ncurses
  135. hostprogs-y += nconf
  136. nconf-objs := nconf.o zconf.tab.o nconf.gui.o
  137. HOSTLDLIBS_nconf = $(shell . $(obj)/.nconf-cfg && echo $$libs)
  138. HOSTCFLAGS_nconf.o = $(shell . $(obj)/.nconf-cfg && echo $$cflags)
  139. HOSTCFLAGS_nconf.gui.o = $(shell . $(obj)/.nconf-cfg && echo $$cflags)
  140. $(obj)/nconf.o $(obj)/nconf.gui.o: $(obj)/.nconf-cfg
  141. # mconf: Used for the menuconfig target based on lxdialog
  142. hostprogs-y += mconf
  143. lxdialog := checklist.o inputbox.o menubox.o textbox.o util.o yesno.o
  144. mconf-objs := mconf.o zconf.tab.o $(addprefix lxdialog/, $(lxdialog))
  145. HOSTLDLIBS_mconf = $(shell . $(obj)/.mconf-cfg && echo $$libs)
  146. $(foreach f, mconf.o $(lxdialog), \
  147. $(eval HOSTCFLAGS_$f = $$(shell . $(obj)/.mconf-cfg && echo $$$$cflags)))
  148. $(obj)/mconf.o: $(obj)/.mconf-cfg
  149. $(addprefix $(obj)/lxdialog/, $(lxdialog)): $(obj)/.mconf-cfg
  150. # qconf: Used for the xconfig target based on Qt
  151. hostprogs-y += qconf
  152. qconf-cxxobjs := qconf.o
  153. qconf-objs := zconf.tab.o
  154. HOSTLDLIBS_qconf = $(shell . $(obj)/.qconf-cfg && echo $$libs)
  155. HOSTCXXFLAGS_qconf.o = $(shell . $(obj)/.qconf-cfg && echo $$cflags)
  156. $(obj)/qconf.o: $(obj)/.qconf-cfg $(obj)/qconf.moc
  157. quiet_cmd_moc = MOC $@
  158. cmd_moc = $(shell . $(obj)/.qconf-cfg && echo $$moc) -i $< -o $@
  159. $(obj)/%.moc: $(src)/%.h $(obj)/.qconf-cfg
  160. $(call cmd,moc)
  161. # gconf: Used for the gconfig target based on GTK+
  162. hostprogs-y += gconf
  163. gconf-objs := gconf.o zconf.tab.o
  164. HOSTLDLIBS_gconf = $(shell . $(obj)/.gconf-cfg && echo $$libs)
  165. HOSTCFLAGS_gconf.o = $(shell . $(obj)/.gconf-cfg && echo $$cflags)
  166. $(obj)/gconf.o: $(obj)/.gconf-cfg
  167. $(obj)/zconf.tab.o: $(obj)/zconf.lex.c
  168. # check if necessary packages are available, and configure build flags
  169. define filechk_conf_cfg
  170. $(CONFIG_SHELL) $<
  171. endef
  172. $(obj)/.%conf-cfg: $(src)/%conf-cfg.sh FORCE
  173. $(call filechk,conf_cfg)
  174. clean-files += .*conf-cfg