[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/17] Rename qemu-options.h to qemu-options.def
From: |
Jes . Sorensen |
Subject: |
[Qemu-devel] [PATCH 10/17] Rename qemu-options.h to qemu-options.def |
Date: |
Fri, 4 Jun 2010 15:24:35 +0200 |
From: Jes Sorensen <address@hidden>
Rename qemu-options.h to qemu-options.def as it is not a header file
for general use and this leaves space for a proper qemu-options.h
Signed-off-by: Jes Sorensen <address@hidden>
---
Makefile.objs | 4 ++--
vl.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile.objs b/Makefile.objs
index 2d94677..124afe7 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -258,8 +258,8 @@ vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
-vl.o: qemu-options.h
+vl.o: qemu-options.def
-qemu-options.h: $(SRC_PATH)/qemu-options.hx
+qemu-options.def: $(SRC_PATH)/qemu-options.hx
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN
$(TARGET_DIR)$@")
diff --git a/vl.c b/vl.c
index 7f22733..8cd0f8f 100644
--- a/vl.c
+++ b/vl.c
@@ -1875,7 +1875,7 @@ static void help(int exitcode)
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
opt_help
#define DEFHEADING(text) stringify(text) "\n"
-#include "qemu-options.h"
+#include "qemu-options.def"
#undef DEF
#undef DEFHEADING
#undef GEN_DOCS
@@ -1903,7 +1903,7 @@ enum {
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
opt_enum,
#define DEFHEADING(text)
-#include "qemu-options.h"
+#include "qemu-options.def"
#undef DEF
#undef DEFHEADING
#undef GEN_DOCS
@@ -1921,7 +1921,7 @@ static const QEMUOption qemu_options[] = {
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
{ option, opt_arg, opt_enum, arch_mask },
#define DEFHEADING(text)
-#include "qemu-options.h"
+#include "qemu-options.def"
#undef DEF
#undef DEFHEADING
#undef GEN_DOCS
--
1.6.5.2
- [Qemu-devel] [PATCH 00/17] *** SUBJECT HERE ***, (continued)
- [Qemu-devel] [PATCH 00/17] *** SUBJECT HERE ***, Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 01/17] vl.c: Remove double include of netinet/in.h for Solaris, Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 08/17] Move main signal handler setup to os specificfiles., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 14/17] Move daemonize handling to OS specific files, Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 05/17] Introduce os-posix.c and create os_setup_signal_handling(), Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 11/17] Introduce OS specific cmdline argument handling and move SMB arg to os-posix.c, Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 07/17] Rename os_setup_signal_handling() to os_setup_early_signal_handling(), Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 16/17] Move line-buffering setup to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 10/17] Rename qemu-options.h to qemu-options.def,
Jes . Sorensen <=
- [Qemu-devel] [PATCH 15/17] Make os_change_process_uid and os_change_root os-posix.c local, Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 17/17] Move set_proc_name() to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 12/17] Move runas handling from vl.c to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 06/17] Move win32 early signal handling setup to os_setup_signal_handling(), Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 09/17] Move find_datadir to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 04/17] vl.c: Move host_main_loop_wait() to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 13/17] Move chroot handling to OS specific files., Jes . Sorensen, 2010/06/04
- [Qemu-devel] [PATCH 03/17] Introduce os-win32.c and move polling functions from vl.c, Jes . Sorensen, 2010/06/04