diff options
| -rw-r--r-- | Documentation/kbuild/kbuild.txt | 17 | ||||
| -rw-r--r-- | Documentation/kbuild/kconfig.txt | 51 | ||||
| -rw-r--r-- | Makefile | 8 | ||||
| -rw-r--r-- | scripts/Kbuild.include | 2 | ||||
| -rw-r--r-- | scripts/Makefile.build | 3 | ||||
| -rw-r--r-- | scripts/Makefile.clean | 3 | ||||
| -rw-r--r-- | scripts/Makefile.modbuiltin | 4 | ||||
| -rw-r--r-- | scripts/Makefile.modinst | 4 | ||||
| -rw-r--r-- | scripts/Makefile.modpost | 4 | ||||
| -rw-r--r-- | scripts/Makefile.modsign | 3 | ||||
| -rwxr-xr-x | scripts/extract-vmlinux | 2 | ||||
| -rwxr-xr-x | scripts/tags.sh | 2 | ||||
| -rw-r--r-- | tools/build/Build.include | 6 | ||||
| -rw-r--r-- | tools/build/Makefile | 2 | ||||
| -rw-r--r-- | tools/perf/pmu-events/Build | 2 |
15 files changed, 63 insertions, 50 deletions
diff --git a/Documentation/kbuild/kbuild.txt b/Documentation/kbuild/kbuild.txt index 6c9c69ec3986..114c7ce7b58d 100644 --- a/Documentation/kbuild/kbuild.txt +++ b/Documentation/kbuild/kbuild.txt | |||
| @@ -50,6 +50,11 @@ LDFLAGS_MODULE | |||
| 50 | -------------------------------------------------- | 50 | -------------------------------------------------- |
| 51 | Additional options used for $(LD) when linking modules. | 51 | Additional options used for $(LD) when linking modules. |
| 52 | 52 | ||
| 53 | KBUILD_KCONFIG | ||
| 54 | -------------------------------------------------- | ||
| 55 | Set the top-level Kconfig file to the value of this environment | ||
| 56 | variable. The default name is "Kconfig". | ||
| 57 | |||
| 53 | KBUILD_VERBOSE | 58 | KBUILD_VERBOSE |
| 54 | -------------------------------------------------- | 59 | -------------------------------------------------- |
| 55 | Set the kbuild verbosity. Can be assigned same values as "V=...". | 60 | Set the kbuild verbosity. Can be assigned same values as "V=...". |
| @@ -88,7 +93,8 @@ In most cases the name of the architecture is the same as the | |||
| 88 | directory name found in the arch/ directory. | 93 | directory name found in the arch/ directory. |
| 89 | But some architectures such as x86 and sparc have aliases. | 94 | But some architectures such as x86 and sparc have aliases. |
| 90 | x86: i386 for 32 bit, x86_64 for 64 bit | 95 | x86: i386 for 32 bit, x86_64 for 64 bit |
| 91 | sparc: sparc for 32 bit, sparc64 for 64 bit | 96 | sh: sh for 32 bit, sh64 for 64 bit |
| 97 | sparc: sparc32 for 32 bit, sparc64 for 64 bit | ||
| 92 | 98 | ||
| 93 | CROSS_COMPILE | 99 | CROSS_COMPILE |
| 94 | -------------------------------------------------- | 100 | -------------------------------------------------- |
| @@ -148,15 +154,6 @@ stripped after they are installed. If INSTALL_MOD_STRIP is '1', then | |||
| 148 | the default option --strip-debug will be used. Otherwise, | 154 | the default option --strip-debug will be used. Otherwise, |
| 149 | INSTALL_MOD_STRIP value will be used as the options to the strip command. | 155 | INSTALL_MOD_STRIP value will be used as the options to the strip command. |
| 150 | 156 | ||
| 151 | INSTALL_FW_PATH | ||
| 152 | -------------------------------------------------- | ||
| 153 | INSTALL_FW_PATH specifies where to install the firmware blobs. | ||
| 154 | The default value is: | ||
| 155 | |||
| 156 | $(INSTALL_MOD_PATH)/lib/firmware | ||
| 157 | |||
| 158 | The value can be overridden in which case the default value is ignored. | ||
| 159 | |||
| 160 | INSTALL_HDR_PATH | 157 | INSTALL_HDR_PATH |
| 161 | -------------------------------------------------- | 158 | -------------------------------------------------- |
| 162 | INSTALL_HDR_PATH specifies where to install user space headers when | 159 | INSTALL_HDR_PATH specifies where to install user space headers when |
diff --git a/Documentation/kbuild/kconfig.txt b/Documentation/kbuild/kconfig.txt index 7233118f3a05..68c82914c0f3 100644 --- a/Documentation/kbuild/kconfig.txt +++ b/Documentation/kbuild/kconfig.txt | |||
| @@ -2,9 +2,9 @@ This file contains some assistance for using "make *config". | |||
| 2 | 2 | ||
| 3 | Use "make help" to list all of the possible configuration targets. | 3 | Use "make help" to list all of the possible configuration targets. |
| 4 | 4 | ||
| 5 | The xconfig ('qconf') and menuconfig ('mconf') programs also | 5 | The xconfig ('qconf'), menuconfig ('mconf'), and nconfig ('nconf') |
| 6 | have embedded help text. Be sure to check it for navigation, | 6 | programs also have embedded help text. Be sure to check that for |
| 7 | search, and other general help text. | 7 | navigation, search, and other general help text. |
| 8 | 8 | ||
| 9 | ====================================================================== | 9 | ====================================================================== |
| 10 | General | 10 | General |
| @@ -17,13 +17,16 @@ this happens, using a previously working .config file and running | |||
| 17 | for you, so you may find that you need to see what NEW kernel | 17 | for you, so you may find that you need to see what NEW kernel |
| 18 | symbols have been introduced. | 18 | symbols have been introduced. |
| 19 | 19 | ||
| 20 | To see a list of new config symbols when using "make oldconfig", use | 20 | To see a list of new config symbols, use |
| 21 | 21 | ||
| 22 | cp user/some/old.config .config | 22 | cp user/some/old.config .config |
| 23 | make listnewconfig | 23 | make listnewconfig |
| 24 | 24 | ||
| 25 | and the config program will list any new symbols, one per line. | 25 | and the config program will list any new symbols, one per line. |
| 26 | 26 | ||
| 27 | Alternatively, you can use the brute force method: | ||
| 28 | |||
| 29 | make oldconfig | ||
| 27 | scripts/diffconfig .config.old .config | less | 30 | scripts/diffconfig .config.old .config | less |
| 28 | 31 | ||
| 29 | ______________________________________________________________________ | 32 | ______________________________________________________________________ |
| @@ -160,7 +163,7 @@ Searching in menuconfig: | |||
| 160 | This lists all config symbols that contain "hotplug", | 163 | This lists all config symbols that contain "hotplug", |
| 161 | e.g., HOTPLUG_CPU, MEMORY_HOTPLUG. | 164 | e.g., HOTPLUG_CPU, MEMORY_HOTPLUG. |
| 162 | 165 | ||
| 163 | For search help, enter / followed TAB-TAB-TAB (to highlight | 166 | For search help, enter / followed by TAB-TAB (to highlight |
| 164 | <Help>) and Enter. This will tell you that you can also use | 167 | <Help>) and Enter. This will tell you that you can also use |
| 165 | regular expressions (regexes) in the search string, so if you | 168 | regular expressions (regexes) in the search string, so if you |
| 166 | are not interested in MEMORY_HOTPLUG, you could try | 169 | are not interested in MEMORY_HOTPLUG, you could try |
| @@ -203,6 +206,39 @@ Example: | |||
| 203 | 206 | ||
| 204 | 207 | ||
| 205 | ====================================================================== | 208 | ====================================================================== |
| 209 | nconfig | ||
| 210 | -------------------------------------------------- | ||
| 211 | |||
| 212 | nconfig is an alternate text-based configurator. It lists function | ||
| 213 | keys across the bottom of the terminal (window) that execute commands. | ||
| 214 | You can also just use the corresponding numeric key to execute the | ||
| 215 | commands unless you are in a data entry window. E.g., instead of F6 | ||
| 216 | for Save, you can just press 6. | ||
| 217 | |||
| 218 | Use F1 for Global help or F3 for the Short help menu. | ||
| 219 | |||
| 220 | Searching in nconfig: | ||
| 221 | |||
| 222 | You can search either in the menu entry "prompt" strings | ||
| 223 | or in the configuration symbols. | ||
| 224 | |||
| 225 | Use / to begin a search through the menu entries. This does | ||
| 226 | not support regular expressions. Use <Down> or <Up> for | ||
| 227 | Next hit and Previous hit, respectively. Use <Esc> to | ||
| 228 | terminate the search mode. | ||
| 229 | |||
| 230 | F8 (SymSearch) searches the configuration symbols for the | ||
| 231 | given string or regular expression (regex). | ||
| 232 | |||
| 233 | NCONFIG_MODE | ||
| 234 | -------------------------------------------------- | ||
| 235 | This mode shows all sub-menus in one large tree. | ||
| 236 | |||
| 237 | Example: | ||
| 238 | make NCONFIG_MODE=single_menu nconfig | ||
| 239 | |||
| 240 | |||
| 241 | ====================================================================== | ||
| 206 | xconfig | 242 | xconfig |
| 207 | -------------------------------------------------- | 243 | -------------------------------------------------- |
| 208 | 244 | ||
| @@ -230,8 +266,7 @@ gconfig | |||
| 230 | 266 | ||
| 231 | Searching in gconfig: | 267 | Searching in gconfig: |
| 232 | 268 | ||
| 233 | None (gconfig isn't maintained as well as xconfig or menuconfig); | 269 | There is no search command in gconfig. However, gconfig does |
| 234 | however, gconfig does have a few more viewing choices than | 270 | have several different viewing choices, modes, and options. |
| 235 | xconfig does. | ||
| 236 | 271 | ||
| 237 | ### | 272 | ### |
| @@ -353,9 +353,9 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ | |||
| 353 | else if [ -x /bin/bash ]; then echo /bin/bash; \ | 353 | else if [ -x /bin/bash ]; then echo /bin/bash; \ |
| 354 | else echo sh; fi ; fi) | 354 | else echo sh; fi ; fi) |
| 355 | 355 | ||
| 356 | HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS) | 356 | HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null) |
| 357 | HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS) | 357 | HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null) |
| 358 | HOST_LFS_LIBS := $(shell getconf LFS_LIBS) | 358 | HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null) |
| 359 | 359 | ||
| 360 | HOSTCC = gcc | 360 | HOSTCC = gcc |
| 361 | HOSTCXX = g++ | 361 | HOSTCXX = g++ |
| @@ -1712,6 +1712,6 @@ endif # skip-makefile | |||
| 1712 | PHONY += FORCE | 1712 | PHONY += FORCE |
| 1713 | FORCE: | 1713 | FORCE: |
| 1714 | 1714 | ||
| 1715 | # Declare the contents of the .PHONY variable as phony. We keep that | 1715 | # Declare the contents of the PHONY variable as phony. We keep that |
| 1716 | # information in a variable so we can use it in if_changed and friends. | 1716 | # information in a variable so we can use it in if_changed and friends. |
| 1717 | .PHONY: $(PHONY) | 1717 | .PHONY: $(PHONY) |
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index c8156d61678c..86321f06461e 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
| @@ -214,7 +214,7 @@ hdr-inst := -f $(srctree)/scripts/Makefile.headersinst obj | |||
| 214 | # Prefix -I with $(srctree) if it is not an absolute path. | 214 | # Prefix -I with $(srctree) if it is not an absolute path. |
| 215 | # skip if -I has no parameter | 215 | # skip if -I has no parameter |
| 216 | addtree = $(if $(patsubst -I%,%,$(1)), \ | 216 | addtree = $(if $(patsubst -I%,%,$(1)), \ |
| 217 | $(if $(filter-out -I/% -I./% -I../%,$(1)),$(patsubst -I%,-I$(srctree)/%,$(1)),$(1))) | 217 | $(if $(filter-out -I/% -I./% -I../%,$(1)),$(patsubst -I%,-I$(srctree)/%,$(1)),$(1)),$(1)) |
| 218 | 218 | ||
| 219 | # Find all -I options and call addtree | 219 | # Find all -I options and call addtree |
| 220 | flags = $(foreach o,$($(1)),$(if $(filter -I%,$(o)),$(call addtree,$(o)),$(o))) | 220 | flags = $(foreach o,$($(1)),$(if $(filter -I%,$(o)),$(call addtree,$(o)),$(o))) |
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index e7889f486ca1..514ed63ff571 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
| @@ -590,7 +590,4 @@ endif | |||
| 590 | # We never want them to be removed automatically. | 590 | # We never want them to be removed automatically. |
| 591 | .SECONDARY: $(targets) | 591 | .SECONDARY: $(targets) |
| 592 | 592 | ||
| 593 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 594 | # information in a variable se we can use it in if_changed and friends. | ||
| 595 | |||
| 596 | .PHONY: $(PHONY) | 593 | .PHONY: $(PHONY) |
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index 808d09f27ad4..17ef94c635cd 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean | |||
| @@ -88,7 +88,4 @@ PHONY += $(subdir-ymn) | |||
| 88 | $(subdir-ymn): | 88 | $(subdir-ymn): |
| 89 | $(Q)$(MAKE) $(clean)=$@ | 89 | $(Q)$(MAKE) $(clean)=$@ |
| 90 | 90 | ||
| 91 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 92 | # information in a variable se we can use it in if_changed and friends. | ||
| 93 | |||
| 94 | .PHONY: $(PHONY) | 91 | .PHONY: $(PHONY) |
diff --git a/scripts/Makefile.modbuiltin b/scripts/Makefile.modbuiltin index a763b4775d06..40867a41615b 100644 --- a/scripts/Makefile.modbuiltin +++ b/scripts/Makefile.modbuiltin | |||
| @@ -54,8 +54,4 @@ PHONY += $(subdir-ym) | |||
| 54 | $(subdir-ym): | 54 | $(subdir-ym): |
| 55 | $(Q)$(MAKE) $(modbuiltin)=$@ | 55 | $(Q)$(MAKE) $(modbuiltin)=$@ |
| 56 | 56 | ||
| 57 | |||
| 58 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 59 | # information in a variable se we can use it in if_changed and friends. | ||
| 60 | |||
| 61 | .PHONY: $(PHONY) | 57 | .PHONY: $(PHONY) |
diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst index 51ca0244fc8a..ff5ca9817a85 100644 --- a/scripts/Makefile.modinst +++ b/scripts/Makefile.modinst | |||
| @@ -35,8 +35,4 @@ modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D)) | |||
| 35 | $(modules): | 35 | $(modules): |
| 36 | $(call cmd,modules_install,$(MODLIB)/$(modinst_dir)) | 36 | $(call cmd,modules_install,$(MODLIB)/$(modinst_dir)) |
| 37 | 37 | ||
| 38 | |||
| 39 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 40 | # information in a variable so we can use it in if_changed and friends. | ||
| 41 | |||
| 42 | .PHONY: $(PHONY) | 38 | .PHONY: $(PHONY) |
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index df4174405feb..dd92dbbbaa68 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost | |||
| @@ -149,8 +149,4 @@ ifneq ($(cmd_files),) | |||
| 149 | include $(cmd_files) | 149 | include $(cmd_files) |
| 150 | endif | 150 | endif |
| 151 | 151 | ||
| 152 | |||
| 153 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 154 | # information in a variable se we can use it in if_changed and friends. | ||
| 155 | |||
| 156 | .PHONY: $(PHONY) | 152 | .PHONY: $(PHONY) |
diff --git a/scripts/Makefile.modsign b/scripts/Makefile.modsign index 171483bc0538..da56aa78d245 100644 --- a/scripts/Makefile.modsign +++ b/scripts/Makefile.modsign | |||
| @@ -27,7 +27,4 @@ modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D)) | |||
| 27 | $(modules): | 27 | $(modules): |
| 28 | $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir)) | 28 | $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir)) |
| 29 | 29 | ||
| 30 | # Declare the contents of the .PHONY variable as phony. We keep that | ||
| 31 | # information in a variable se we can use it in if_changed and friends. | ||
| 32 | |||
| 33 | .PHONY: $(PHONY) | 30 | .PHONY: $(PHONY) |
diff --git a/scripts/extract-vmlinux b/scripts/extract-vmlinux index 5061abcc2540..e6239f39abad 100755 --- a/scripts/extract-vmlinux +++ b/scripts/extract-vmlinux | |||
| @@ -57,6 +57,8 @@ try_decompress '\3757zXZ\000' abcde unxz | |||
| 57 | try_decompress 'BZh' xy bunzip2 | 57 | try_decompress 'BZh' xy bunzip2 |
| 58 | try_decompress '\135\0\0\0' xxx unlzma | 58 | try_decompress '\135\0\0\0' xxx unlzma |
| 59 | try_decompress '\211\114\132' xy 'lzop -d' | 59 | try_decompress '\211\114\132' xy 'lzop -d' |
| 60 | try_decompress '\002!L\030' xxx 'lz4 -d' | ||
| 61 | try_decompress '(\265/\375' xxx unzstd | ||
| 60 | 62 | ||
| 61 | # Bail out: | 63 | # Bail out: |
| 62 | echo "$me: Cannot find vmlinux." >&2 | 64 | echo "$me: Cannot find vmlinux." >&2 |
diff --git a/scripts/tags.sh b/scripts/tags.sh index 66f08bb1cce9..412a70cce558 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh | |||
| @@ -245,7 +245,7 @@ exuberant() | |||
| 245 | { | 245 | { |
| 246 | setup_regex exuberant asm c | 246 | setup_regex exuberant asm c |
| 247 | all_target_sources | xargs $1 -a \ | 247 | all_target_sources | xargs $1 -a \ |
| 248 | -I __initdata,__exitdata,__initconst, \ | 248 | -I __initdata,__exitdata,__initconst,__ro_after_init \ |
| 249 | -I __initdata_memblock \ | 249 | -I __initdata_memblock \ |
| 250 | -I __refdata,__attribute,__maybe_unused,__always_unused \ | 250 | -I __refdata,__attribute,__maybe_unused,__always_unused \ |
| 251 | -I __acquires,__releases,__deprecated \ | 251 | -I __acquires,__releases,__deprecated \ |
diff --git a/tools/build/Build.include b/tools/build/Build.include index a4bbb984941d..950c1504ca37 100644 --- a/tools/build/Build.include +++ b/tools/build/Build.include | |||
| @@ -63,8 +63,8 @@ dep-cmd = $(if $(wildcard $(fixdep)), | |||
| 63 | $(fixdep) $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp; \ | 63 | $(fixdep) $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp; \ |
| 64 | rm -f $(depfile); \ | 64 | rm -f $(depfile); \ |
| 65 | mv -f $(dot-target).tmp $(dot-target).cmd, \ | 65 | mv -f $(dot-target).tmp $(dot-target).cmd, \ |
| 66 | printf '\# cannot find fixdep (%s)\n' $(fixdep) > $(dot-target).cmd; \ | 66 | printf '$(pound) cannot find fixdep (%s)\n' $(fixdep) > $(dot-target).cmd; \ |
| 67 | printf '\# using basic dep data\n\n' >> $(dot-target).cmd; \ | 67 | printf '$(pound) using basic dep data\n\n' >> $(dot-target).cmd; \ |
| 68 | cat $(depfile) >> $(dot-target).cmd; \ | 68 | cat $(depfile) >> $(dot-target).cmd; \ |
| 69 | printf '\n%s\n' 'cmd_$@ := $(make-cmd)' >> $(dot-target).cmd) | 69 | printf '\n%s\n' 'cmd_$@ := $(make-cmd)' >> $(dot-target).cmd) |
| 70 | 70 | ||
| @@ -98,4 +98,4 @@ cxx_flags = -Wp,-MD,$(depfile) -Wp,-MT,$@ $(CXXFLAGS) -D"BUILD_STR(s)=\#s" $(CXX | |||
| 98 | ### | 98 | ### |
| 99 | ## HOSTCC C flags | 99 | ## HOSTCC C flags |
| 100 | 100 | ||
| 101 | host_c_flags = -Wp,-MD,$(depfile) -Wp,-MT,$@ $(CHOSTFLAGS) -D"BUILD_STR(s)=\#s" $(CHOSTFLAGS_$(basetarget).o) $(CHOSTFLAGS_$(obj)) | 101 | host_c_flags = -Wp,-MD,$(depfile) -Wp,-MT,$@ $(HOSTCFLAGS) -D"BUILD_STR(s)=\#s" $(HOSTCFLAGS_$(basetarget).o) $(HOSTCFLAGS_$(obj)) |
diff --git a/tools/build/Makefile b/tools/build/Makefile index 5eb4b5ad79cb..5edf65e684ab 100644 --- a/tools/build/Makefile +++ b/tools/build/Makefile | |||
| @@ -43,7 +43,7 @@ $(OUTPUT)fixdep-in.o: FORCE | |||
| 43 | $(Q)$(MAKE) $(build)=fixdep | 43 | $(Q)$(MAKE) $(build)=fixdep |
| 44 | 44 | ||
| 45 | $(OUTPUT)fixdep: $(OUTPUT)fixdep-in.o | 45 | $(OUTPUT)fixdep: $(OUTPUT)fixdep-in.o |
| 46 | $(QUIET_LINK)$(HOSTCC) $(LDFLAGS) -o $@ $< | 46 | $(QUIET_LINK)$(HOSTCC) $(HOSTLDFLAGS) -o $@ $< |
| 47 | 47 | ||
| 48 | FORCE: | 48 | FORCE: |
| 49 | 49 | ||
diff --git a/tools/perf/pmu-events/Build b/tools/perf/pmu-events/Build index 17783913d330..215ba30b8534 100644 --- a/tools/perf/pmu-events/Build +++ b/tools/perf/pmu-events/Build | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | hostprogs := jevents | 1 | hostprogs := jevents |
| 2 | 2 | ||
| 3 | jevents-y += json.o jsmn.o jevents.o | 3 | jevents-y += json.o jsmn.o jevents.o |
| 4 | CHOSTFLAGS_jevents.o = -I$(srctree)/tools/include | 4 | HOSTCFLAGS_jevents.o = -I$(srctree)/tools/include |
| 5 | pmu-events-y += pmu-events.o | 5 | pmu-events-y += pmu-events.o |
| 6 | JDIR = pmu-events/arch/$(SRCARCH) | 6 | JDIR = pmu-events/arch/$(SRCARCH) |
| 7 | JSON = $(shell [ -d $(JDIR) ] && \ | 7 | JSON = $(shell [ -d $(JDIR) ] && \ |
