summaryrefslogtreecommitdiff
path: root/hw/i386/pc_sysfw_ovmf-stubs.c
blob: aabe78b27100046245838f21ef414cb13c4dee9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * QEMU PC System Firmware (OVMF stubs)
 *
 * Copyright (c) 2021 Red Hat, Inc.
 *
 * Author:
 *   Philippe Mathieu-Daudé <philmd@redhat.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "hw/i386/pc.h"

bool pc_system_ovmf_table_find(const char *entry, uint8_t **data, int *data_len)
{
    g_assert_not_reached();
}

void pc_system_parse_ovmf_flash(uint8_t *flash_ptr, size_t flash_size)
{
    g_assert_not_reached();
}