mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-10-02 06:47:06 +00:00
The interface struct & API changes like below: struct uefi_context->struct depri_boot_context init_firmware_operations()->init_vboot_operations() init_firmware()->init_vboot() firmware_init_irq()->init_vboot_irq() firmware_get_rsdp()->get_rsdp_ptr() firmware_get_ap_trampoline()->get_ap_trampoline_buf() firmware_init_vm_boot_info()->init_vm_boot_info() Tracked-On: #1842 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
17 lines
334 B
C
17 lines
334 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DIRECT_BOOT_H
|
|
|
|
#define DIRECT_BOOT_H
|
|
|
|
#include <vboot.h>
|
|
|
|
struct vboot_operations* get_direct_boot_ops(void);
|
|
int32_t init_direct_vboot_info(struct acrn_vm *vm);
|
|
|
|
#endif /* end of include guard: DIRECT_BOOT_H */
|