sim-card
/
qemu
Archived
10
0
Fork 0

Fix driftfix option

Based on patch by Zachary Amsden.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2010-03-27 21:33:46 +00:00
parent 73d96e2964
commit 7e4c0336e2
1 changed files with 3 additions and 3 deletions

6
vl.c
View File

@ -516,12 +516,12 @@ static void configure_rtc(QemuOpts *opts)
exit(1);
}
}
#ifdef CONFIG_TARGET_I386
#ifdef TARGET_I386
value = qemu_opt_get(opts, "driftfix");
if (value) {
if (!strcmp(buf, "slew")) {
if (!strcmp(value, "slew")) {
rtc_td_hack = 1;
} else if (!strcmp(buf, "none")) {
} else if (!strcmp(value, "none")) {
rtc_td_hack = 0;
} else {
fprintf(stderr, "qemu: invalid option value '%s'\n", value);