mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
Document --rtc-td-hack, --localtime and --startdate as deprecated
These options have been marked in a comment in qemu-options.hx as
deprecated in 2009 already (see commit 1ed2fc1fa3), but we
never informed the users about these deprecations. Let's catch up
on that omission now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1519138892-12836-1-git-send-email-thuth@redhat.com>
[Fix messages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
5a9c973b6c
commit
f29d445042
5
vl.c
5
vl.c
@@ -3406,6 +3406,8 @@ int main(int argc, char **argv, char **envp)
|
||||
break;
|
||||
case QEMU_OPTION_localtime:
|
||||
rtc_utc = 0;
|
||||
warn_report("This option is deprecated, "
|
||||
"use '-rtc base=localtime' instead.");
|
||||
break;
|
||||
case QEMU_OPTION_vga:
|
||||
vga_model = optarg;
|
||||
@@ -3665,6 +3667,8 @@ int main(int argc, char **argv, char **envp)
|
||||
};
|
||||
|
||||
qdev_prop_register_global(&slew_lost_ticks);
|
||||
warn_report("This option is deprecated, "
|
||||
"use '-rtc driftfix=slew' instead.");
|
||||
break;
|
||||
}
|
||||
case QEMU_OPTION_acpitable:
|
||||
@@ -3866,6 +3870,7 @@ int main(int argc, char **argv, char **envp)
|
||||
*/
|
||||
break;
|
||||
case QEMU_OPTION_startdate:
|
||||
warn_report("This option is deprecated, use '-rtc base=' instead.");
|
||||
configure_rtc_date_offset(optarg, 1);
|
||||
break;
|
||||
case QEMU_OPTION_rtc:
|
||||
|
||||
Reference in New Issue
Block a user