Blame view

scripts/makelst 773 Bytes
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
1
  #!/bin/sh
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
  # A script to dump mixed source code & assembly
  # with correct relocations from System.map
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
4
  # Requires the following lines in makefile:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
  #%.lst: %.c
f77bf0142   Sam Ravnborg   kbuild: introduce...
6
7
  #	$(CC) $(c_flags) -g -c -o $*.o $< &&
  #	$(srctree)/scripts/makelst $*.o System.map $(OBJDUMP) > $@
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
  #
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
9
10
11
  # Copyright (C) 2000 IBM Corporation
  # Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
  #            William Stearns <wstearns@pobox.com>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
  #
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
13
14
15
16
17
18
  # awk style field access
  field() {
    shift $1 ; echo $1
  }
  
  t1=`$3 --syms $1 | grep .text | grep -m1 " F "`
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
  if [ -n "$t1" ]; then
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
20
    t2=`field 6 $t1`
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
    if [ ! -r $2 ]; then
      echo "No System.map" >&2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
    else
      t3=`grep $t2 $2`
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
25
26
27
      t4=`field 1 $t3`
      t5=`field 1 $t1`
      t6=`printf "%lu" $((0x$t4 - 0x$t5))`
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
    fi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  fi
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
30
  $3 -r --source --adjust-vma=${t6:-0} $1