Merge branch 'for-33' of git://repo.or.cz/linux-kbuild
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 17 Dec 2009 15:23:42 +0000 (07:23 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 17 Dec 2009 15:23:42 +0000 (07:23 -0800)
* 'for-33' of git://repo.or.cz/linux-kbuild: (29 commits)
  net: fix for utsrelease.h moving to generated
  gen_init_cpio: fixed fwrite warning
  kbuild: fix make clean after mismerge
  kbuild: generate modules.builtin
  genksyms: properly consider  EXPORT_UNUSED_SYMBOL{,_GPL}()
  score: add asm/asm-offsets.h wrapper
  unifdef: update to upstream revision 1.190
  kbuild: specify absolute paths for cscope
  kbuild: create include/generated in silentoldconfig
  scripts/package: deb-pkg: use fakeroot if available
  scripts/package: add KBUILD_PKG_ROOTCMD variable
  scripts/package: tar-pkg: use tar --owner=root
  Kbuild: clean up marker
  net: add net_tstamp.h to headers_install
  kbuild: move utsrelease.h to include/generated
  kbuild: move autoconf.h to include/generated
  drop explicit include of autoconf.h
  kbuild: move compile.h to include/generated
  kbuild: drop include/asm
  kbuild: do not check for include/asm-$ARCH
  ...

Fixed non-conflicting clean merge of modpost.c as per comments from
Stephen Rothwell (modpost.c had grown an include of linux/autoconf.h
that needed to be changed to generated/autoconf.h)

1  2 
MAINTAINERS
arch/powerpc/platforms/chrp/setup.c
include/linux/page-flags.h
kernel/kexec.c
kernel/trace/trace.c
scripts/Makefile.lib
scripts/mod/modpost.c

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
diff --cc kernel/kexec.c
Simple merge
Simple merge
Simple merge
  #include <stdio.h>
  #include <ctype.h>
  #include "modpost.h"
- #include "../../include/linux/autoconf.h"
++#include "../../include/generated/autoconf.h"
  #include "../../include/linux/license.h"
  
 +/* Some toolchains use a `_' prefix for all user symbols. */
 +#ifdef CONFIG_SYMBOL_PREFIX
 +#define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
 +#else
 +#define MODULE_SYMBOL_PREFIX ""
 +#endif
 +
 +
  /* Are we using CONFIG_MODVERSIONS? */
  int modversions = 0;
  /* Warn about undefined symbols? (do so if we have vmlinux) */