mirror of
https://github.com/ipmitool/ipmitool.git
synced 2026-06-23 05:41:36 +00:00
ID:401 - Fixed 30 second delay when activating SOL on 'dumb' Intel MACs.
Boards equipped with 'dumb' Intel MAC can do only SOL. IPMITool performs several autodetection requests before initiating SOL, which are not recognized by the boards. With each request retried 5 times it takes about 30 seconds to establish SOL. This patch resolves the problem.
This commit is contained in:
committed by
Zdenek Styblik
parent
c9e3e6a01b
commit
37307c93e9
@@ -3471,13 +3471,17 @@ ipmi_lanplus_open(struct ipmi_intf * intf)
|
||||
if (rc < 0) {
|
||||
goto fail;
|
||||
}
|
||||
}
|
||||
intf->manufacturer_id = ipmi_get_oem(intf);
|
||||
|
||||
/* automatically detect interface request and response sizes */
|
||||
hpm2_detect_max_payload_size(intf);
|
||||
/* automatically detect interface request and response sizes */
|
||||
hpm2_detect_max_payload_size(intf);
|
||||
}
|
||||
|
||||
bridgePossible = 1;
|
||||
|
||||
if (!ipmi_oem_active(intf, "i82571spt")) {
|
||||
intf->manufacturer_id = ipmi_get_oem(intf);
|
||||
}
|
||||
|
||||
return intf->fd;
|
||||
|
||||
fail:
|
||||
|
||||
Reference in New Issue
Block a user