diff options
author | Michal Privoznik <mprivozn@redhat.com> | 2015-01-21 12:09:50 +0100 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2015-02-17 16:21:50 -0600 |
commit | ee17cbdc3c21f5cb6144a434191ffcd08b7de5fe (patch) | |
tree | 39f66ec29b5502b15fd39ad3c09d96f1eb66213c /qga/qapi-schema.json | |
parent | 0dd38a03f5e1498aabf7d053a9fab792a5eeec5c (diff) |
qemu-ga-win: Fail loudly on bare 'set-time'
The command is not implemented correctly yet. The documentation allows
to not pass any value to set, in which case the time is re-read from
RTC. However, reading CMOS on Windows is not trivial to implement. So
instead of pretending we've set the correct time, fail explicitly.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/qapi-schema.json')
-rw-r--r-- | qga/qapi-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json index 33e7d0676d..95f49e369c 100644 --- a/qga/qapi-schema.json +++ b/qga/qapi-schema.json @@ -121,7 +121,10 @@ # given value, then sets the Hardware Clock (RTC) to the # current System Time. This will make it easier for a guest # to resynchronize without waiting for NTP. If no @time is -# specified, then the time to set is read from RTC. +# specified, then the time to set is read from RTC. However, +# this may not be supported on all platforms (i.e. Windows). +# If that's the case users are advised to always pass a +# value. # # @time: #optional time of nanoseconds, relative to the Epoch # of 1970-01-01 in UTC. |