On 02/16/2017 02:46 AM, BYEONG-GI KIM wrote:
> Hello.
>
> I'm a beginner who has started learning IPMI.
>
> I have a question; Is it possible to correct hardware information from
> a PC which doesn't have BMC device via OpenIPMI?
>
> Someone told me that the OpenIPMI can be an alternative of the B
Hello.
I'm a beginner who has started learning IPMI.
I have a question; Is it possible to correct hardware information from a PC
which doesn't have BMC device via OpenIPMI?
Someone told me that the OpenIPMI can be an alternative of the BMC device
so that the hardware information can be collected
.@juniper.net]
Sent: Sunday, September 15, 2013 10:09 PM
To: miny...@acm.org
Cc: openipmi-developer@lists.sourceforge.net
Subject: Re: [Openipmi-developer] OpenIPMI question
Hi Corey,
Thanks for your reply.
I have added following log function.
static void
log_ipmi(os_handler_t *os, cons
Hi Corey,
Thanks for your reply.
I have added following log function.
static void
log_ipmi(os_handler_t *os, const char *format, enum ipmi_log_type_e log_type,
va_list ap )
{
FILE *fp;
fp = fopen("/tmp/ipmi", "a+");
fprintf(fp, format, ap);
fclose(fp);
}
Sentbl_init()
{
...
Sorry, I didn't respond to an earlier message you sent.
That should be mostly fine. You need a log handlers, and the output of
that may tell you what is going wrong.
-corey
On 09/15/2013 01:29 AM, Rishi Kaundinya Mutnuru wrote:
> Hi Corey,
> I am invoking the OpenIPMI routines by linking the lib
Hi Corey,
I am invoking the OpenIPMI routines by linking the libOpenIPMI.a to my C++ code.
I have kept the calling code "extern "C"" logic. Do you know whether I need to
anything
Else to link the OpenIPMI libraries to my c++ code.
Somehow the function I register to "ipmi_open_domain" never got in