From b43d857c47539a2e346c391fe1b1da06c36d34c0 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Tue, 24 Nov 2009 11:08:28 +0100 Subject: [PATCH] fix order of OEMparameters to enable BIOS SOL on newer AMT generations (fixes soap failure) --- amttool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amttool b/amttool index 3aaab53..69bd1bb 100755 --- a/amttool +++ b/amttool @@ -279,9 +279,9 @@ sub remote_control($) { push (@args, SOAP::Data->name('Command' => $rcc{$command})); push (@args, SOAP::Data->name('IanaOemNumber' => 343)); if ($command ne 'powerdown') { - push (@args, SOAP::Data->name('OEMparameters' => 1 )); push (@args, SOAP::Data->name('SpecialCommand' => 0xC1 )); push (@args, SOAP::Data->name('SpecialCommandParameter' => 0)); + push (@args, SOAP::Data->name('OEMparameters' => 1 )); } do_soap($rcs, "RemoteControl", @args); } else { -- 2.39.2