summaryrefslogtreecommitdiffstats
path: root/scripts/extract_symbol_offset
blob: 78b866830e56d73434e5cb386dd1e0ee62ff5b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

symbol="$1"
file="$2"

# extract symbol offset from file, remove leading zeros
ofs=$(${CROSS_COMPILE}nm -t d $file | grep "$symbol" | cut -d ' ' -f1 | sed "s/^[0]*//")

if [ -z "${ofs}" ]; then
	echo "symbol $symbol not found in $file"
	exit 1
fi

echo $ofs