summaryrefslogtreecommitdiff
path: root/target/linux/xburst/files-2.6.32/arch/mips/boot/tools/entry
blob: 376e822a6353bff6f56689f619e3f50b0b0ec46f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# grab the kernel_entry address from the vmlinux elf image
entry=`$1 $2  | grep kernel_entry`

fs=`echo $entry | grep ffffffff`  # check toolchain output

if [ -n "$fs" ]; then
	echo "0x"`$1 $2  | grep kernel_entry | cut -c9- | awk '{print $1}'`
else
	echo "0x"`$1 $2  | grep kernel_entry | cut -c1- | awk '{print $1}'`
fi