android_kernel_samsung_hero.../arch/x86/vdso/checkundef.sh
2016-08-17 17:55:32 +08:00

10 lines
169 B
Bash
Executable file

#!/bin/sh
nm="$1"
file="$2"
$nm "$file" | grep '^ *U' > /dev/null 2>&1
if [ $? -eq 1 ]; then
exit 0
else
echo "$file: undefined symbols found" >&2
exit 1
fi