@@ -22,10 +22,10 @@ bool EfiBackend::detectFirmwareBackend() {
22
22
infoBuf = storage.read (StatusKey, size, NVStorage::OptRaw);
23
23
// Do not care if the value is a little bigger.
24
24
if (infoBuf && size >= sizeof (StatusInfo)) {
25
- DBGLOG (" efend" , " found proper status via normal nvram" );
25
+ DBGLOG (" efend" , " found authenticated restart status via normal nvram" );
26
26
info = reinterpret_cast <StatusInfo *>(infoBuf);
27
27
} else {
28
- SYSLOG (" efend" , " failed to find valid status, VirtualSMC EFI module is broken " );
28
+ SYSLOG (" efend" , " authenticated restart support is unavailable " );
29
29
}
30
30
31
31
storage.deinit ();
@@ -50,10 +50,10 @@ bool EfiBackend::detectFirmwareBackend() {
50
50
51
51
// Do not care if vsmc-key is a little bigger.
52
52
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" );
54
54
info = reinterpret_cast <StatusInfo *>(infoBuf);
55
55
} 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);
57
57
}
58
58
} else {
59
59
SYSLOG (" efend" , " failed to allocate status tmp buffer" );
0 commit comments