All of lore.kernel.org
 help / color / mirror / Atom feed
* xen-4.0.1-rc2 fails to 'make tools'
@ 2011-01-09  4:03 DEMIAN_8
  2011-01-11 11:36 ` Keir Fraser
  0 siblings, 1 reply; 3+ messages in thread
From: DEMIAN_8 @ 2011-01-09  4:03 UTC (permalink / raw)
  To: xen-devel


Hi, I just checked out current xen-testing.hg
but it failed to 'make tools' as below.
How can I?
Thanks

__________________

make[1]: Entering directory `/root/xen-4.0-testing.hg/tools'
set -ex; \
        if test -d git://xenbits.xensource.com/qemu-xen-4.0-testing.git;
then \
                rm -f ioemu-dir; \
                ln -sf git://xenbits.xensource.com/qemu-xen-4.0-testing.git
ioemu-dir; \
        else \
                if [ ! -d ioemu-remote ]; then \
                        rm -rf ioemu-remote ioemu-remote.tmp; \
                        mkdir ioemu-remote.tmp; rmdir ioemu-remote.tmp; \
                        git clone
git://xenbits.xensource.com/qemu-xen-4.0-testing.git ioemu-remote.tmp; \
                        if [ "6d5b7ee3acfe8cc10681d2583a38398f7470ec2a" ];
then\
                                cd ioemu-remote.tmp;                    \
                                git branch -D dummy >/dev/null 2>&1 ||:; \
                                git checkout -b dummy
6d5b7ee3acfe8cc10681d2583a38398f7470ec2a;        \
                                cd ..;                                  \
                        fi;                                             \
                        mv ioemu-remote.tmp ioemu-remote; \
                fi; \
                rm -f ioemu-dir; \
                ln -sf ioemu-remote ioemu-dir; \
        fi
+ test -d git://xenbits.xensource.com/qemu-xen-4.0-testing.git
+ '[' '!' -d ioemu-remote ']'
+ rm -rf ioemu-remote ioemu-remote.tmp
+ mkdir ioemu-remote.tmp
+ rmdir ioemu-remote.tmp
+ git clone git://xenbits.xensource.com/qemu-xen-4.0-testing.git
ioemu-remote.tmp
Cloning into ioemu-remote.tmp...
remote: Counting objects: 45586, done.
remote: Compressing objects: 100% (14868/14868), done.
remote: Total 45586 (delta 33175), reused 42563 (delta 30664)
Receiving objects: 100% (45586/45586), 18.21 MiB | 94 KiB/s, done.
Resolving deltas: 100% (33175/33175), done.
+ '[' 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a ']'
+ cd ioemu-remote.tmp
+ git branch -D dummy
+ :
+ git checkout -b dummy 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a
fatal: reference is not a tree: 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a
make[1]: *** [ioemu-dir-find] Error 128
make[1]: Leaving directory `/root/xen-4.0-testing.hg/tools'
make: *** [tools/ioemu-dir] Error 2

__________________

I have read post
http://lists.xensource.com/archives/html/xen-devel/2010-06/msg01472.html but
nothing happened.

I commented out as there described, but unfortunately does not work.

QEMU_REMOTE=git://xenbits.xensource.com/qemu-xen-4.0-testing.git
# QEMU_REMOTE=http://xenbits.xensource.com/git-http/qemu-xe...
-- 
View this message in context: http://xen.1045712.n5.nabble.com/xen-4-0-1-rc2-fails-to-make-tools-tp3333595p3333595.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xen-4.0.1-rc2 fails to 'make tools'
  2011-01-09  4:03 xen-4.0.1-rc2 fails to 'make tools' DEMIAN_8
@ 2011-01-11 11:36 ` Keir Fraser
  2011-01-11 14:28   ` Ian Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Keir Fraser @ 2011-01-11 11:36 UTC (permalink / raw)
  To: DEMIAN_8, xen-devel; +Cc: Ian Jackson

On 09/01/2011 04:03, "DEMIAN_8" <ildar_shirshov@mail.ru> wrote:

> 
> Hi, I just checked out current xen-testing.hg
> but it failed to 'make tools' as below.
> How can I?

Two problems I can see.

Firstly, you are not trying to check-out the xen-4.0.2-rc1 tag from the qemu
repository. Probably because your xen-4.0-testing.hg tree is not up to date
-- you need to pull it from
http://xenbits.xen.org/staging/xen-4.0-testing.hg rather than
http://xenbits.xen.org/xen-4.0-testing.hg.

Secondly, nonetheless, the old tag (6d5b7...) should be present in the qemu
repository. So something has gone wrong there. Ian Jackson (cc'ed) can
probably help. Perhaps the qemu repo has got broken in updating it for RC1.

 -- Keir

> Thanks
> 
> __________________
> 
> make[1]: Entering directory `/root/xen-4.0-testing.hg/tools'
> set -ex; \
>         if test -d git://xenbits.xensource.com/qemu-xen-4.0-testing.git;
> then \
>                 rm -f ioemu-dir; \
>                 ln -sf git://xenbits.xensource.com/qemu-xen-4.0-testing.git
> ioemu-dir; \
>         else \
>                 if [ ! -d ioemu-remote ]; then \
>                         rm -rf ioemu-remote ioemu-remote.tmp; \
>                         mkdir ioemu-remote.tmp; rmdir ioemu-remote.tmp; \
>                         git clone
> git://xenbits.xensource.com/qemu-xen-4.0-testing.git ioemu-remote.tmp; \
>                         if [ "6d5b7ee3acfe8cc10681d2583a38398f7470ec2a" ];
> then\
>                                 cd ioemu-remote.tmp;                    \
>                                 git branch -D dummy >/dev/null 2>&1 ||:; \
>                                 git checkout -b dummy
> 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a;        \
>                                 cd ..;                                  \
>                         fi;                                             \
>                         mv ioemu-remote.tmp ioemu-remote; \
>                 fi; \
>                 rm -f ioemu-dir; \
>                 ln -sf ioemu-remote ioemu-dir; \
>         fi
> + test -d git://xenbits.xensource.com/qemu-xen-4.0-testing.git
> + '[' '!' -d ioemu-remote ']'
> + rm -rf ioemu-remote ioemu-remote.tmp
> + mkdir ioemu-remote.tmp
> + rmdir ioemu-remote.tmp
> + git clone git://xenbits.xensource.com/qemu-xen-4.0-testing.git
> ioemu-remote.tmp
> Cloning into ioemu-remote.tmp...
> remote: Counting objects: 45586, done.
> remote: Compressing objects: 100% (14868/14868), done.
> remote: Total 45586 (delta 33175), reused 42563 (delta 30664)
> Receiving objects: 100% (45586/45586), 18.21 MiB | 94 KiB/s, done.
> Resolving deltas: 100% (33175/33175), done.
> + '[' 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a ']'
> + cd ioemu-remote.tmp
> + git branch -D dummy
> + :
> + git checkout -b dummy 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a
> fatal: reference is not a tree: 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a
> make[1]: *** [ioemu-dir-find] Error 128
> make[1]: Leaving directory `/root/xen-4.0-testing.hg/tools'
> make: *** [tools/ioemu-dir] Error 2
> 
> __________________
> 
> I have read post
> http://lists.xensource.com/archives/html/xen-devel/2010-06/msg01472.html but
> nothing happened.
> 
> I commented out as there described, but unfortunately does not work.
> 
> QEMU_REMOTE=git://xenbits.xensource.com/qemu-xen-4.0-testing.git
> # QEMU_REMOTE=http://xenbits.xensource.com/git-http/qemu-xe...

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xen-4.0.1-rc2 fails to 'make tools'
  2011-01-11 11:36 ` Keir Fraser
@ 2011-01-11 14:28   ` Ian Jackson
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Jackson @ 2011-01-11 14:28 UTC (permalink / raw)
  To: Keir Fraser; +Cc: DEMIAN_8, xen-devel

Keir Fraser writes ("Re: [Xen-devel] xen-4.0.1-rc2 fails to 'make tools'"):
> Secondly, nonetheless, the old tag (6d5b7...) should be present in the qemu
> repository. So something has gone wrong there. Ian Jackson (cc'ed) can
> probably help. Perhaps the qemu repo has got broken in updating it for RC1.

I don't understand what's going on here.  I have just run the commands
that the transcript shows:

> > + git clone git://xenbits.xensource.com/qemu-xen-4.0-testing.git
...
> > + git checkout -b dummy 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a

It worked just fine.

Ian.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-11 14:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-09  4:03 xen-4.0.1-rc2 fails to 'make tools' DEMIAN_8
2011-01-11 11:36 ` Keir Fraser
2011-01-11 14:28   ` Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.