| 1 | /* |
| 2 | * QEMU PC System Firmware (OVMF stubs) |
| 3 | * |
| 4 | * Copyright (c) 2021 Red Hat, Inc. |
| 5 | * |
| 6 | * Author: |
| 7 | * Philippe Mathieu-Daudé |
| 8 | * |
| 9 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 10 | * |
| 11 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 12 | * See the COPYING file in the top-level directory. |
| 13 | */ |
| 14 | |
| 15 | #include "qemu/osdep.h" |
| 16 | #include "hw/i386/pc.h" |
| 17 | |
| 18 | bool pc_system_ovmf_table_find(const char *entry, uint8_t **data, int *data_len) |
| 19 | { |
| 20 | g_assert_not_reached(); |
| 21 | } |
| 22 | |
| 23 | void pc_system_parse_ovmf_flash(uint8_t *flash_ptr, size_t flash_size) |
| 24 | { |
| 25 | g_assert_not_reached(); |
| 26 | } |
| 27 | |
| 28 | void x86_firmware_configure(hwaddr gpa, void *ptr, int size) |
| 29 | { |
| 30 | g_assert_not_reached(); |
| 31 | } |