mirror of https://github.com/dynup/kpatch
9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
|
#!/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
|