mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
monitor: Drop banner hiding (Jan Kiszka)
There is no use for the hide/show banner option, and it is applied inconsistently anyway (or what makes the difference between -serial mon:stdio and -nographic for the monitor?). So drop this mode. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6713 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
8712716151
commit
bb806047e2
4 changed files with 6 additions and 10 deletions
10
monitor.c
10
monitor.c
|
@ -73,7 +73,6 @@ struct Monitor {
|
||||||
};
|
};
|
||||||
|
|
||||||
static LIST_HEAD(mon_list, Monitor) mon_list;
|
static LIST_HEAD(mon_list, Monitor) mon_list;
|
||||||
static int hide_banner;
|
|
||||||
|
|
||||||
static const mon_cmd_t mon_cmds[];
|
static const mon_cmd_t mon_cmds[];
|
||||||
static const mon_cmd_t info_cmds[];
|
static const mon_cmd_t info_cmds[];
|
||||||
|
@ -2917,15 +2916,14 @@ static void term_event(void *opaque, int event)
|
||||||
if (event != CHR_EVENT_RESET)
|
if (event != CHR_EVENT_RESET)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!hide_banner)
|
monitor_printf(mon, "QEMU %s monitor - type 'help' for more information\n",
|
||||||
monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
|
QEMU_VERSION);
|
||||||
"information\n", QEMU_VERSION);
|
|
||||||
monitor_start_input();
|
monitor_start_input();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int is_first_init = 1;
|
static int is_first_init = 1;
|
||||||
|
|
||||||
void monitor_init(CharDriverState *chr, int show_banner)
|
void monitor_init(CharDriverState *chr)
|
||||||
{
|
{
|
||||||
Monitor *mon;
|
Monitor *mon;
|
||||||
|
|
||||||
|
@ -2936,8 +2934,6 @@ void monitor_init(CharDriverState *chr, int show_banner)
|
||||||
|
|
||||||
mon = qemu_mallocz(sizeof(*mon));
|
mon = qemu_mallocz(sizeof(*mon));
|
||||||
|
|
||||||
hide_banner = !show_banner;
|
|
||||||
|
|
||||||
mon->chr = chr;
|
mon->chr = chr;
|
||||||
|
|
||||||
qemu_chr_add_handlers(chr, term_can_read, term_read, term_event, mon);
|
qemu_chr_add_handlers(chr, term_can_read, term_read, term_event, mon);
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
extern Monitor *cur_mon;
|
extern Monitor *cur_mon;
|
||||||
|
|
||||||
void monitor_init(CharDriverState *chr, int show_banner);
|
void monitor_init(CharDriverState *chr);
|
||||||
|
|
||||||
void monitor_suspend(Monitor *mon);
|
void monitor_suspend(Monitor *mon);
|
||||||
void monitor_resume(Monitor *mon);
|
void monitor_resume(Monitor *mon);
|
||||||
|
|
|
@ -2123,7 +2123,7 @@ CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*i
|
||||||
chr = qemu_chr_open(label, p, NULL);
|
chr = qemu_chr_open(label, p, NULL);
|
||||||
if (chr) {
|
if (chr) {
|
||||||
chr = qemu_chr_open_mux(chr);
|
chr = qemu_chr_open_mux(chr);
|
||||||
monitor_init(chr, !nographic);
|
monitor_init(chr);
|
||||||
} else {
|
} else {
|
||||||
printf("Unable to open driver: %s\n", p);
|
printf("Unable to open driver: %s\n", p);
|
||||||
}
|
}
|
||||||
|
|
2
vl.c
2
vl.c
|
@ -5684,7 +5684,7 @@ int main(int argc, char **argv, char **envp)
|
||||||
qemu_chr_initial_reset();
|
qemu_chr_initial_reset();
|
||||||
|
|
||||||
if (monitor_device && monitor_hd)
|
if (monitor_device && monitor_hd)
|
||||||
monitor_init(monitor_hd, !nographic);
|
monitor_init(monitor_hd);
|
||||||
|
|
||||||
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
|
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
|
||||||
const char *devname = serial_devices[i];
|
const char *devname = serial_devices[i];
|
||||||
|
|
Loading…
Reference in a new issue