mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	kbuild: refactor the prerequisites of the modpost rule
The prerequisites of modpost are cluttered. The variables *-if-present and *-if-needed are unreadable. It is cleaner to append them into modpost-deps. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
		
							parent
							
								
									f65a486821
								
							
						
					
					
						commit
						3d57e1b7b1
					
				
					 1 changed files with 22 additions and 14 deletions
				
			
		|  | @ -38,6 +38,8 @@ __modpost: | ||||||
| include include/config/auto.conf | include include/config/auto.conf | ||||||
| include $(srctree)/scripts/Kbuild.include | include $(srctree)/scripts/Kbuild.include | ||||||
| 
 | 
 | ||||||
|  | MODPOST = scripts/mod/modpost | ||||||
|  | 
 | ||||||
| modpost-args =										\ | modpost-args =										\ | ||||||
| 	$(if $(CONFIG_MODVERSIONS),-m)							\ | 	$(if $(CONFIG_MODVERSIONS),-m)							\ | ||||||
| 	$(if $(CONFIG_MODULE_SRCVERSION_ALL),-a)					\ | 	$(if $(CONFIG_MODULE_SRCVERSION_ALL),-a)					\ | ||||||
|  | @ -46,6 +48,8 @@ modpost-args =										\ | ||||||
| 	$(if $(CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS)$(KBUILD_NSDEPS),-N)	\ | 	$(if $(CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS)$(KBUILD_NSDEPS),-N)	\ | ||||||
| 	-o $@ | 	-o $@ | ||||||
| 
 | 
 | ||||||
|  | modpost-deps := $(MODPOST) | ||||||
|  | 
 | ||||||
| # 'make -i -k' ignores compile errors, and builds as many modules as possible. | # 'make -i -k' ignores compile errors, and builds as many modules as possible. | ||||||
| ifneq ($(findstring i,$(filter-out --%,$(MAKEFLAGS))),) | ifneq ($(findstring i,$(filter-out --%,$(MAKEFLAGS))),) | ||||||
| modpost-args += -n | modpost-args += -n | ||||||
|  | @ -78,12 +82,13 @@ targets += .vmlinux.objs | ||||||
| .vmlinux.objs: vmlinux.a $(KBUILD_VMLINUX_LIBS) FORCE | .vmlinux.objs: vmlinux.a $(KBUILD_VMLINUX_LIBS) FORCE | ||||||
| 	$(call if_changed,vmlinux_objs) | 	$(call if_changed,vmlinux_objs) | ||||||
| 
 | 
 | ||||||
| vmlinux.o-if-present := $(wildcard vmlinux.o) | ifeq ($(wildcard vmlinux.o),) | ||||||
| output-symdump := vmlinux.symvers | missing-input := vmlinux.o | ||||||
| 
 | output-symdump := modules-only.symvers | ||||||
| ifdef KBUILD_MODULES | else | ||||||
| output-symdump := $(if $(vmlinux.o-if-present), Module.symvers, modules-only.symvers) | modpost-args += vmlinux.o | ||||||
| missing-input := $(filter-out $(vmlinux.o-if-present),vmlinux.o) | modpost-deps += vmlinux.o | ||||||
|  | output-symdump := $(if $(KBUILD_MODULES), Module.symvers, vmlinux.symvers) | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| else | else | ||||||
|  | @ -95,11 +100,16 @@ src := $(obj) | ||||||
| # Include the module's Makefile to find KBUILD_EXTRA_SYMBOLS | # Include the module's Makefile to find KBUILD_EXTRA_SYMBOLS | ||||||
| include $(kbuild-file) | include $(kbuild-file) | ||||||
| 
 | 
 | ||||||
| module.symvers-if-present := $(wildcard Module.symvers) |  | ||||||
| output-symdump := $(KBUILD_EXTMOD)/Module.symvers | output-symdump := $(KBUILD_EXTMOD)/Module.symvers | ||||||
| missing-input := $(filter-out $(module.symvers-if-present), Module.symvers) |  | ||||||
| 
 | 
 | ||||||
| modpost-args += -e $(addprefix -i ,$(module.symvers-if-present) $(KBUILD_EXTRA_SYMBOLS)) | ifeq ($(wildcard Module.symvers),) | ||||||
|  | missing-input := Module.symvers | ||||||
|  | else | ||||||
|  | modpost-args += -i Module.symvers | ||||||
|  | modpost-deps += Module.symvers | ||||||
|  | endif | ||||||
|  | 
 | ||||||
|  | modpost-args += -e $(addprefix -i , $(KBUILD_EXTRA_SYMBOLS)) | ||||||
| 
 | 
 | ||||||
| endif # ($(KBUILD_EXTMOD),) | endif # ($(KBUILD_EXTMOD),) | ||||||
| 
 | 
 | ||||||
|  | @ -108,12 +118,10 @@ modpost-args += -w | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef KBUILD_MODULES | ifdef KBUILD_MODULES | ||||||
| modorder-if-needed := $(MODORDER) |  | ||||||
| modpost-args += -T $(MODORDER) | modpost-args += -T $(MODORDER) | ||||||
|  | modpost-deps += $(MODORDER) | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| MODPOST = scripts/mod/modpost |  | ||||||
| 
 |  | ||||||
| # Read out modules.order to pass in modpost. | # Read out modules.order to pass in modpost. | ||||||
| # Otherwise, allmodconfig would fail with "Argument list too long". | # Otherwise, allmodconfig would fail with "Argument list too long". | ||||||
| quiet_cmd_modpost = MODPOST $@ | quiet_cmd_modpost = MODPOST $@ | ||||||
|  | @ -122,10 +130,10 @@ quiet_cmd_modpost = MODPOST $@ | ||||||
| 		echo >&2 "WARNING: $(missing-input) is missing."; \ | 		echo >&2 "WARNING: $(missing-input) is missing."; \ | ||||||
| 		echo >&2 "         Modules may not have dependencies or modversions."; \ | 		echo >&2 "         Modules may not have dependencies or modversions."; \ | ||||||
| 		echo >&2 "         You may get many unresolved symbol warnings.";) \ | 		echo >&2 "         You may get many unresolved symbol warnings.";) \ | ||||||
| 	$(MODPOST) $(modpost-args) $(vmlinux.o-if-present) | 	$(MODPOST) $(modpost-args) | ||||||
| 
 | 
 | ||||||
| targets += $(output-symdump) | targets += $(output-symdump) | ||||||
| $(output-symdump): $(modorder-if-needed) $(vmlinux.o-if-present) $(module.symvers-if-present) $(MODPOST) FORCE | $(output-symdump): $(modpost-deps) FORCE | ||||||
| 	$(call if_changed,modpost) | 	$(call if_changed,modpost) | ||||||
| 
 | 
 | ||||||
| __modpost: $(output-symdump) | __modpost: $(output-symdump) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Masahiro Yamada
						Masahiro Yamada