Commit 4e594d6b authored by Ralf Bächle's avatar Ralf Bächle Committed by Linus Torvalds

[PATCH] mips: build script fixes

Ignore a few MIPS specific sections that otherwise would cause a large number
of false warnings in the kernel's scripts.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8fc41201
...@@ -90,6 +90,7 @@ foreach $object (keys(%object)) { ...@@ -90,6 +90,7 @@ foreach $object (keys(%object)) {
$from !~ /\.data\.exit$/ && $from !~ /\.data\.exit$/ &&
$from !~ /\.exit\.data$/ && $from !~ /\.exit\.data$/ &&
$from !~ /\.altinstructions$/ && $from !~ /\.altinstructions$/ &&
$from !~ /\.pdr$/ &&
$from !~ /\.debug_info$/ && $from !~ /\.debug_info$/ &&
$from !~ /\.debug_aranges$/ && $from !~ /\.debug_aranges$/ &&
$from !~ /\.debug_ranges$/ && $from !~ /\.debug_ranges$/ &&
......
...@@ -95,6 +95,7 @@ foreach $object (sort(keys(%object))) { ...@@ -95,6 +95,7 @@ foreach $object (sort(keys(%object))) {
$from !~ /\.text\.lock$/ && $from !~ /\.text\.lock$/ &&
$from !~ /\.pci_fixup_header$/ && $from !~ /\.pci_fixup_header$/ &&
$from !~ /\.pci_fixup_final$/ && $from !~ /\.pci_fixup_final$/ &&
$from !~ /\.pdr$/ &&
$from !~ /\__param$/ && $from !~ /\__param$/ &&
$from !~ /\.altinstructions/ && $from !~ /\.altinstructions/ &&
$from !~ /\.debug_/)) { $from !~ /\.debug_/)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment