Skip to content

Commit 566adc0

Browse files
committed
Update auth restart messages
1 parent 29b9ef7 commit 566adc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

VirtualSMC/kern_efiend.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ bool EfiBackend::detectFirmwareBackend() {
2222
infoBuf = storage.read(StatusKey, size, NVStorage::OptRaw);
2323
// Do not care if the value is a little bigger.
2424
if (infoBuf && size >= sizeof(StatusInfo)) {
25-
DBGLOG("efend", "found proper status via normal nvram");
25+
DBGLOG("efend", "found authenticated restart status via normal nvram");
2626
info = reinterpret_cast<StatusInfo *>(infoBuf);
2727
} else {
28-
SYSLOG("efend", "failed to find valid status, VirtualSMC EFI module is broken");
28+
SYSLOG("efend", "authenticated restart support is unavailable");
2929
}
3030

3131
storage.deinit();
@@ -50,10 +50,10 @@ bool EfiBackend::detectFirmwareBackend() {
5050

5151
// Do not care if vsmc-key is a little bigger.
5252
if (status == EFI_SUCCESS && size >= sizeof(StatusInfo)) {
53-
DBGLOG("efend", "found proper status via efi nvram");
53+
DBGLOG("efend", "found authenticated restart status via efi nvram");
5454
info = reinterpret_cast<StatusInfo *>(infoBuf);
5555
} else {
56-
SYSLOG("efend", "failed to find valid status (%llX, %lld), VirtualSMC EFI module is broken", status, size);
56+
SYSLOG("efend", "authenticated restart support is unavailable (%llX, %lld)", status, size);
5757
}
5858
} else {
5959
SYSLOG("efend", "failed to allocate status tmp buffer");

0 commit comments

Comments
 (0)