From 1286b4f9ef2543a0b2ecf656bc4d133ded5b7275 Mon Sep 17 00:00:00 2001 From: DH Date: Tue, 1 Aug 2023 15:41:39 +0300 Subject: [PATCH] [orbis-kernel] ipmi: stub 0x241 sys_ipmimgr_call --- orbis-kernel/src/sys/sys_sce.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/orbis-kernel/src/sys/sys_sce.cpp b/orbis-kernel/src/sys/sys_sce.cpp index 1170d64d3..52de4d62e 100644 --- a/orbis-kernel/src/sys/sys_sce.cpp +++ b/orbis-kernel/src/sys/sys_sce.cpp @@ -1001,6 +1001,12 @@ orbis::SysResult orbis::sys_ipmimgr_call(Thread *thread, uint op, uint kid, return ErrorCode::INVAL; } + if (op == 0x241) { + if (result) { + return uwrite(result, 0); + } + } + if (op == 0x400) { ORBIS_LOG_TODO("IMPI: connect?"); if (result) {