Blame view

scripts/makelst 808 Bytes
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
1
  #!/bin/sh
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
  # A script to dump mixed source code & assembly
  # with correct relocations from System.map
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
5
  # Requires the following lines in makefile:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
  #%.lst: %.c
f77bf0142   Sam Ravnborg   kbuild: introduce...
7
8
  #	$(CC) $(c_flags) -g -c -o $*.o $< &&
  #	$(srctree)/scripts/makelst $*.o System.map $(OBJDUMP) > $@
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
  #
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
10
11
12
  # 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
13
  #
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
14
15
16
17
18
19
  # 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
20
  if [ -n "$t1" ]; then
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
21
    t2=`field 6 $t1`
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
    if [ ! -r $2 ]; then
      echo "No System.map" >&2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
    else
      t3=`grep $t2 $2`
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
26
27
28
      t4=`field 1 $t3`
      t5=`field 1 $t1`
      t6=`printf "%lu" $((0x$t4 - 0x$t5))`
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
    fi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
  fi
f6112ec27   Oleg Verych   [PATCH] kbuild sc...
31
  $3 -r --source --adjust-vma=${t6:-0} $1