Ben Taylor wrote: > On Tue, May 27, 2008 at 12:56 PM, Jan Kiszka wrote: >> Hi, >> >> is there a technical reason why the kqemu kernel module is built out of >> a binary blob (monitor-image.bin->monitor-image.h)? Does this simply >> date back to the time when wrapper and core were distributed under >> different licenses? >> >> I'm currently trying to hunt down a (probable) bug in kqemu, and the >> monitor is now unfortunately a white spot for the source-level debugger. >> So far I only managed to make the rest visible. >> >> BTW, am I missing an official code repository of kqemu? Why is there no >> subfolder, e.g., in the qemu svn repos? So patches should be provided >> against 1.3.0pre11, right? > > I maintain a version of the repository at > > http://svn9.cvsdude.com/kdesolaris/kqemu/trunk/1.0.3pre11/kqemu > > that includes the Solaris changes and other patches posted to the > list that I've been able to test and integrate. So this is the de-facto official development version? Quite a few changes in that tree, also to core stuff. Hmm. But nothing that fixes my spurious CPL degeneration. What a pity. However, you could merge another (minor) patch: Index: Makefile =================================================================== --- Makefile (Revision 17) +++ Makefile (Arbeitskopie) @@ -47,7 +47,7 @@ endif # !CONFIG_WIN32 clean: $(MAKE) -C common clean - rm -f kqemu.ko *.o *~ + rm -rf kqemu.ko *.o *~ .kqemu* Module.* modules.order kqemu.mod.c .tmp_versions endif # !CONFIG_SOLARIS Actually, more needs to be cleaned up /wrt Linux module building. But I'm reluctant to touch common/Makefile until the (current) reason for this code organization is known. Jan