* [Qemu-devel] Makefile question @ 2008-09-25 20:42 Robert Riebisch 2008-09-25 20:47 ` Anthony Liguori 0 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-25 20:42 UTC (permalink / raw) To: qemu-devel Hi all! I'm trying to enhance my personal Win32 build of QEMU 0.9.1. Because I wish to make it a "single click build", I'd like to correctly add a new object file to be linked into $(TARGET_DIRS)/qemu.exe ("i386-softmmu" at least) to the makefiles. (This object file will not be made from a .c file.) Unfortunately I'm no makefile expert. Please, could someone give me some hints, what and where to add to the makefiles? OBJS? VL_OBJS? Create new EXTRA_OBJS? Thanks in advance! Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-25 20:42 [Qemu-devel] Makefile question Robert Riebisch @ 2008-09-25 20:47 ` Anthony Liguori 2008-09-25 20:53 ` Robert Riebisch 0 siblings, 1 reply; 21+ messages in thread From: Anthony Liguori @ 2008-09-25 20:47 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > Hi all! > > I'm trying to enhance my personal Win32 build of QEMU 0.9.1. Because I > wish to make it a "single click build", I'd like to correctly add a new > object file to be linked into $(TARGET_DIRS)/qemu.exe ("i386-softmmu" at > least) to the makefiles. (This object file will not be made from a .c > file.) > Where does the object file come from? You need to provide a bit more detail for anyone to be able to help you. Regards, Anthony Liguori > Unfortunately I'm no makefile expert. Please, could someone give me some > hints, what and where to add to the makefiles? OBJS? VL_OBJS? Create new > EXTRA_OBJS? > > Thanks in advance! > > Robert Riebisch > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-25 20:47 ` Anthony Liguori @ 2008-09-25 20:53 ` Robert Riebisch [not found] ` <4D85C158-8A93-42F6-B004-D7059D406C12@hotmail.com> 0 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-25 20:53 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > Where does the object file come from? Generated from .rc by `windres'. > You need to provide a bit more detail for anyone to be able to help you. I hoped, there were enough details in my first mail. ;-) Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
[parent not found: <4D85C158-8A93-42F6-B004-D7059D406C12@hotmail.com>]
* Re: [Qemu-devel] Makefile question [not found] ` <4D85C158-8A93-42F6-B004-D7059D406C12@hotmail.com> @ 2008-09-26 14:26 ` C.W. Betts 2008-09-26 14:50 ` Robert Riebisch ` (2 more replies) 0 siblings, 3 replies; 21+ messages in thread From: C.W. Betts @ 2008-09-26 14:26 UTC (permalink / raw) To: qemu-devel, Robert Riebisch [-- Attachment #1: Type: text/plain, Size: 333 bytes --] I have made On Sep 25, 2008, at 2:53 PM, Robert Riebisch wrote: > Anthony Liguori wrote: > >> Where does the object file come from? > > Generated from .rc by `windres'. I have made a patch that uses windres to identify the version number of the app. The patch is in the attachments. Perhaps you can get some pointers from it. [-- Attachment #2: windowsrc.diff --] [-- Type: application/octet-stream, Size: 1807 bytes --] Index: Makefile.target =================================================================== --- Makefile.target (revision 5321) +++ Makefile.target (working copy) @@ -661,6 +665,7 @@ ifdef CONFIG_WIN32 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole +OBJS+=version.o endif # profiling code @@ -676,6 +681,9 @@ %.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< + +%.o: %.rc + windres -I. -DORIGINAL_FILENAME=\"$(QEMU_PROG)\" -c -o $< $@ %.o: %.S $(CC) $(CPPFLAGS) -c -o $@ $< Index: configure =================================================================== --- configure (revision 5321) +++ configure (working copy) @@ -1319,6 +1319,10 @@ echo "# Automatically generated by configure - do not modify" > $config_mak echo "/* Automatically generated by configure - do not modify */" > $config_h +if test "$mingw32" = "yes" ; then +echo "#define QEMU_FILEVERSION $(tr . , < $source_path/VERSION),0" >> $config_h +echo "#define QEMU_PRODUCTVERSION $(tr . , < $source_path/VERSION),0" >> $config_h +fi echo "include ../config-host.mak" >> $config_mak echo "#include \"../config-host.h\"" >> $config_h Index: version.rc =================================================================== --- /dev/null 2008-09-25 21:38:10.000000000 -0600 +++ version.rc 2008-03-30 18:25:52.000000000 -0600 @@ -0,0 +1,22 @@ +#include "config.h" + +1 VERSIONINFO +FILEVERSION QEMU_FILEVERSION +PRODUCTVERSION QEMU_PRODUCTVERSION +FILETYPE 0x1 //VFT_APP + { +BLOCK "StringFileInfo" + { + BLOCK "040904E4" + { + VALUE "FileDescription", "Qemu System emulator, " TARGET_ARCH " version" + VALUE "FileVersion", QEMU_VERSION + VALUE "LegalCopyright", "GNU General Public License" + VALUE "ProductName", "Qemu" + } + } +BLOCK "VarFileInfo" + { + VALUE "Translation", 0x0409, 1252 + } +} [-- Attachment #3: Type: text/plain, Size: 1 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:26 ` C.W. Betts @ 2008-09-26 14:50 ` Robert Riebisch 2008-09-26 14:55 ` Anthony Liguori 2008-09-26 14:53 ` Robert Riebisch 2008-09-26 14:54 ` Anthony Liguori 2 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 14:50 UTC (permalink / raw) To: qemu-devel "C.W. Betts" wrote: > I have made a patch that uses windres to identify the version number > of the app. The patch is in the attachments. Perhaps you can get > some pointers from it. I already knew your patch, but as nobody committed it to the SVN repository there seems to be "something wrong" with it. Anthony? Johannes? Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:50 ` Robert Riebisch @ 2008-09-26 14:55 ` Anthony Liguori 2008-09-26 15:06 ` Robert Riebisch 0 siblings, 1 reply; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 14:55 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > "C.W. Betts" wrote: > > >> I have made a patch that uses windres to identify the version number >> of the app. The patch is in the attachments. Perhaps you can get >> some pointers from it. >> > > I already knew your patch, but as nobody committed it to the SVN > repository there seems to be "something wrong" with it. > I hadn't seen the patch previously. Other than the comments I just posted, it looks fine. Regards, Anthony Liguori > Anthony? Johannes? > > Robert Riebisch > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:55 ` Anthony Liguori @ 2008-09-26 15:06 ` Robert Riebisch 0 siblings, 0 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 15:06 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > I hadn't seen the patch previously. It has been posted here by C.W. in February. Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:26 ` C.W. Betts 2008-09-26 14:50 ` Robert Riebisch @ 2008-09-26 14:53 ` Robert Riebisch 2008-09-26 14:54 ` Anthony Liguori 2 siblings, 0 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 14:53 UTC (permalink / raw) To: qemu-devel "C.W. Betts" wrote: > I have made a patch that uses windres to identify the version number > of the app. The patch is in the attachments. Perhaps you can get > some pointers from it. I already knew your patch, but as nobody committed it to the SVN repository there seems to be "something wrong" with it. Anthony? Johannes? Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:26 ` C.W. Betts 2008-09-26 14:50 ` Robert Riebisch 2008-09-26 14:53 ` Robert Riebisch @ 2008-09-26 14:54 ` Anthony Liguori 2008-09-26 15:30 ` Robert Riebisch ` (2 more replies) 2 siblings, 3 replies; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 14:54 UTC (permalink / raw) To: qemu-devel; +Cc: Robert Riebisch, computers57 C.W. Betts wrote: > I have made > On Sep 25, 2008, at 2:53 PM, Robert Riebisch wrote: > >> Anthony Liguori wrote: >> >>> Where does the object file come from? >> >> Generated from .rc by `windres'. > I have made a patch that uses windres to identify the version number > of the app. The patch is in the attachments. Perhaps you can get > some pointers from it. > > Index: Makefile.target > =================================================================== > --- Makefile.target (revision 5321) > +++ Makefile.target (working copy) > @@ -661,6 +665,7 @@ > > ifdef CONFIG_WIN32 > SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole > +OBJS+=version.o > endif > > # profiling code > @@ -676,6 +681,9 @@ > > %.o: %.c > $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< > + > +%.o: %.rc > + windres -I. -DORIGINAL_FILENAME=\"$(QEMU_PROG)\" -c -o $< $@ This needs to be ${cross_prefix}windres > %.o: %.S > $(CC) $(CPPFLAGS) -c -o $@ $< > Index: configure > =================================================================== > --- configure (revision 5321) > +++ configure (working copy) > @@ -1319,6 +1319,10 @@ > echo "# Automatically generated by configure - do not modify" > > $config_mak > echo "/* Automatically generated by configure - do not modify */" > > $config_h > > +if test "$mingw32" = "yes" ; then > +echo "#define QEMU_FILEVERSION $(tr . , < $source_path/VERSION),0" >> > $config_h > +echo "#define QEMU_PRODUCTVERSION $(tr . , < $source_path/VERSION),0" > >> $config_h > +fi > You could just use QEMU_VERSION in the .rc file I think it's a good idea to include a default .rc file for the QEMU Windows build. If you update the patch, I'd be happy to apply it. Regards, Anthony Liguori ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:54 ` Anthony Liguori @ 2008-09-26 15:30 ` Robert Riebisch 2008-09-26 15:38 ` Anthony Liguori 2008-09-26 16:23 ` [Qemu-devel] " Consul 2008-09-26 16:28 ` [Qemu-devel] " Robert Riebisch 2 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 15:30 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > > + > > +%.o: %.rc > > + windres -I. -DORIGINAL_FILENAME=\"$(QEMU_PROG)\" -c -o $< $@ > > This needs to be ${cross_prefix}windres MinGW's windres doesn't have a "-c" option. > > +if test "$mingw32" = "yes" ; then > > +echo "#define QEMU_FILEVERSION $(tr . , < $source_path/VERSION),0" >> > > $config_h > > +echo "#define QEMU_PRODUCTVERSION $(tr . , < $source_path/VERSION),0" > > >> $config_h > > +fi > > > > You could just use QEMU_VERSION in the .rc file Instead of QEMU_FILEVERSION and QEMU_PRODUCTVERSION? No, because FILEVERSION numbers must be in format "a, b, c, d". > I think it's a good idea to include a default .rc file for the QEMU > Windows build. If you update the patch, I'd be happy to apply it. I'll apply it adjusted to my QEMU 0.9.1 sources and see if it's fine. Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 15:30 ` Robert Riebisch @ 2008-09-26 15:38 ` Anthony Liguori 2008-09-26 16:00 ` Robert Riebisch 0 siblings, 1 reply; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 15:38 UTC (permalink / raw) To: qemu-devel >>> +if test "$mingw32" = "yes" ; then >>> +echo "#define QEMU_FILEVERSION $(tr . , < $source_path/VERSION),0" >> >>> $config_h >>> +echo "#define QEMU_PRODUCTVERSION $(tr . , < $source_path/VERSION),0" >>> >>>>> $config_h >>>>> >>> +fi >>> >>> >> You could just use QEMU_VERSION in the .rc file >> > > Instead of QEMU_FILEVERSION and QEMU_PRODUCTVERSION? > No, because FILEVERSION numbers must be in format "a, b, c, d". > Okay, I didn't know that. Regards, Anthony Liguori ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 15:38 ` Anthony Liguori @ 2008-09-26 16:00 ` Robert Riebisch 2008-09-26 16:16 ` Anthony Liguori 2008-09-26 16:26 ` Robert Riebisch 0 siblings, 2 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 16:00 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > > Instead of QEMU_FILEVERSION and QEMU_PRODUCTVERSION? > > No, because FILEVERSION numbers must be in format "a, b, c, d". > > > > Okay, I didn't know that. No problem. :-) Btw: What's the difference betweeen VL_OBJS and OBJS in Makefile.target? I added "OBJS+=version.o" to the 0.9.1 Makefile.target, but it isn't linked in to the final EXE. If I delete version.o and version.rc, it doesn't even complain about not finding these files. Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 16:00 ` Robert Riebisch @ 2008-09-26 16:16 ` Anthony Liguori 2008-09-26 16:32 ` Robert Riebisch 2008-09-26 16:26 ` Robert Riebisch 1 sibling, 1 reply; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 16:16 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > Anthony Liguori wrote: > > >>> Instead of QEMU_FILEVERSION and QEMU_PRODUCTVERSION? >>> No, because FILEVERSION numbers must be in format "a, b, c, d". >>> >>> >> Okay, I didn't know that. >> > > No problem. :-) > > Btw: What's the difference betweeen VL_OBJS and OBJS in Makefile.target? > I added "OBJS+=version.o" to the 0.9.1 Makefile.target, but it isn't > linked in to the final EXE. If I delete version.o and version.rc, it > doesn't even complain about not finding these files. > VL_OBJS no longer exists in SVN so I can't really answer that. Regards, Anthony Liguori > Robert Riebisch > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 16:16 ` Anthony Liguori @ 2008-09-26 16:32 ` Robert Riebisch 2008-09-26 16:52 ` Anthony Liguori 0 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 16:32 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > VL_OBJS no longer exists in SVN so I can't really answer that. Oh, sorry. I thought, you're a long-term QEMU developer. :-) Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 16:32 ` Robert Riebisch @ 2008-09-26 16:52 ` Anthony Liguori 2008-09-26 19:16 ` Robert Riebisch 0 siblings, 1 reply; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 16:52 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > Anthony Liguori wrote: > > >> VL_OBJS no longer exists in SVN so I can't really answer that. >> > > Oh, sorry. I thought, you're a long-term QEMU developer. :-) > I have a short term memory. I would have to look at the 0.9.1 source code to figure out the difference which presumably you could also do :-) Regards, Anthony Liguori > Robert Riebisch > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 16:52 ` Anthony Liguori @ 2008-09-26 19:16 ` Robert Riebisch 0 siblings, 0 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 19:16 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > >> VL_OBJS no longer exists in SVN so I can't really answer that. > >> > > > > Oh, sorry. I thought, you're a long-term QEMU developer. :-) > > > > I have a short term memory. I would have to look at the 0.9.1 source > code to figure out the difference which presumably you could also do :-) I did, of course, but still have no idea what "VL" stands for. Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 16:00 ` Robert Riebisch 2008-09-26 16:16 ` Anthony Liguori @ 2008-09-26 16:26 ` Robert Riebisch 1 sibling, 0 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 16:26 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > Btw: What's the difference betweeen VL_OBJS and OBJS in Makefile.target? > I added "OBJS+=version.o" to the 0.9.1 Makefile.target, but it isn't > linked in to the final EXE. If I delete version.o and version.rc, it > doesn't even complain about not finding these files. Catched. In 0.9.1 $(QEMU_SYSTEM) depends on $(VL_OBJS), not $(OBJS). $(QEMU_SYSTEM): $(VL_OBJS) ../libqemu_common.a libqemu.a $(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS) Adding version.o to VL_OBJS gives "No rule to make target `version.c', needed by `version.o'.". Probably because of: vldepend: $(VL_OBJS:.o=.c) $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend So I'll introduce RES_OBJS in my private build only, because QEMU SVN is very different. Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* [Qemu-devel] Re: Makefile question 2008-09-26 14:54 ` Anthony Liguori 2008-09-26 15:30 ` Robert Riebisch @ 2008-09-26 16:23 ` Consul 2008-09-26 16:45 ` Robert Riebisch 2008-09-26 16:28 ` [Qemu-devel] " Robert Riebisch 2 siblings, 1 reply; 21+ messages in thread From: Consul @ 2008-09-26 16:23 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > I think it's a good idea to include a default .rc file for the QEMU > Windows build. If you update the patch, I'd be happy to apply it. > How about adding an icon to the rc? I have a possible one at http://aleksoft.net/qemu.ico Alex. ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Re: Makefile question 2008-09-26 16:23 ` [Qemu-devel] " Consul @ 2008-09-26 16:45 ` Robert Riebisch 2008-09-26 18:38 ` Anthony Liguori 0 siblings, 1 reply; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 16:45 UTC (permalink / raw) To: qemu-devel Consul wrote: > How about adding an icon to the rc? I'm working on that for my private build of QEMU 0.9.1. Don't know, if it helps for SVN, but I would share my experiences, if it's done. > I have a possible one at > http://aleksoft.net/qemu.ico No comment. :-] Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Re: Makefile question 2008-09-26 16:45 ` Robert Riebisch @ 2008-09-26 18:38 ` Anthony Liguori 0 siblings, 0 replies; 21+ messages in thread From: Anthony Liguori @ 2008-09-26 18:38 UTC (permalink / raw) To: qemu-devel Robert Riebisch wrote: > Consul wrote: > > >> How about adding an icon to the rc? >> > > I'm working on that for my private build of QEMU 0.9.1. Don't know, if > it helps for SVN, but I would share my experiences, if it's done. > If we had an icon, sure. But we don't and I'm not artistically inclined. Picking out an icon that everyone likes is just going to be a hassle. Since we don't have much of a GUI today, I just don't see it being worth it. Maybe down the road if someone submits a nice GUI for QEMU :-) Regards, Anthony Liguori >> I have a possible one at >> http://aleksoft.net/qemu.ico >> > > No comment. :-] > > Robert Riebisch > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [Qemu-devel] Makefile question 2008-09-26 14:54 ` Anthony Liguori 2008-09-26 15:30 ` Robert Riebisch 2008-09-26 16:23 ` [Qemu-devel] " Consul @ 2008-09-26 16:28 ` Robert Riebisch 2 siblings, 0 replies; 21+ messages in thread From: Robert Riebisch @ 2008-09-26 16:28 UTC (permalink / raw) To: qemu-devel Anthony Liguori wrote: > > %.o: %.c > > $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< > > + > > +%.o: %.rc > > + windres -I. -DORIGINAL_FILENAME=\"$(QEMU_PROG)\" -c -o $< $@ I think, this should read "-o $@ $<" for windres too?! Robert Riebisch -- BTTR Software http://www.bttr-software.de/ ^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2008-09-26 19:16 UTC | newest] Thread overview: 21+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-09-25 20:42 [Qemu-devel] Makefile question Robert Riebisch 2008-09-25 20:47 ` Anthony Liguori 2008-09-25 20:53 ` Robert Riebisch [not found] ` <4D85C158-8A93-42F6-B004-D7059D406C12@hotmail.com> 2008-09-26 14:26 ` C.W. Betts 2008-09-26 14:50 ` Robert Riebisch 2008-09-26 14:55 ` Anthony Liguori 2008-09-26 15:06 ` Robert Riebisch 2008-09-26 14:53 ` Robert Riebisch 2008-09-26 14:54 ` Anthony Liguori 2008-09-26 15:30 ` Robert Riebisch 2008-09-26 15:38 ` Anthony Liguori 2008-09-26 16:00 ` Robert Riebisch 2008-09-26 16:16 ` Anthony Liguori 2008-09-26 16:32 ` Robert Riebisch 2008-09-26 16:52 ` Anthony Liguori 2008-09-26 19:16 ` Robert Riebisch 2008-09-26 16:26 ` Robert Riebisch 2008-09-26 16:23 ` [Qemu-devel] " Consul 2008-09-26 16:45 ` Robert Riebisch 2008-09-26 18:38 ` Anthony Liguori 2008-09-26 16:28 ` [Qemu-devel] " Robert Riebisch
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).