projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc1ccc4
)
ftrace: default to tilegx if ARCH=tile is specified
author
Tony Lu
<
[email protected]
>
Thu, 5 Dec 2013 20:36:54 +0000
(15:36 -0500)
committer
Chris Metcalf
<
[email protected]
>
Thu, 5 Dec 2013 20:59:26 +0000
(15:59 -0500)
This matches the existing behavior in arch/tile/Makefile for defconfig.
Reported-by:
[email protected]
Acked-by: Steven Rostedt <
[email protected]
>
Signed-off-by: Tony Lu <
[email protected]
>
Signed-off-by: Chris Metcalf <
[email protected]
>
scripts/recordmcount.pl
patch
|
blob
|
history
diff --git
a/scripts/recordmcount.pl
b/scripts/recordmcount.pl
index d0da66396f6201b5dbce7e8b9aa2ae421aefd40a..91280b82da0874787e6947a18ed8381d1567b483 100755
(executable)
--- a/
scripts/recordmcount.pl
+++ b/
scripts/recordmcount.pl
@@
-364,7
+364,8
@@
if ($arch eq "x86_64") {
} elsif ($arch eq "blackfin") {
$mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
$mcount_adjust = -4;
-} elsif ($arch eq "tilegx") {
+} elsif ($arch eq "tilegx" || $arch eq "tile") {
+ # Default to the newer TILE-Gx architecture if only "tile" is given.
$mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
$type = ".quad";
$alignment = 8;