Magellan Linux

Annotation of /tags/mkinitrd-6_2_0/scripts/showasm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (hide annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (17 years ago) by niro
Original Path: trunk/mkinitrd-magellan/busybox/scripts/showasm
File size: 664 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 niro 532 #!/bin/sh
2    
3     # Copyright 2006 Rob Landley <rob@landley.net>
4     # Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
5    
6     # Dumb little utility function to print out the assembly dump of a single
7     # function, or list the functions so dumpable in an executable. You'd think
8     # there would be a way to get objdump to do this, but I can't find it.
9    
10     [ $# -lt 1 ] || [ $# -gt 2 ] && { echo "usage: showasm file function"; exit 1; }
11    
12     [ ! -f $1 ] && { echo "File $1 not found"; exit 1; }
13    
14     if [ $# -eq 1 ]
15     then
16     objdump -d $1 | sed -n -e 's/^[0-9a-fA-F]* <\(.*\)>:$/\1/p'
17     exit 0
18     fi
19    
20     objdump -d $1 | sed -n -e '/./{H;$!d}' -e "x;/^.[0-9a-fA-F]* <$2>:/p"
21    

Properties

Name Value
svn:executable *