mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 22:17:03 +00:00
cleanup release folder, only include some necessary header files,doesn't include hypervisor.h Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> modified: release/console.c modified: release/dump.c modified: release/hypercall.c modified: release/logmsg.c modified: release/npk_log.c modified: release/profiling.c modified: release/trace.c modified: release/vuart.c
34 lines
706 B
C
34 lines
706 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
#include <pci.h>
|
|
|
|
size_t console_write(__unused const char *str, __unused size_t len)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
char console_getc(void)
|
|
{
|
|
return '\0';
|
|
}
|
|
|
|
void console_putc(__unused const char *ch) {}
|
|
|
|
void console_init(void) {}
|
|
void console_setup_timer(void) {}
|
|
|
|
void suspend_console(void) {}
|
|
void resume_console(void) {}
|
|
|
|
bool handle_dbg_cmd(__unused const char *cmd, __unused int32_t len) { return false; }
|
|
bool is_pci_dbg_uart(__unused union pci_bdf bdf_value) { return false; }
|
|
bool is_dbg_uart_enabled(void) { return false; }
|
|
|
|
void shell_init(void) {}
|
|
void shell_kick(void) {}
|