mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
stubs: move smbios stubs to hw/smbios
No need to include them in libqemustub.a, since only system emulators need them. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
869e9aecbe
commit
cc7a73604a
3 changed files with 8 additions and 4 deletions
|
@ -1,5 +1,10 @@
|
|||
common-obj-$(CONFIG_SMBIOS) += smbios.o
|
||||
common-obj-$(call land,$(CONFIG_SMBIOS),$(CONFIG_IPMI)) += smbios_type_38.o
|
||||
ifeq ($(CONFIG_SMBIOS),y)
|
||||
common-obj-y += smbios.o
|
||||
common-obj-$(CONFIG_IPMI) += smbios_type_38.o
|
||||
common-obj-$(call lnot,$(CONFIG_IPMI)) += smbios_type_38-stub.o
|
||||
else
|
||||
common-obj-y += smbios-stub.o
|
||||
endif
|
||||
|
||||
common-obj-$(call lnot,$(CONFIG_SMBIOS)) += smbios-stub.o
|
||||
common-obj-$(CONFIG_ALL) += smbios-stub.o
|
||||
common-obj-$(CONFIG_ALL) += smbios_type_38-stub.o
|
||||
|
|
14
hw/smbios/smbios_type_38-stub.c
Normal file
14
hw/smbios/smbios_type_38-stub.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* IPMI SMBIOS firmware handling
|
||||
*
|
||||
* Copyright (c) 2015,2016 Corey Minyard, MontaVista Software, LLC
|
||||
*
|
||||
* 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 "hw/smbios/ipmi.h"
|
||||
|
||||
void smbios_build_type_38_table(void)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue