mirror of https://github.com/xemu-project/xemu.git
Monitor: Rename the qemu-monitor.hx file
Let's be consistent and call it hmp-commands.hx, so that we have qmp-commands.hx for QMP and hmp-commands.hx for HMP. Please, note that this commit doesn't touch qemu-monitor.texi. All texi files have the qemu- prefix and I don't think it's worth changing that. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
fc29df759e
commit
acd0a09337
2
Makefile
2
Makefile
|
@ -249,7 +249,7 @@ TEXIFLAG=$(if $(V),,--quiet)
|
||||||
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
|
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
|
||||||
$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
|
$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
|
||||||
|
|
||||||
qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
|
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
|
||||||
$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
|
$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
|
||||||
|
|
||||||
QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
|
QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
|
||||||
|
|
|
@ -307,7 +307,7 @@ obj-alpha-y = alpha_palcode.o
|
||||||
|
|
||||||
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
|
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
|
||||||
|
|
||||||
monitor.o: qemu-monitor.h qmp-commands.h
|
monitor.o: hmp-commands.h qmp-commands.h
|
||||||
|
|
||||||
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
|
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
|
||||||
|
|
||||||
|
@ -328,7 +328,7 @@ $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
|
||||||
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/feature_to_c.sh
|
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/feature_to_c.sh
|
||||||
$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
|
$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
|
||||||
|
|
||||||
qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
|
hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
|
||||||
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
|
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
|
||||||
|
|
||||||
qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
|
qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
|
||||||
|
@ -337,7 +337,7 @@ qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
|
rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
|
||||||
rm -f *.d */*.d tcg/*.o ide/*.o
|
rm -f *.d */*.d tcg/*.o ide/*.o
|
||||||
rm -f qemu-monitor.h qmp-commands.h gdbstub-xml.c
|
rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
ifneq ($(PROGS),)
|
ifneq ($(PROGS),)
|
||||||
|
|
|
@ -2332,11 +2332,11 @@ int monitor_get_fd(Monitor *mon, const char *fdname)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const mon_cmd_t mon_cmds[] = {
|
static const mon_cmd_t mon_cmds[] = {
|
||||||
#include "qemu-monitor.h"
|
#include "hmp-commands.h"
|
||||||
{ NULL, NULL, },
|
{ NULL, NULL, },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Please update qemu-monitor.hx when adding or changing commands */
|
/* Please update hmp-commands.hx when adding or changing commands */
|
||||||
static const mon_cmd_t info_cmds[] = {
|
static const mon_cmd_t info_cmds[] = {
|
||||||
{
|
{
|
||||||
.name = "version",
|
.name = "version",
|
||||||
|
|
Loading…
Reference in New Issue