mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
include: Rename sysemu/ -> system/
Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
This commit is contained in:
parent
63cda19446
commit
32cad1ffb8
965 changed files with 1708 additions and 1707 deletions
38
system/vl.c
38
system/vl.c
|
@ -39,12 +39,12 @@
|
|||
#include "qemu/help_option.h"
|
||||
#include "qemu/hw-version.h"
|
||||
#include "qemu/uuid.h"
|
||||
#include "sysemu/reset.h"
|
||||
#include "sysemu/runstate.h"
|
||||
#include "sysemu/runstate-action.h"
|
||||
#include "sysemu/seccomp.h"
|
||||
#include "sysemu/tcg.h"
|
||||
#include "sysemu/xen.h"
|
||||
#include "system/reset.h"
|
||||
#include "system/runstate.h"
|
||||
#include "system/runstate-action.h"
|
||||
#include "system/seccomp.h"
|
||||
#include "system/tcg.h"
|
||||
#include "system/xen.h"
|
||||
|
||||
#include "qemu/error-report.h"
|
||||
#include "qemu/sockets.h"
|
||||
|
@ -64,30 +64,30 @@
|
|||
#include "monitor/monitor.h"
|
||||
#include "ui/console.h"
|
||||
#include "ui/input.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "sysemu/numa.h"
|
||||
#include "sysemu/hostmem.h"
|
||||
#include "system/system.h"
|
||||
#include "system/numa.h"
|
||||
#include "system/hostmem.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#include "gdbstub/enums.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "chardev/char.h"
|
||||
#include "qemu/bitmap.h"
|
||||
#include "qemu/log.h"
|
||||
#include "sysemu/blockdev.h"
|
||||
#include "system/blockdev.h"
|
||||
#include "hw/block/block.h"
|
||||
#include "hw/i386/x86.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "migration/misc.h"
|
||||
#include "migration/snapshot.h"
|
||||
#include "sysemu/tpm.h"
|
||||
#include "sysemu/dma.h"
|
||||
#include "system/tpm.h"
|
||||
#include "system/dma.h"
|
||||
#include "hw/audio/soundhw.h"
|
||||
#include "audio/audio.h"
|
||||
#include "sysemu/cpus.h"
|
||||
#include "sysemu/cpu-timers.h"
|
||||
#include "system/cpus.h"
|
||||
#include "system/cpu-timers.h"
|
||||
#include "migration/colo.h"
|
||||
#include "migration/postcopy-ram.h"
|
||||
#include "sysemu/kvm.h"
|
||||
#include "system/kvm.h"
|
||||
#include "qapi/qobject-input-visitor.h"
|
||||
#include "qemu/option.h"
|
||||
#include "qemu/config-file.h"
|
||||
|
@ -95,7 +95,7 @@
|
|||
#ifdef CONFIG_VIRTFS
|
||||
#include "fsdev/qemu-fsdev.h"
|
||||
#endif
|
||||
#include "sysemu/qtest.h"
|
||||
#include "system/qtest.h"
|
||||
#ifdef CONFIG_TCG
|
||||
#include "tcg/perf.h"
|
||||
#endif
|
||||
|
@ -106,7 +106,7 @@
|
|||
#include "trace/control.h"
|
||||
#include "qemu/plugin.h"
|
||||
#include "qemu/queue.h"
|
||||
#include "sysemu/arch_init.h"
|
||||
#include "system/arch_init.h"
|
||||
#include "exec/confidential-guest-support.h"
|
||||
|
||||
#include "ui/qemu-spice.h"
|
||||
|
@ -116,7 +116,7 @@
|
|||
#include "qom/object_interfaces.h"
|
||||
#include "semihosting/semihost.h"
|
||||
#include "crypto/init.h"
|
||||
#include "sysemu/replay.h"
|
||||
#include "system/replay.h"
|
||||
#include "qapi/qapi-events-run-state.h"
|
||||
#include "qapi/qapi-types-audio.h"
|
||||
#include "qapi/qapi-visit-audio.h"
|
||||
|
@ -131,7 +131,7 @@
|
|||
#include "qapi/qapi-commands-ui.h"
|
||||
#include "block/qdict.h"
|
||||
#include "qapi/qmp/qerror.h"
|
||||
#include "sysemu/iothread.h"
|
||||
#include "system/iothread.h"
|
||||
#include "qemu/guest-random.h"
|
||||
#include "qemu/keyval.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue