mirror of
https://github.com/dynup/kpatch
synced 2025-02-18 02:37:01 +00:00
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
if ! $(eu-readelf --wide --symbols test-gcc-static-local-var-4.ko | awk '$NF == "free_ioctx" { exit 1 }'); then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|