27 lines
773 B
Diff
Executable File
27 lines
773 B
Diff
Executable File
From 0852966f5ef9821c291007cfedf7e744d8577215 Mon Sep 17 00:00:00 2001
|
|
From: hliangs90 <hliangs90@gmail.com>
|
|
Date: Fri, 23 Aug 2024 21:55:31 +0800
|
|
Subject: [PATCH] Modify OEM Command to 0x36 to support IANA register
|
|
|
|
Signed-off-by: hliangs90 <hliangs90@gmail.com>
|
|
---
|
|
ipmid-new.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ipmid-new.cpp b/ipmid-new.cpp
|
|
index 2a78c68..8f5cd32 100644
|
|
--- a/ipmid-new.cpp
|
|
+++ b/ipmid-new.cpp
|
|
@@ -318,7 +318,7 @@ message::Response::ptr executeIpmiCommand(message::Request::ptr request)
|
|
{
|
|
return executeIpmiGroupCommand(request);
|
|
}
|
|
- else if (netFnOem == netFn)
|
|
+ else if (netFnOemFour == netFn || netFn == netFnOem)
|
|
{
|
|
return executeIpmiOemCommand(request);
|
|
}
|
|
--
|
|
2.25.1
|
|
|