提交 324a8021 编写于 作者: A Aurelien Jarno

Revert "Open chr device for all serial ports"

This reverts commit 55338f1d.
上级 5c637a20
......@@ -5688,17 +5688,15 @@ int main(int argc, char **argv, char **envp)
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
const char *devname = serial_devices[i];
char label[32];
snprintf(label, sizeof(label), "serial%d", i);
if (devname && strcmp(devname, "none")) {
char label[32];
snprintf(label, sizeof(label), "serial%d", i);
serial_hds[i] = qemu_chr_open(label, devname, NULL);
} else {
serial_hds[i] = qemu_chr_open(label, "null", NULL);
}
if (!serial_hds[i]) {
fprintf(stderr, "qemu: could not open serial device '%s'\n",
devname);
exit(1);
if (!serial_hds[i]) {
fprintf(stderr, "qemu: could not open serial device '%s'\n",
devname);
exit(1);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册