diff options
author | Sergio Lopez <slp@redhat.com> | 2019-10-08 11:56:49 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-10-22 09:38:42 +0200 |
commit | 549e984e67d8b3ea868be4ba935cecb9c1e753dc (patch) | |
tree | ca3d3bda8ff3619f79a1ee356de497ac07577dfa /hw/i386/Makefile.objs | |
parent | 86a9a7916b6b69e429f078dd9c89c2907ff43308 (diff) | |
download | qemu-549e984e67d8b3ea868be4ba935cecb9c1e753dc.zip qemu-549e984e67d8b3ea868be4ba935cecb9c1e753dc.tar.gz qemu-549e984e67d8b3ea868be4ba935cecb9c1e753dc.tar.bz2 |
hw/i386/pc: move shared x86 functions to x86.c and export them
Move x86 functions that will be shared between PC and non-PC machine
types to x86.c, along with their helpers.
Signed-off-by: Sergio Lopez <slp@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/Makefile.objs')
-rw-r--r-- | hw/i386/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index d3374e0..7ed80a4 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -1,5 +1,6 @@ obj-$(CONFIG_KVM) += kvm/ obj-y += e820_memory_layout.o multiboot.o +obj-y += x86.o obj-y += pc.o obj-$(CONFIG_I440FX) += pc_piix.o obj-$(CONFIG_Q35) += pc_q35.o |