Merge tag 'kbuild-v5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 8 May 2019 19:25:12 +0000 (12:25 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 8 May 2019 19:25:12 +0000 (12:25 -0700)
Pull Kbuild updates from Masahiro Yamada:

 - allow users to invoke 'make' out of the source tree

 - refactor scripts/mkmakefile

 - deprecate KBUILD_SRC, which was used to track the source tree
   location for O= build.

 - fix recordmcount.pl in case objdump output is localized

 - turn unresolved symbols in external modules to errors from warnings
   by default; pass KBUILD_MODPOST_WARN=1 to get them back to warnings

 - generate modules.builtin.modinfo to collect .modinfo data from
   built-in modules

 - misc Makefile cleanups

* tag 'kbuild-v5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (21 commits)
  .gitignore: add more all*.config patterns
  moduleparam: Save information about built-in modules in separate file
  Remove MODULE_ALIAS() calls that take undefined macro
  .gitignore: add leading and trailing slashes to generated directories
  scripts/tags.sh: fix direct execution of scripts/tags.sh
  scripts: override locale from environment when running recordmcount.pl
  samples: kobject: allow CONFIG_SAMPLE_KOBJECT to become y
  samples: seccomp: turn CONFIG_SAMPLE_SECCOMP into a bool option
  kbuild: move Documentation to vmlinux-alldirs
  kbuild: move samples/ to KBUILD_VMLINUX_OBJS
  modpost: make KBUILD_MODPOST_WARN also configurable for external modules
  kbuild: check arch/$(SRCARCH)/include/generated before out-of-tree build
  kbuild: remove unneeded dependency for include/config/kernel.release
  memory: squash drivers/memory/Makefile.asm-offsets
  kbuild: use $(srctree) instead of KBUILD_SRC to check out-of-tree build
  kbuild: mkmakefile: generate a simple wrapper of top Makefile
  kbuild: mkmakefile: do not check the generated Makefile marker
  kbuild: allow Kbuild to start from any directory
  kbuild: pass $(MAKECMDGOALS) to sub-make as is
  kbuild: fix warning "overriding recipe for target 'Makefile'"
  ...

1  2 
Documentation/dontdiff
Makefile
drivers/clocksource/timer-ti-dm.c
include/linux/module.h
samples/Kconfig
samples/Makefile
scripts/Makefile.build
scripts/link-vmlinux.sh
scripts/recordmcount.pl

@@@ -176,9 -176,9 +176,10 @@@ mkpre
  mkregtable
  mktables
  mktree
 +mkutf8data
  modpost
  modules.builtin
+ modules.builtin.modinfo
  modules.order
  modversions.h*
  nconf
diff --cc Makefile
Simple merge
Simple merge
Simple merge
diff --cc samples/Kconfig
Simple merge
@@@ -1,6 -1,6 +1,6 @@@
  # Makefile for Linux samples code
  
- obj-$(CONFIG_SAMPLES) += kobject/ kprobes/ trace_events/ livepatch/ \
+ obj-y                 += kobject/ kprobes/ trace_events/ livepatch/ \
                           hw_breakpoint/ kfifo/ kdb/ hidraw/ rpmsg/ seccomp/ \
                           configfs/ connector/ v4l/ trace_printk/ \
 -                         vfio-mdev/ statx/ qmi/ binderfs/
 +                         vfio-mdev/ vfs/ qmi/ binderfs/ pidfd/
Simple merge
Simple merge
Simple merge