blob: eee9fa25f6e260b09c63901c7d39a833529fa64b [file] [log] [blame]
#include <stdlib.h>
#include "ql/ql_common.h"
#include "mbtk_log.h"
void Ql_Powerdown(int mode)
{
switch (mode)
{
case 1:
system("halt");
break;
case 2:
system("reboot");
break;
default:
printf("mode error");
}
return ;
}
void ql_lib_info_print()
{
MBTK_SOURCE_INFO_PRINT("ql_lib");
}