blob: e28ba35f120ee38f72873c6824275c7bbebb0a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if dmesg | grep '\*ERROR\*' > /dev/null ; then
echo "DRM_ERROR dirt in dmesg"
exit 1
fi
if dmesg | grep -- '------\[ cut here \]----' > /dev/null ; then
echo "found a backtrace in dmesg"
exit 1
fi
|