diff options
author | Stéphane Lesimple <speed47_github@speed47.net> | 2018-01-08 23:07:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 23:07:41 +0100 |
commit | 75332e6e0f19a067516acd7b425514ebebe2e48d (patch) | |
tree | 99b70b9c50ab07762c09c650a059b45723bca1dd | |
parent | 8d4d295309303ea4b8cdb41e1113f602e92276d0 (diff) | |
parent | 2d33a4369ee3b41ef19ca710e1bb7ff8abf5f749 (diff) | |
download | spectre-meltdown-checker-75332e6e0f19a067516acd7b425514ebebe2e48d.tar.lz spectre-meltdown-checker-75332e6e0f19a067516acd7b425514ebebe2e48d.tar.xz spectre-meltdown-checker-75332e6e0f19a067516acd7b425514ebebe2e48d.zip |
Merge pull request #18 from GrimKriegor/linux-libre_support
Linux-libre support
-rwxr-xr-x | spectre-meltdown-checker.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spectre-meltdown-checker.sh b/spectre-meltdown-checker.sh index 60718fe..b455949 100755 --- a/spectre-meltdown-checker.sh +++ b/spectre-meltdown-checker.sh @@ -108,6 +108,7 @@ status=0 img='' # try to find the image of the current running kernel [ -e /boot/vmlinuz-linux ] && img=/boot/vmlinuz-linux +[ -e /boot/vmlinuz-linux-libre ] && img=/boot/vmlinuz-linux-libre [ -e /boot/vmlinuz-$(uname -r) ] && img=/boot/vmlinuz-$(uname -r) [ -e /boot/kernel-$( uname -r) ] && img=/boot/kernel-$( uname -r) [ -e /boot/bzImage-$(uname -r) ] && img=/boot/bzImage-$(uname -r) |