-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No AMT message #16
Comments
diff --git a/mei-amt-check.c b/mei-amt-check.c
index d3f7f0f..ee37deb 100644
--- a/mei-amt-check.c
+++ b/mei-amt-check.c
@@ -140,7 +140,8 @@ static bool mei_init(struct mei *me, const uuid_le *guid,
memcpy(&data.in_client_uuid, &me->guid, sizeof(me->guid));
result = ioctl(me->fd, IOCTL_MEI_CONNECT_CLIENT, &data);
if (result) {
- mei_err(me, "Management Engine refused connection. This probably means you don't have AMT\n");
+ mei_err(me, "Management Engine refused connection. This probably means you don't have AMT (result:'%d')\n", result);
+ //Otherwise, it shall return −1 and set errno to indicate the error.
goto err;
}
cl = &data.out_client_properties;
@@ -159,6 +160,7 @@ static bool mei_init(struct mei *me, const uuid_le *guid,
return true;
err:
mei_deinit(me);
+ perror("faiul");
return false;
}
I'm using this BIOS:
seen here: https://www.asus.com/us/Motherboards/PRIME-Z370-A/HelpDesk_BIOS/ I don't remember anything with Intel Management Engine in BIOS, |
I faced the same issue. Motherboard: Intel DH61HO My BIOS shows iAMT, by the way, though I cannot do anything to it. |
Yes, getting |
When I run this, I get:
It would be helpful to put in the README.me that that is a possible output and what that means, and why it's different than the
Intel AMT: DISABLED
output.The mei driver is loaded, lspci outputs:
00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03)
dmesg doesn't say anything about mei.
I think I don't have an AMT.
The text was updated successfully, but these errors were encountered: