diff options
| author | Michael Roth | 2012-01-20 05:19:27 +0100 |
|---|---|---|
| committer | Michael Roth | 2012-02-23 22:40:16 +0100 |
| commit | 42074a9d4d4cf0b7c2a3210de424f9b11268abb4 (patch) | |
| tree | 293663e51df0c4f8a72177cb8604cc9667315d25 /Makefile.objs | |
| parent | qemu-ga: move channel/transport functionality into wrapper class (diff) | |
| download | qemu-42074a9d4d4cf0b7c2a3210de424f9b11268abb4.tar.gz qemu-42074a9d4d4cf0b7c2a3210de424f9b11268abb4.tar.xz qemu-42074a9d4d4cf0b7c2a3210de424f9b11268abb4.zip | |
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.
Diffstat (limited to 'Makefile.objs')
| -rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index 004db82e93..49ab82bc7e 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -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 |
