Revision 16b29ae1 vl.c

b/vl.c
224 224
int smp_cpus = 1;
225 225
const char *vnc_display;
226 226
int acpi_enabled = 1;
227
int no_hpet = 0;
227 228
int fd_bootchk = 1;
228 229
int no_reboot = 0;
229 230
int no_shutdown = 0;
......
3956 3957
#endif
3957 3958
#ifdef TARGET_I386
3958 3959
           "-no-acpi        disable ACPI\n"
3960
           "-no-hpet        disable HPET\n"
3959 3961
#endif
3960 3962
#ifdef CONFIG_CURSES
3961 3963
           "-curses         use a curses/ncurses interface instead of SDL\n"
......
4067 4069
    QEMU_OPTION_smp,
4068 4070
    QEMU_OPTION_vnc,
4069 4071
    QEMU_OPTION_no_acpi,
4072
    QEMU_OPTION_no_hpet,
4070 4073
    QEMU_OPTION_curses,
4071 4074
    QEMU_OPTION_no_reboot,
4072 4075
    QEMU_OPTION_no_shutdown,
......
4180 4183
    /* temporary options */
4181 4184
    { "usb", 0, QEMU_OPTION_usb },
4182 4185
    { "no-acpi", 0, QEMU_OPTION_no_acpi },
4186
    { "no-hpet", 0, QEMU_OPTION_no_hpet },
4183 4187
    { "no-reboot", 0, QEMU_OPTION_no_reboot },
4184 4188
    { "no-shutdown", 0, QEMU_OPTION_no_shutdown },
4185 4189
    { "show-cursor", 0, QEMU_OPTION_show_cursor },
......
5017 5021
            case QEMU_OPTION_no_acpi:
5018 5022
                acpi_enabled = 0;
5019 5023
                break;
5024
            case QEMU_OPTION_no_hpet:
5025
                no_hpet = 1;
5026
                break;
5020 5027
            case QEMU_OPTION_no_reboot:
5021 5028
                no_reboot = 1;
5022 5029
                break;

Also available in: Unified diff