-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 46102 b: refs/heads/master c: b6ec8f0 h: refs/heads/master v: v3
- Loading branch information
Atsushi Nemoto
authored and
Ralf Baechle
committed
Feb 6, 2007
1 parent
a3db5ef
commit f2b2b6b
Showing
6 changed files
with
93 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 76c329563c5b8663ef27eb1bd195885ab826cbd0 | ||
refs/heads/master: b6ec8f069bf202d2bd888aa9137b2cc3aad4c573 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
# A script to dump mixed source code & assembly | ||
# with correct relocations from System.map | ||
# Requires the following lines in makefile: | ||
# Requires the following lines in Rules.make. | ||
# Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) | ||
# William Stearns <wstearns@pobox.com> | ||
#%.lst: %.c | ||
# $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(CFLAGS_$@) -g -c -o $*.o $< | ||
# $(srctree)/scripts/makelst $*.o $(objtree)/System.map $(OBJDUMP) | ||
# $(TOPDIR)/scripts/makelst $*.o $(TOPDIR)/System.map $(OBJDUMP) | ||
# | ||
# Copyright (C) 2000 IBM Corporation | ||
# Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) | ||
# William Stearns <wstearns@pobox.com> | ||
# Copyright (C) 2000 IBM Corporation | ||
# Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) | ||
# | ||
|
||
# awk style field access | ||
field() { | ||
shift $1 ; echo $1 | ||
} | ||
|
||
t1=`$3 --syms $1 | grep .text | grep -m1 " F "` | ||
t1=`$3 --syms $1 | grep .text | grep " F " | head -n 1` | ||
if [ -n "$t1" ]; then | ||
t2=`field 6 $t1` | ||
t2=`echo $t1 | gawk '{ print $6 }'` | ||
if [ ! -r $2 ]; then | ||
echo "No System.map" >&2 | ||
t7=0 | ||
else | ||
t3=`grep $t2 $2` | ||
t4=`field 1 $t3` | ||
t5=`field 1 $t1` | ||
t6=`printf "%lu" $((0x$t4 - 0x$t5))` | ||
t4=`echo $t3 | gawk '{ print $1 }'` | ||
t5=`echo $t1 | gawk '{ print $1 }'` | ||
t6=`echo $t4 - $t5 | tr a-f A-F` | ||
t7=`( echo ibase=16 ; echo $t6 ) | bc` | ||
fi | ||
else | ||
t7=0 | ||
fi | ||
$3 -r --source --adjust-vma=${t6:-0} $1 | ||
$3 -r --source --adjust-vma=$t7 $1 |