diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-16 19:46:01 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-16 19:46:01 +0000 |
commit | 8f2b1fb008a3bd8964f381c91adf7a7abeccd577 (patch) | |
tree | 3c8065168e947ce2cdbd92d274d6fd65159361c6 /vl.c | |
parent | 891b38e446f3546b6642fb53b37d07f4c1242f9d (diff) | |
download | qemu-8f2b1fb008a3bd8964f381c91adf7a7abeccd577.zip |
more hack for CMOS interruption (enable linux /dev/rtc not to hang) - auto boot on cdrom if only device present
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@463 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2830,7 +2830,7 @@ int main_loop(void *opaque) pic_set_irq(0, 0); timer_irq_pending = 0; /* XXX: RTC test */ - if (cmos_data[RTC_REG_B] & 0x40) { + if (cmos_data[RTC_REG_B] & 0x50) { pic_set_irq(8, 1); } } @@ -3058,6 +3058,10 @@ int main(int argc, char **argv) if (!linux_boot && hd_filename[0] == '\0' && hd_filename[2] == '\0') help(); + + /* boot to cd by default if no hard disk */ + if (hd_filename[0] == '\0' && boot_device == 'c') + boot_device = 'd'; /* init debug */ setvbuf(stdout, NULL, _IOLBF, 0); |