Commit d84fe7aef05a84349803ee49b07b002acee1f6e3
1 parent
292eef5a
Don't require a disk image for network boot, by Ferenc Wagner.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2437 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
0 deletions
vl.c
... | ... | @@ -7354,6 +7354,7 @@ int main(int argc, char **argv) |
7354 | 7354 | linux_boot = (kernel_filename != NULL); |
7355 | 7355 | |
7356 | 7356 | if (!linux_boot && |
7357 | + boot_device != 'n' && | |
7357 | 7358 | hd_filename[0] == '\0' && |
7358 | 7359 | (cdrom_index >= 0 && hd_filename[cdrom_index] == '\0') && |
7359 | 7360 | fd_filename[0] == '\0') | ... | ... |