[GIT PATCH] kbuild fixes

Previous thread: PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3 by Ryan Hope on Monday, May 19, 2008 - 1:47 pm. (2 messages)

Next thread: 2.6.24.7-rt7 by Steven Rostedt on Monday, May 19, 2008 - 3:07 pm. (1 message)
To: Linus Torvalds <torvalds@...>, LKML <linux-kernel@...>, linux-kbuild <linux-kbuild@...>
Cc: Jan Blunck <jblunck@...>, Christophe Jaillet <christophe.jaillet@...>, Randy Dunlap <randy.dunlap@...>, Paulo Marques <pmarques@...>, S. Çağlar <caglar@...>, Andi Kleen <ak@...>, Masatake YAMATO <yamato@...>
Date: Monday, May 19, 2008 - 2:25 pm

Hi Linus.

Please pull from:

ssh://master.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git

Following fixes has been collected:

Andi Kleen (1):
kbuild: disable modpost warnings for linkonce sections

Christophe Jaillet (1):
kconfig: incorrect 'len' field initialisation ?

Jan Blunck (1):
Don't clean bounds.h and asm-offsets.h

Masatake YAMATO (1):
kbuild: escape meta characters in regular expression in make TAGS

Randy Dunlap (1):
kernel-doc: allow unnamed bit-fields

S.Çağlar Onur (1):
Remove *.rej pattern from .gitignore

Sam Ravnborg (2):
MAINTAINERS: document names of new kbuild trees
kbuild: filter away debug symbols from kernel symbols

The kernel-doc patch is not a real 'fix' as such.
But as the patch most likely does not prevent your systems from
booting I took it here too.

Sam

.gitignore | 1 -
Kbuild | 3 +--
MAINTAINERS | 3 ++-
Makefile | 3 ++-
scripts/kallsyms.c | 3 +++
scripts/kconfig/util.c | 2 +-
scripts/kernel-doc | 4 +++-
scripts/mksysmap | 3 ++-
scripts/mod/modpost.c | 2 +-
9 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/.gitignore b/.gitignore
index 090b293..9c0d650 100644
--- a/.gitignore
+++ b/.gitignore
@@ -54,6 +54,5 @@ series
cscope.*

*.orig
-*.rej
*~
\#*#
diff --git a/Kbuild b/Kbuild
index 32f19c5..e750e9c 100644
--- a/Kbuild
+++ b/Kbuild
@@ -96,5 +96,4 @@ missing-syscalls: scripts/checksyscalls.sh FORCE
$(call cmd,syscalls)

# Delete all targets during make clean
-clean-files := $(addprefix $(objtree)/,$(targets))
-
+clean-files := $(addprefix $(objtree)/,$(filter-out $(bounds-file) $(offsets-file),$(targets)))
diff --git a/MAINTAINERS b/MAINTAINERS
index f5583dc..74b1c55 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2318,7 +2318,8 @@ S: Maintained
KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
P: Sam Ravnbo...

Previous thread: PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3 by Ryan Hope on Monday, May 19, 2008 - 1:47 pm. (2 messages)

Next thread: 2.6.24.7-rt7 by Steven Rostedt on Monday, May 19, 2008 - 3:07 pm. (1 message)