mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
				synced 2025-11-01 01:17:13 +10:00 
			
		
		
		
	Commit5c3d1d0abb("kbuild: add a tool to list files ignored by git") added a new tool, scripts/list-gitignored. My intention was to create source packages without cleaning the source tree, without relying on git. Linus strongly objected to it, and suggested using 'git archive' instead. [1] [2] [3] This commit goes in that direction - Remove scripts/list-gitignored.c and rewrites Makefiles and scripts to use 'git archive' for building Debian and RPM source packages. It also makes 'make perf-tar*-src-pkg' use 'git archive' again. Going forward, building source packages is only possible in a git-managed tree. Building binary packages does not require git. [1]: https://lore.kernel.org/lkml/CAHk-=wi49sMaC7vY1yMagk7eqLK=1jHeHQ=yZ_k45P=xBccnmA@mail.gmail.com/ [2]: https://lore.kernel.org/lkml/CAHk-=wh5AixGsLeT0qH2oZHKq0FLUTbyTw4qY921L=PwYgoGVw@mail.gmail.com/ [3]: https://lore.kernel.org/lkml/CAHk-=wgM-W6Fu==EoAVCabxyX8eYBz9kNC88-tm9ExRQwA79UQ@mail.gmail.com/ Fixes:5c3d1d0abb("kbuild: add a tool to list files ignored by git") Fixes:e0ca16749a("kbuild: make perf-tar*-src-pkg work without relying on git") Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0
 | |
| ###
 | |
| # scripts contains sources for various helper programs used throughout
 | |
| # the kernel for the build process.
 | |
| 
 | |
| hostprogs-always-$(CONFIG_KALLSYMS)			+= kallsyms
 | |
| hostprogs-always-$(BUILD_C_RECORDMCOUNT)		+= recordmcount
 | |
| hostprogs-always-$(CONFIG_BUILDTIME_TABLE_SORT)		+= sorttable
 | |
| hostprogs-always-$(CONFIG_ASN1)				+= asn1_compiler
 | |
| hostprogs-always-$(CONFIG_MODULE_SIG_FORMAT)		+= sign-file
 | |
| hostprogs-always-$(CONFIG_SYSTEM_EXTRA_CERTIFICATE)	+= insert-sys-cert
 | |
| always-$(CONFIG_RUST)					+= target.json
 | |
| 
 | |
| filechk_rust_target = $< < include/config/auto.conf
 | |
| 
 | |
| $(obj)/target.json: scripts/generate_rust_target include/config/auto.conf FORCE
 | |
| 	$(call filechk,rust_target)
 | |
| 
 | |
| hostprogs += generate_rust_target
 | |
| generate_rust_target-rust := y
 | |
| 
 | |
| HOSTCFLAGS_sorttable.o = -I$(srctree)/tools/include
 | |
| HOSTLDLIBS_sorttable = -lpthread
 | |
| HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include
 | |
| HOSTCFLAGS_sign-file.o = $(shell $(HOSTPKG_CONFIG) --cflags libcrypto 2> /dev/null)
 | |
| HOSTLDLIBS_sign-file = $(shell $(HOSTPKG_CONFIG) --libs libcrypto 2> /dev/null || echo -lcrypto)
 | |
| 
 | |
| ifdef CONFIG_UNWINDER_ORC
 | |
| ifeq ($(ARCH),x86_64)
 | |
| ARCH := x86
 | |
| endif
 | |
| HOSTCFLAGS_sorttable.o += -I$(srctree)/tools/arch/x86/include
 | |
| HOSTCFLAGS_sorttable.o += -DUNWINDER_ORC_ENABLED
 | |
| endif
 | |
| 
 | |
| ifdef CONFIG_BUILDTIME_MCOUNT_SORT
 | |
| HOSTCFLAGS_sorttable.o += -DMCOUNT_SORT_ENABLED
 | |
| endif
 | |
| 
 | |
| # The following programs are only built on demand
 | |
| hostprogs += unifdef
 | |
| 
 | |
| # The module linker script is preprocessed on demand
 | |
| targets += module.lds
 | |
| 
 | |
| subdir-$(CONFIG_GCC_PLUGINS) += gcc-plugins
 | |
| subdir-$(CONFIG_MODVERSIONS) += genksyms
 | |
| subdir-$(CONFIG_SECURITY_SELINUX) += selinux
 | |
| 
 | |
| # Let clean descend into subdirs
 | |
| subdir-	+= basic dtc gdb kconfig mod
 |