mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
qemu-ga: separate out common commands from posix-specific ones
Many of the current RPC implementations are very much POSIX-specific and require complete re-writes for Windows. There are however a small set of core guest agent commands that are common to both, and other commands such as guest-file-* which *may* be portable. So we introduce commands.c for the latter, and will rename guest-agent-commands.c to commands-posix.c in a future commit. Windows implementations will go in commands-win32.c, eventually.
This commit is contained in:
parent
125b310e1d
commit
42074a9d4d
4 changed files with 76 additions and 59 deletions
|
@ -424,7 +424,7 @@ common-obj-y += qmp.o hmp.o
|
|||
######################################################################
|
||||
# guest agent
|
||||
|
||||
qga-nested-y = guest-agent-commands.o guest-agent-command-state.o
|
||||
qga-nested-y = commands.o guest-agent-commands.o guest-agent-command-state.o
|
||||
qga-nested-y += channel-posix.o
|
||||
qga-obj-y = $(addprefix qga/, $(qga-nested-y))
|
||||
qga-obj-y += qemu-ga.o qemu-sockets.o module.o qemu-option.o
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue