mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	Pull misc kbuild updates from Michal Marek:
 - deb-pkg:
     + module signing fix
     + dtb files are added to the package
     + do not require `hostname -f` to work during build
     + make deb-pkg generates a source package, bindeb-pkg has been
       added to only generate the binary package
 - rpm-pkg packages /lib/modules as well
 - new coccinelle patch and updates to existing ones
 - new stackusage & stackdelta script to collect and compare stack usage
   info (using gcc's -fstack-usage)
 - make tags understands trace_*_rcuidle() macros
 - .gitignore updates, misc cleanups
* 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: (27 commits)
  deb-pkg: add source package
  package/Makefile: move source tar creation to a function
  scripts: add stackdelta script
  kbuild: remove *.su files generated by -fstack-usage
  .gitignore: add *.su pattern
  scripts: add stackusage script
  kbuild: avoid listing /lib/modules in kernel spec file
  fallback to hostname in scripts/package/builddeb
  coccinelle: api: extend spatch for dropping unnecessary owner
  deb-pkg: simplify directory creation
  scripts/tags.sh: Include trace_*_rcuidle() in tags
  scripts/package/Makefile: rpmbuild is needed for rpm targets
  Kbuild: Add ID files to .gitignore
  gitignore: Add MIPS vmlinux.32 to the list
  coccinelle: simple_return: Add a blank line
  coccinelle: irqf_oneshot.cocci: Improve the generated commit log
  coccinelle: api: add vma_pages.cocci
  scripts/coccinelle/misc/irqf_oneshot.cocci: Fix grammar
  scripts/coccinelle/misc/semicolon.cocci: Use imperative mood
  coccinelle: simple_open: Use imperative mood
  ...
		
	
			
		
			
				
	
	
		
			114 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
#
 | 
						|
# NOTE! Don't add files that are generated in specific
 | 
						|
# subdirectories here. Add them in the ".gitignore" file
 | 
						|
# in that subdirectory instead.
 | 
						|
#
 | 
						|
# NOTE! Please use 'git ls-files -i --exclude-standard'
 | 
						|
# command after changing this file, to see if there are
 | 
						|
# any tracked files which get ignored after the change.
 | 
						|
#
 | 
						|
# Normal rules
 | 
						|
#
 | 
						|
.*
 | 
						|
*.o
 | 
						|
*.o.*
 | 
						|
*.a
 | 
						|
*.s
 | 
						|
*.ko
 | 
						|
*.so
 | 
						|
*.so.dbg
 | 
						|
*.mod.c
 | 
						|
*.i
 | 
						|
*.lst
 | 
						|
*.symtypes
 | 
						|
*.order
 | 
						|
*.elf
 | 
						|
*.bin
 | 
						|
*.tar
 | 
						|
*.gz
 | 
						|
*.bz2
 | 
						|
*.lzma
 | 
						|
*.xz
 | 
						|
*.lz4
 | 
						|
*.lzo
 | 
						|
*.patch
 | 
						|
*.gcno
 | 
						|
modules.builtin
 | 
						|
Module.symvers
 | 
						|
*.dwo
 | 
						|
*.su
 | 
						|
 | 
						|
#
 | 
						|
# Top-level generic files
 | 
						|
#
 | 
						|
/tags
 | 
						|
/TAGS
 | 
						|
/linux
 | 
						|
/vmlinux
 | 
						|
/vmlinux.32
 | 
						|
/vmlinux-gdb.py
 | 
						|
/vmlinuz
 | 
						|
/System.map
 | 
						|
/Module.markers
 | 
						|
 | 
						|
#
 | 
						|
# Debian directory (make deb-pkg)
 | 
						|
#
 | 
						|
/debian/
 | 
						|
 | 
						|
#
 | 
						|
# tar directory (make tar*-pkg)
 | 
						|
#
 | 
						|
/tar-install/
 | 
						|
 | 
						|
#
 | 
						|
# git files that we don't want to ignore even it they are dot-files
 | 
						|
#
 | 
						|
!.gitignore
 | 
						|
!.mailmap
 | 
						|
 | 
						|
#
 | 
						|
# Generated include files
 | 
						|
#
 | 
						|
include/config
 | 
						|
include/generated
 | 
						|
arch/*/include/generated
 | 
						|
 | 
						|
# stgit generated dirs
 | 
						|
patches-*
 | 
						|
 | 
						|
# quilt's files
 | 
						|
patches
 | 
						|
series
 | 
						|
 | 
						|
# cscope files
 | 
						|
cscope.*
 | 
						|
ncscope.*
 | 
						|
 | 
						|
# gnu global files
 | 
						|
GPATH
 | 
						|
GRTAGS
 | 
						|
GSYMS
 | 
						|
GTAGS
 | 
						|
 | 
						|
# id-utils files
 | 
						|
ID
 | 
						|
 | 
						|
*.orig
 | 
						|
*~
 | 
						|
\#*#
 | 
						|
 | 
						|
#
 | 
						|
# Leavings from module signing
 | 
						|
#
 | 
						|
extra_certificates
 | 
						|
signing_key.pem
 | 
						|
signing_key.priv
 | 
						|
signing_key.x509
 | 
						|
x509.genkey
 | 
						|
 | 
						|
# Kconfig presets
 | 
						|
all.config
 | 
						|
 | 
						|
# Kdevelop4
 | 
						|
*.kdev4
 |