mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2024-11-06 22:23:41 +01:00
Merge pull request #12 from sebastianw/fix-double-print
Remove superfluous 'YES' output when checking cpuinfo
This commit is contained in:
commit
f8ca11e56a
@ -288,11 +288,9 @@ fi
|
|||||||
/bin/echo -n "* PTI enabled and active: "
|
/bin/echo -n "* PTI enabled and active: "
|
||||||
if grep ^flags /proc/cpuinfo | grep -qw pti; then
|
if grep ^flags /proc/cpuinfo | grep -qw pti; then
|
||||||
# vanilla PTI patch sets the 'pti' flag in cpuinfo
|
# vanilla PTI patch sets the 'pti' flag in cpuinfo
|
||||||
pstatus green YES
|
|
||||||
kpti_enabled=1
|
kpti_enabled=1
|
||||||
elif grep ^flags /proc/cpuinfo | grep -qw kaiser; then
|
elif grep ^flags /proc/cpuinfo | grep -qw kaiser; then
|
||||||
# kernel line 4.9 sets the 'kaiser' flag in cpuinfo
|
# kernel line 4.9 sets the 'kaiser' flag in cpuinfo
|
||||||
pstatus green YES
|
|
||||||
kpti_enabled=1
|
kpti_enabled=1
|
||||||
elif [ -e /sys/kernel/debug/x86/pti_enabled ]; then
|
elif [ -e /sys/kernel/debug/x86/pti_enabled ]; then
|
||||||
# RedHat Backport creates a dedicated file, see https://access.redhat.com/articles/3311301
|
# RedHat Backport creates a dedicated file, see https://access.redhat.com/articles/3311301
|
||||||
|
Loading…
Reference in New Issue
Block a user