@@ -19,11 +19,11 @@ exit 1 fi if [ -z "${SYSTEM_MAP_FILE}" ]; then for trySystemMapFile in /proc/kallsyms "${kernelDir}/System.map" "/boot/System.map"; do - if grep ' sys_call_table' "${trySystemMapFile}" >/dev/null 2>/dev/null; then + if egrep ' sys_call_table($| )' "${trySystemMapFile}" >/dev/null 2>/dev/null; then systemMapFile="${trySystemMapFile}" break fi done