mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2025-01-03 01:55:51 +01:00
enh: -v -v now implies --dump-mock-data
This commit is contained in:
parent
e83dc818cd
commit
0bd38ddda0
@ -143,7 +143,7 @@ docker run --rm --privileged -v /boot:/boot:ro -v /dev/cpu:/dev/cpu:ro -v /lib/m
|
|||||||
- Note: These 4 CVEs are similar and collectively named "MDS" vulnerabilities, the mitigation is identical for all
|
- Note: These 4 CVEs are similar and collectively named "MDS" vulnerabilities, the mitigation is identical for all
|
||||||
- Impact: Kernel
|
- Impact: Kernel
|
||||||
- Mitigation: microcode update + kernel update making possible to protect various CPU internal buffers from unprivileged speculative access to data
|
- Mitigation: microcode update + kernel update making possible to protect various CPU internal buffers from unprivileged speculative access to data
|
||||||
- Performance impact of the mitigation: TBC
|
- Performance impact of the mitigation: low to significant
|
||||||
|
|
||||||
## Understanding what this script does and doesn't
|
## Understanding what this script does and doesn't
|
||||||
|
|
||||||
|
@ -841,6 +841,7 @@ while [ -n "$1" ]; do
|
|||||||
esac
|
esac
|
||||||
elif [ "$1" = "-v" ] || [ "$1" = "--verbose" ]; then
|
elif [ "$1" = "-v" ] || [ "$1" = "--verbose" ]; then
|
||||||
opt_verbose=$(( opt_verbose + 1 ))
|
opt_verbose=$(( opt_verbose + 1 ))
|
||||||
|
[ "$opt_verbose" -ge 2 ] && opt_mock=1
|
||||||
shift
|
shift
|
||||||
elif [ "$1" = "--cve" ]; then
|
elif [ "$1" = "--cve" ]; then
|
||||||
if [ -z "$2" ]; then
|
if [ -z "$2" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user