|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [xen-4.0-testing test] 2061: regressions - FAIL
xen.org writes ("[Xen-devel] [xen-4.0-testing test] 2061: regressions - FAIL"):
> flight 2061 xen-4.0-testing real
> http://www.chiark.greenend.org.uk/~xensrcts/logs/2061/
>
> Regressions :-(
>
> tests which did not succeed:
> build-i386-oldkern 1 xen-build fail REGR. vs. 2055
This "regression" is in fact a lost race, due to the bizarre reentry
into the kernel build system, while attempt to build the remus kernel
modules.
I seem to remember a previous discussion of this, with a suggestion
that this part of the build should be disabled in xen-unstable pending
a more sane arrangement. But I couldn't find the patch in
xen-unstable.
It seems to me that the patch below is probably about right. Any
contrary opinions ?
Ian.
Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
diff -r 1831912d4109 tools/remus/Makefile
--- a/tools/remus/Makefile Thu Sep 02 19:12:42 2010 +0100
+++ b/tools/remus/Makefile Fri Sep 03 18:12:28 2010 +0100
@@ -1,7 +1,8 @@ XEN_ROOT=../..
XEN_ROOT=../..
include $(XEN_ROOT)/tools/Rules.mk
-SUBDIRS-$(CONFIG_Linux) := imqebt kmod
+# Reentering the kernel build system is buggy and racy.
+# SUBDIRS-$(CONFIG_Linux) := imqebt kmod
SCRIPTS = remus
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|