xref: /qemu/hw/i386/pc_sysfw_ovmf-stubs.c (revision b21e2380)
1 /*
2  * QEMU PC System Firmware (OVMF stubs)
3  *
4  * Copyright (c) 2021 Red Hat, Inc.
5  *
6  * Author:
7  *   Philippe Mathieu-Daudé <philmd@redhat.com>
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