Update MSR access debug message; Update readme

This commit is contained in:
tSte
2018-11-06 07:11:37 +01:00
parent 73df1ff98e
commit b8ef7b72e5
2 changed files with 3 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ def writemsr(msr, val):
os.close(f)
except (IOError, OSError) as e:
if e.errno == EPERM or e.errno == EACCES:
print('[E] Unable to write to MSR. Try to disable Secure Boot.')
print('[E] Unable to write to MSR. Try to disable Secure Boot and check if your kernel does not restrict access to MSR.')
sys.exit(1)
else:
raise e