Indentation fix, cleanup.
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / gensyminfo.sh.in
blob2e8716b425cb04d9379ef5e2c629283d0f346c90
1 #! /bin/sh
2 set -e
4 # Copyright (C) 2010 Free Software Foundation, Inc.
6 # This gensymlist.sh is free software; the author
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 # PARTICULAR PURPOSE.
16 # Example:
18 # gensyms.sh normal.module
21 module=$1
22 modname=`echo $module | sed -e 's@\.module.*$@@'`
24 # Print all symbols defined by module
25 if test x"@TARGET_NMFLAGS_DEFINED_ONLY@" = x && test x"@TARGET_NMFLAGS_MINUS_P@" = x; then
26 @TARGET_NM@ -g -p $module | \
27 sed -n "s@^\([0-9a-fA-F]*\) *[TBRDS] *\([^ ]*\).*@defined $modname \2@p"
28 elif test x"@TARGET_NMFLAGS_DEFINED_ONLY@" = x; then
29 @TARGET_NM@ -g @TARGET_NMFLAGS_MINUS_P@ -p $module | \
30 sed -n "s@^\([^ ]*\) *[TBRDS] *\([0-9a-fA-F]*\).*@defined $modname \1@p"
31 else
32 @TARGET_NM@ -g --defined-only @TARGET_NMFLAGS_MINUS_P@ -p $module | \
33 sed "s@^\([^ ]*\).*@defined $modname \1@g"
36 # Print all undefined symbols used by module
37 @TARGET_NM@ -u @TARGET_NMFLAGS_MINUS_P@ -p $module | sed "s@^\([^ ]*\).*@undefined $modname \1@g"