* make uninstall can delete xen-kernels
@ 2012-08-22 21:47 p.d
2012-08-23 6:39 ` [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels) Ian Campbell
0 siblings, 1 reply; 10+ messages in thread
From: p.d @ 2012-08-22 21:47 UTC (permalink / raw)
To: xen-devel
Nice time.
# make uninstall
...
rm -rf //boot/*xen*
...
if somebody use "xen" in kernel name (maybe as suffix), so it will be deleted from /boot/ too.
Thanks.
Denis.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-22 21:47 make uninstall can delete xen-kernels p.d
@ 2012-08-23 6:39 ` Ian Campbell
2012-08-23 7:04 ` Jan Beulich
0 siblings, 1 reply; 10+ messages in thread
From: Ian Campbell @ 2012-08-23 6:39 UTC (permalink / raw)
To: p.d@gmx.de; +Cc: xen-devel@lists.xen.org
On Wed, 2012-08-22 at 22:47 +0100, p.d@gmx.de wrote:
> Nice time.
>
> # make uninstall
> ...
> rm -rf //boot/*xen*
> ...
>
> if somebody use "xen" in kernel name (maybe as suffix), so it will be deleted from /boot/ too.
Ouch!
8<-------------------------
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1345703890 -3600
# Node ID b75970f4114ec72f744f5e7f979ab50401c4629f
# Parent 89c8c855f1df234f9649e98a51724f018f4f92df
do not remove kernels or modules on uninstall.
The pattern used is very broad and will delete any kernel with xen in
its filename, likewise modules, including those which come packages
from the distribution etc.
I don't think this was ever the right thing to do but it is doubly
wrong now that Xen does not even build or install a kernel by default.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
diff -r 89c8c855f1df -r b75970f4114e Makefile
--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
@@ -228,8 +228,6 @@ uninstall:
rm -f $(D)$(SYSCONFIG_DIR)/xendomains
rm -f $(D)$(SYSCONFIG_DIR)/xencommons
rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
- rm -rf $(D)/boot/*xen*
- rm -rf $(D)/lib/modules/*xen*
rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
rm -rf $(D)$(BINDIR)/xc_shadow
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 6:39 ` [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels) Ian Campbell
@ 2012-08-23 7:04 ` Jan Beulich
2012-08-23 7:31 ` Ian Campbell
0 siblings, 1 reply; 10+ messages in thread
From: Jan Beulich @ 2012-08-23 7:04 UTC (permalink / raw)
To: Ian.Campbell, p.d; +Cc: xen-devel
>>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
>--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
>+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
>@@ -228,8 +228,6 @@ uninstall:
> rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
>- rm -rf $(D)/boot/*xen*
But removing this line without replacement isn't right either - we at least
need to undo what "make install" did. That may imply adding an
uninstall-xen sub-target, if we don't want to come up with a suitable
pattern to do this here.
>- rm -rf $(D)/lib/modules/*xen*
> rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
> rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
> rm -rf $(D)$(BINDIR)/xc_shadow
This may also be needed for the tools - wasn't it that BINDIR, LIBDIR and
the like are now dependent on configure options?
Similarly I don't the the EFI binaries get properly cleaned up here (and
that also would better be done with a per-subdir uninstall).
Jan
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 7:04 ` Jan Beulich
@ 2012-08-23 7:31 ` Ian Campbell
2012-08-23 7:59 ` Ian Campbell
0 siblings, 1 reply; 10+ messages in thread
From: Ian Campbell @ 2012-08-23 7:31 UTC (permalink / raw)
To: Jan Beulich; +Cc: p.d@gmx.de, xen-devel@lists.xen.org
On Thu, 2012-08-23 at 08:04 +0100, Jan Beulich wrote:
> >>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
> >--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
> >+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
> >@@ -228,8 +228,6 @@ uninstall:
> > rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> > rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> > rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
> >- rm -rf $(D)/boot/*xen*
>
> But removing this line without replacement isn't right either - we at least
> need to undo what "make install" did. That may imply adding an
> uninstall-xen sub-target,
Right, I totally forgot about the hypervisor itself!
Perhaps this target should include a
$(MAKE) -C xen uninstall
since that is the Makefile which knows how to undo its own install
target.
> if we don't want to come up with a suitable
> pattern to do this here.
>
> >- rm -rf $(D)/lib/modules/*xen*
> > rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
> > rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
> > rm -rf $(D)$(BINDIR)/xc_shadow
>
> This may also be needed for the tools - wasn't it that BINDIR, LIBDIR and
> the like are now dependent on configure options?
Yes, I think you are right here too. I think this needs to be pushed
down too.
> Similarly I don't the the EFI binaries get properly cleaned up here (and
> that also would better be done with a per-subdir uninstall).
Right.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 7:31 ` Ian Campbell
@ 2012-08-23 7:59 ` Ian Campbell
2012-08-23 8:23 ` Ian Campbell
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Ian Campbell @ 2012-08-23 7:59 UTC (permalink / raw)
To: Jan Beulich; +Cc: p.d@gmx.de, xen-devel@lists.xen.org
On Thu, 2012-08-23 at 08:31 +0100, Ian Campbell wrote:
> On Thu, 2012-08-23 at 08:04 +0100, Jan Beulich wrote:
> > >>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
> > >--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
> > >+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
> > >@@ -228,8 +228,6 @@ uninstall:
> > > rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> > > rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> > > rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
> > >- rm -rf $(D)/boot/*xen*
> >
> > But removing this line without replacement isn't right either - we at least
> > need to undo what "make install" did. That may imply adding an
> > uninstall-xen sub-target,
>
> Right, I totally forgot about the hypervisor itself!
>
> Perhaps this target should include a
> $(MAKE) -C xen uninstall
> since that is the Makefile which knows how to undo its own install
> target.
Like this, which handles EFI too but not (yet) tools.
make dist-xen
make DESTDIR=$(pwd)/dist/install uninstall
Leaves just the dist/install/boot dir which I don't think we need to
bother cleaning up (I don't think rmdir --ignore-fail-on-non-empty is
portable).
8<------------------------------------
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1345708184 -3600
# Node ID 101956baa3469f5f338c661f1ceab23077bd432b
# Parent 9cb256660bfcfdf20f869ea28881115d622ef1a4
do not remove kernels or modules on uninstall.
The pattern used is very broad and will delete any kernel with xen in
its filename, likewise modules, including those which come packages
from the distribution etc.
I don't think this was ever the right thing to do but it is doubly
wrong now that Xen does not even build or install a kernel by default.
Push cleanup of the installed hypervisor down into xen/Makefile so that
it can cleanup exactly what it actually installs.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
diff -r 9cb256660bfc -r 101956baa346 Makefile
--- a/Makefile Thu Aug 23 08:28:42 2012 +0100
+++ b/Makefile Thu Aug 23 08:49:44 2012 +0100
@@ -220,6 +220,7 @@ help:
uninstall: D=$(DESTDIR)
uninstall:
[ -d $(D)$(XEN_CONFIG_DIR) ] && mv -f $(D)$(XEN_CONFIG_DIR) $(D)$(XEN_CONFIG_DIR).old-`date +%s` || true
+ $(MAKE) -C xen uninstall
rm -rf $(D)$(CONFIG_DIR)/init.d/xendomains $(D)$(CONFIG_DIR)/init.d/xend
rm -rf $(D)$(CONFIG_DIR)/init.d/xencommons $(D)$(CONFIG_DIR)/init.d/xen-watchdog
rm -rf $(D)$(CONFIG_DIR)/hotplug/xen-backend.agent
@@ -228,8 +229,6 @@ uninstall:
rm -f $(D)$(SYSCONFIG_DIR)/xendomains
rm -f $(D)$(SYSCONFIG_DIR)/xencommons
rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
- rm -rf $(D)/boot/*xen*
- rm -rf $(D)/lib/modules/*xen*
rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
rm -rf $(D)$(BINDIR)/xc_shadow
diff -r 9cb256660bfc -r 101956baa346 xen/Makefile
--- a/xen/Makefile Thu Aug 23 08:28:42 2012 +0100
+++ b/xen/Makefile Thu Aug 23 08:49:44 2012 +0100
@@ -20,8 +20,8 @@ default: build
.PHONY: dist
dist: install
-.PHONY: build install clean distclean cscope TAGS tags MAP gtags
-build install debug clean distclean cscope TAGS tags MAP gtags::
+.PHONY: build install uninstall clean distclean cscope TAGS tags MAP gtags
+build install uninstall debug clean distclean cscope TAGS tags MAP gtags::
$(MAKE) -f Rules.mk _$@
.PHONY: _build
@@ -48,6 +48,21 @@ _install: $(TARGET).gz
fi; \
fi
+.PHONY: _uninstall
+_uninstall: D=$(DESTDIR)
+_uninstall: T=$(notdir $(TARGET))
+_uninstall:
+ rm -f $(D)/boot/$(T)-$(XEN_FULLVERSION).gz
+ rm -f $(D)/boot/$(T)-$(XEN_VERSION).$(XEN_SUBVERSION).gz
+ rm -f $(D)/boot/$(T)-$(XEN_VERSION).gz
+ rm -f $(D)/boot/$(T).gz
+ rm -f $(D)/boot/$(T)-syms-$(XEN_FULLVERSION)
+ rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_FULLVERSION).efi
+ rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_VERSION).$(XEN_SUBVERSION).efi
+ rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_VERSION).efi
+ rm -f $(D)$(EFI_DIR)/$(T).efi
+ rm -f $(D)$(EFI_MOUNTPOINT)/efi/$(EFI_VENDOR)/$(T)-$(XEN_FULLVERSION).efi
+
.PHONY: _debug
_debug:
objdump -D -S $(TARGET)-syms > $(TARGET).s
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 7:59 ` Ian Campbell
@ 2012-08-23 8:23 ` Ian Campbell
2012-08-30 15:31 ` Ian Jackson
2012-08-23 8:24 ` Ian Campbell
2012-08-24 20:00 ` Jan Beulich
2 siblings, 1 reply; 10+ messages in thread
From: Ian Campbell @ 2012-08-23 8:23 UTC (permalink / raw)
To: Jan Beulich; +Cc: p.d@gmx.de, xen-devel@lists.xen.org
On Thu, 2012-08-23 at 08:59 +0100, Ian Campbell wrote:
> On Thu, 2012-08-23 at 08:31 +0100, Ian Campbell wrote:
> > On Thu, 2012-08-23 at 08:04 +0100, Jan Beulich wrote:
> > > >>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
> > > >--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
> > > >+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
> > > >@@ -228,8 +228,6 @@ uninstall:
> > > > rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> > > > rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> > > > rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
> > > >- rm -rf $(D)/boot/*xen*
> > >
> > > But removing this line without replacement isn't right either - we at least
> > > need to undo what "make install" did. That may imply adding an
> > > uninstall-xen sub-target,
> >
> > Right, I totally forgot about the hypervisor itself!
> >
> > Perhaps this target should include a
> > $(MAKE) -C xen uninstall
> > since that is the Makefile which knows how to undo its own install
> > target.
>
> Like this, which handles EFI too but not (yet) tools.
Here is tools. This cleans up a superset of what was cleaned up before
this change but still leaves a lot of detritus. See attached
install.before, uninstall.before & uninstall.after (install.after is
identical to install.before). This is a much bigger problem and probably
requires proper recursive subdir-uninstall rules for everything under
tools.
That broader rework is certainly a post 4.2 thing IMHO. I'm in two minds
about this patch as a 4.2 thing, but given that the regression happened
due to the switch to autoconf in 4.2 I think it might be good to take,
even though as a %age of what we install the delta is pretty
insignificant.
8<---------------------------------------------------------
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1345710001 -3600
# Node ID eaf499f0f7071fc0bfd84901babfd1ae18227ebb
# Parent 101956baa3469f5f338c661f1ceab23077bd432b
uninstall: push tools uninstall down into tools/Makefile
Many of the rules here depend on having run configure and the
variables which it defines in config/Tools.mk
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
diff -r 101956baa346 -r eaf499f0f707 Makefile
--- a/Makefile Thu Aug 23 08:49:44 2012 +0100
+++ b/Makefile Thu Aug 23 09:20:01 2012 +0100
@@ -229,34 +229,7 @@ uninstall:
rm -f $(D)$(SYSCONFIG_DIR)/xendomains
rm -f $(D)$(SYSCONFIG_DIR)/xencommons
rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
- rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
- rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
- rm -rf $(D)$(BINDIR)/xc_shadow
- rm -rf $(D)$(BINDIR)/pygrub
- rm -rf $(D)$(BINDIR)/setsize $(D)$(BINDIR)/tbctl
- rm -rf $(D)$(BINDIR)/xsls
- rm -rf $(D)$(BINDIR)/xenstore* $(D)$(BINDIR)/xentrace*
- rm -rf $(D)$(BINDIR)/xen-detect $(D)$(BINDIR)/xencons
- rm -rf $(D)$(BINDIR)/xenpvnetboot $(D)$(BINDIR)/qemu-*-xen
- rm -rf $(D)$(INCLUDEDIR)/xenctrl* $(D)$(INCLUDEDIR)/xenguest.h
- rm -rf $(D)$(INCLUDEDIR)/xs_lib.h $(D)$(INCLUDEDIR)/xs.h
- rm -rf $(D)$(INCLUDEDIR)/xenstore-compat/xs_lib.h $(D)$(INCLUDEDIR)/xenstore-compat/xs.h
- rm -rf $(D)$(INCLUDEDIR)/xenstore_lib.h $(D)$(INCLUDEDIR)/xenstore.h
- rm -rf $(D)$(INCLUDEDIR)/xen
- rm -rf $(D)$(INCLUDEDIR)/_libxl* $(D)$(INCLUDEDIR)/libxl*
- rm -rf $(D)$(INCLUDEDIR)/xenstat.h $(D)$(INCLUDEDIR)/xentoollog.h
- rm -rf $(D)$(LIBDIR)/libxenctrl* $(D)$(LIBDIR)/libxenguest*
- rm -rf $(D)$(LIBDIR)/libxenstore* $(D)$(LIBDIR)/libxlutil*
- rm -rf $(D)$(LIBDIR)/python/xen $(D)$(LIBDIR)/python/grub
- rm -rf $(D)$(LIBDIR)/xen/
- rm -rf $(D)$(LIBEXEC)/xen*
- rm -rf $(D)$(SBINDIR)/setmask
- rm -rf $(D)$(SBINDIR)/xen* $(D)$(SBINDIR)/netfix $(D)$(SBINDIR)/xm
- rm -rf $(D)$(SHAREDIR)/doc/xen
- rm -rf $(D)$(SHAREDIR)/xen
- rm -rf $(D)$(SHAREDIR)/qemu-xen
- rm -rf $(D)$(MAN1DIR)/xen*
- rm -rf $(D)$(MAN8DIR)/xen*
+ make -C tools uninstall
rm -rf $(D)/boot/tboot*
# Legacy targets for compatibility
diff -r 101956baa346 -r eaf499f0f707 tools/Makefile
--- a/tools/Makefile Thu Aug 23 08:49:44 2012 +0100
+++ b/tools/Makefile Thu Aug 23 09:20:01 2012 +0100
@@ -71,6 +71,38 @@ install: subdirs-install
$(INSTALL_DIR) $(DESTDIR)/var/lib/xen
$(INSTALL_DIR) $(DESTDIR)/var/lock/subsys
+.PHONY: uninstall
+uninstall: D=$(DESTDIR)
+uninstall:
+ rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
+ rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
+ rm -rf $(D)$(BINDIR)/xc_shadow
+ rm -rf $(D)$(BINDIR)/pygrub
+ rm -rf $(D)$(BINDIR)/setsize $(D)$(BINDIR)/tbctl
+ rm -rf $(D)$(BINDIR)/xsls
+ rm -rf $(D)$(BINDIR)/xenstore* $(D)$(BINDIR)/xentrace*
+ rm -rf $(D)$(BINDIR)/xen-detect $(D)$(BINDIR)/xencons
+ rm -rf $(D)$(BINDIR)/xenpvnetboot $(D)$(BINDIR)/qemu-*-xen
+ rm -rf $(D)$(INCLUDEDIR)/xenctrl* $(D)$(INCLUDEDIR)/xenguest.h
+ rm -rf $(D)$(INCLUDEDIR)/xs_lib.h $(D)$(INCLUDEDIR)/xs.h
+ rm -rf $(D)$(INCLUDEDIR)/xenstore-compat/xs_lib.h $(D)$(INCLUDEDIR)/xenstore-compat/xs.h
+ rm -rf $(D)$(INCLUDEDIR)/xenstore_lib.h $(D)$(INCLUDEDIR)/xenstore.h
+ rm -rf $(D)$(INCLUDEDIR)/xen
+ rm -rf $(D)$(INCLUDEDIR)/_libxl* $(D)$(INCLUDEDIR)/libxl*
+ rm -rf $(D)$(INCLUDEDIR)/xenstat.h $(D)$(INCLUDEDIR)/xentoollog.h
+ rm -rf $(D)$(LIBDIR)/libxenctrl* $(D)$(LIBDIR)/libxenguest*
+ rm -rf $(D)$(LIBDIR)/libxenstore* $(D)$(LIBDIR)/libxlutil*
+ rm -rf $(D)$(LIBDIR)/python/xen $(D)$(LIBDIR)/python/grub
+ rm -rf $(D)$(LIBDIR)/xen/
+ rm -rf $(D)$(LIBEXEC)/xen*
+ rm -rf $(D)$(SBINDIR)/setmask
+ rm -rf $(D)$(SBINDIR)/xen* $(D)$(SBINDIR)/netfix $(D)$(SBINDIR)/xm
+ rm -rf $(D)$(SHAREDIR)/doc/xen
+ rm -rf $(D)$(SHAREDIR)/xen
+ rm -rf $(D)$(SHAREDIR)/qemu-xen
+ rm -rf $(D)$(MAN1DIR)/xen*
+ rm -rf $(D)$(MAN8DIR)/xen*
+
.PHONY: clean
clean: subdirs-clean
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 7:59 ` Ian Campbell
2012-08-23 8:23 ` Ian Campbell
@ 2012-08-23 8:24 ` Ian Campbell
2012-08-24 20:00 ` Jan Beulich
2 siblings, 0 replies; 10+ messages in thread
From: Ian Campbell @ 2012-08-23 8:24 UTC (permalink / raw)
To: Jan Beulich; +Cc: p.d@gmx.de, xen-devel@lists.xen.org
[-- Attachment #1: Type: text/plain, Size: 5687 bytes --]
On Thu, 2012-08-23 at 08:59 +0100, Ian Campbell wrote:
> On Thu, 2012-08-23 at 08:31 +0100, Ian Campbell wrote:
> > On Thu, 2012-08-23 at 08:04 +0100, Jan Beulich wrote:
> > > >>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
> > > >--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
> > > >+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
> > > >@@ -228,8 +228,6 @@ uninstall:
> > > > rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> > > > rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> > > > rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
> > > >- rm -rf $(D)/boot/*xen*
> > >
> > > But removing this line without replacement isn't right either - we at least
> > > need to undo what "make install" did. That may imply adding an
> > > uninstall-xen sub-target,
> >
> > Right, I totally forgot about the hypervisor itself!
> >
> > Perhaps this target should include a
> > $(MAKE) -C xen uninstall
> > since that is the Makefile which knows how to undo its own install
> > target.
>
> Like this, which handles EFI too but not (yet) tools.
Here is tools. This cleans up a superset of what was cleaned up before
this change but still leaves a lot of detritus. See attached
install.before, uninstall.before & uninstall.after (install.after is
identical to install.before). This is a much bigger problem and probably
requires proper recursive subdir-uninstall rules for everything under
tools.
That broader rework is certainly a post 4.2 thing IMHO. I'm in two minds
about this patch as a 4.2 thing, but given that the regression happened
due to the switch to autoconf in 4.2 I think it might be good to take,
even though as a %age of what we install the delta is pretty
insignificant.
8<---------------------------------------------------------
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1345710001 -3600
# Node ID eaf499f0f7071fc0bfd84901babfd1ae18227ebb
# Parent 101956baa3469f5f338c661f1ceab23077bd432b
uninstall: push tools uninstall down into tools/Makefile
Many of the rules here depend on having run configure and the
variables which it defines in config/Tools.mk
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
diff -r 101956baa346 -r eaf499f0f707 Makefile
--- a/Makefile Thu Aug 23 08:49:44 2012 +0100
+++ b/Makefile Thu Aug 23 09:20:01 2012 +0100
@@ -229,34 +229,7 @@ uninstall:
rm -f $(D)$(SYSCONFIG_DIR)/xendomains
rm -f $(D)$(SYSCONFIG_DIR)/xencommons
rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
- rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
- rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
- rm -rf $(D)$(BINDIR)/xc_shadow
- rm -rf $(D)$(BINDIR)/pygrub
- rm -rf $(D)$(BINDIR)/setsize $(D)$(BINDIR)/tbctl
- rm -rf $(D)$(BINDIR)/xsls
- rm -rf $(D)$(BINDIR)/xenstore* $(D)$(BINDIR)/xentrace*
- rm -rf $(D)$(BINDIR)/xen-detect $(D)$(BINDIR)/xencons
- rm -rf $(D)$(BINDIR)/xenpvnetboot $(D)$(BINDIR)/qemu-*-xen
- rm -rf $(D)$(INCLUDEDIR)/xenctrl* $(D)$(INCLUDEDIR)/xenguest.h
- rm -rf $(D)$(INCLUDEDIR)/xs_lib.h $(D)$(INCLUDEDIR)/xs.h
- rm -rf $(D)$(INCLUDEDIR)/xenstore-compat/xs_lib.h $(D)$(INCLUDEDIR)/xenstore-compat/xs.h
- rm -rf $(D)$(INCLUDEDIR)/xenstore_lib.h $(D)$(INCLUDEDIR)/xenstore.h
- rm -rf $(D)$(INCLUDEDIR)/xen
- rm -rf $(D)$(INCLUDEDIR)/_libxl* $(D)$(INCLUDEDIR)/libxl*
- rm -rf $(D)$(INCLUDEDIR)/xenstat.h $(D)$(INCLUDEDIR)/xentoollog.h
- rm -rf $(D)$(LIBDIR)/libxenctrl* $(D)$(LIBDIR)/libxenguest*
- rm -rf $(D)$(LIBDIR)/libxenstore* $(D)$(LIBDIR)/libxlutil*
- rm -rf $(D)$(LIBDIR)/python/xen $(D)$(LIBDIR)/python/grub
- rm -rf $(D)$(LIBDIR)/xen/
- rm -rf $(D)$(LIBEXEC)/xen*
- rm -rf $(D)$(SBINDIR)/setmask
- rm -rf $(D)$(SBINDIR)/xen* $(D)$(SBINDIR)/netfix $(D)$(SBINDIR)/xm
- rm -rf $(D)$(SHAREDIR)/doc/xen
- rm -rf $(D)$(SHAREDIR)/xen
- rm -rf $(D)$(SHAREDIR)/qemu-xen
- rm -rf $(D)$(MAN1DIR)/xen*
- rm -rf $(D)$(MAN8DIR)/xen*
+ make -C tools uninstall
rm -rf $(D)/boot/tboot*
# Legacy targets for compatibility
diff -r 101956baa346 -r eaf499f0f707 tools/Makefile
--- a/tools/Makefile Thu Aug 23 08:49:44 2012 +0100
+++ b/tools/Makefile Thu Aug 23 09:20:01 2012 +0100
@@ -71,6 +71,38 @@ install: subdirs-install
$(INSTALL_DIR) $(DESTDIR)/var/lib/xen
$(INSTALL_DIR) $(DESTDIR)/var/lock/subsys
+.PHONY: uninstall
+uninstall: D=$(DESTDIR)
+uninstall:
+ rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
+ rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
+ rm -rf $(D)$(BINDIR)/xc_shadow
+ rm -rf $(D)$(BINDIR)/pygrub
+ rm -rf $(D)$(BINDIR)/setsize $(D)$(BINDIR)/tbctl
+ rm -rf $(D)$(BINDIR)/xsls
+ rm -rf $(D)$(BINDIR)/xenstore* $(D)$(BINDIR)/xentrace*
+ rm -rf $(D)$(BINDIR)/xen-detect $(D)$(BINDIR)/xencons
+ rm -rf $(D)$(BINDIR)/xenpvnetboot $(D)$(BINDIR)/qemu-*-xen
+ rm -rf $(D)$(INCLUDEDIR)/xenctrl* $(D)$(INCLUDEDIR)/xenguest.h
+ rm -rf $(D)$(INCLUDEDIR)/xs_lib.h $(D)$(INCLUDEDIR)/xs.h
+ rm -rf $(D)$(INCLUDEDIR)/xenstore-compat/xs_lib.h $(D)$(INCLUDEDIR)/xenstore-compat/xs.h
+ rm -rf $(D)$(INCLUDEDIR)/xenstore_lib.h $(D)$(INCLUDEDIR)/xenstore.h
+ rm -rf $(D)$(INCLUDEDIR)/xen
+ rm -rf $(D)$(INCLUDEDIR)/_libxl* $(D)$(INCLUDEDIR)/libxl*
+ rm -rf $(D)$(INCLUDEDIR)/xenstat.h $(D)$(INCLUDEDIR)/xentoollog.h
+ rm -rf $(D)$(LIBDIR)/libxenctrl* $(D)$(LIBDIR)/libxenguest*
+ rm -rf $(D)$(LIBDIR)/libxenstore* $(D)$(LIBDIR)/libxlutil*
+ rm -rf $(D)$(LIBDIR)/python/xen $(D)$(LIBDIR)/python/grub
+ rm -rf $(D)$(LIBDIR)/xen/
+ rm -rf $(D)$(LIBEXEC)/xen*
+ rm -rf $(D)$(SBINDIR)/setmask
+ rm -rf $(D)$(SBINDIR)/xen* $(D)$(SBINDIR)/netfix $(D)$(SBINDIR)/xm
+ rm -rf $(D)$(SHAREDIR)/doc/xen
+ rm -rf $(D)$(SHAREDIR)/xen
+ rm -rf $(D)$(SHAREDIR)/qemu-xen
+ rm -rf $(D)$(MAN1DIR)/xen*
+ rm -rf $(D)$(MAN8DIR)/xen*
+
.PHONY: clean
clean: subdirs-clean
[-- Attachment #2: install.before --]
[-- Type: text/plain, Size: 52136 bytes --]
dist/
dist/install
dist/install/etc
dist/install/etc/bash_completion.d
dist/install/etc/bash_completion.d/xl.sh
dist/install/etc/default
dist/install/etc/default/xencommons
dist/install/etc/default/xendomains
dist/install/etc/hotplug
dist/install/etc/hotplug/xen-backend.agent
dist/install/etc/init.d
dist/install/etc/init.d/xencommons
dist/install/etc/init.d/xend
dist/install/etc/init.d/xendomains
dist/install/etc/init.d/xen-watchdog
dist/install/etc/udev
dist/install/etc/udev/rules.d
dist/install/etc/udev/rules.d/xen-backend.rules
dist/install/etc/udev/rules.d/xend.rules
dist/install/etc/xen
dist/install/etc/xen/auto
dist/install/etc/xen/cpupool
dist/install/etc/xen/oxenstored.conf
dist/install/etc/xen/README
dist/install/etc/xen/README.incompatibilities
dist/install/etc/xen/scripts
dist/install/etc/xen/scripts/blktap
dist/install/etc/xen/scripts/block
dist/install/etc/xen/scripts/block-common.sh
dist/install/etc/xen/scripts/block-enbd
dist/install/etc/xen/scripts/block-nbd
dist/install/etc/xen/scripts/external-device-migrate
dist/install/etc/xen/scripts/hotplugpath.sh
dist/install/etc/xen/scripts/locking.sh
dist/install/etc/xen/scripts/logging.sh
dist/install/etc/xen/scripts/network-bridge
dist/install/etc/xen/scripts/network-nat
dist/install/etc/xen/scripts/network-route
dist/install/etc/xen/scripts/qemu-ifup
dist/install/etc/xen/scripts/vif2
dist/install/etc/xen/scripts/vif-bridge
dist/install/etc/xen/scripts/vif-common.sh
dist/install/etc/xen/scripts/vif-nat
dist/install/etc/xen/scripts/vif-route
dist/install/etc/xen/scripts/vif-setup
dist/install/etc/xen/scripts/vscsi
dist/install/etc/xen/scripts/vtpm
dist/install/etc/xen/scripts/vtpm-common.sh
dist/install/etc/xen/scripts/vtpm-delete
dist/install/etc/xen/scripts/vtpm-hotplug-common.sh
dist/install/etc/xen/scripts/vtpm-impl
dist/install/etc/xen/scripts/vtpm-migration.sh
dist/install/etc/xen/scripts/xen-hotplug-cleanup
dist/install/etc/xen/scripts/xen-hotplug-common.sh
dist/install/etc/xen/scripts/xen-network-common.sh
dist/install/etc/xen/scripts/xen-script-common.sh
dist/install/etc/xen/xend-config.sxp
dist/install/etc/xen/xend-pci-permissive.sxp
dist/install/etc/xen/xend-pci-quirks.sxp
dist/install/etc/xen/xl.conf
dist/install/etc/xen/xlexample.hvm
dist/install/etc/xen/xlexample.pvlinux
dist/install/etc/xen/xm-config.xml
dist/install/etc/xen/xmexample1
dist/install/etc/xen/xmexample2
dist/install/etc/xen/xmexample3
dist/install/etc/xen/xmexample.hvm
dist/install/etc/xen/xmexample.hvm-stubdom
dist/install/etc/xen/xmexample.nbd
dist/install/etc/xen/xmexample.pv-grub
dist/install/etc/xen/xmexample.vti
dist/install/usr
dist/install/usr/bin
dist/install/usr/bin/pygrub
dist/install/usr/bin/qemu-img-xen
dist/install/usr/bin/qemu-nbd-xen
dist/install/usr/bin/remus
dist/install/usr/bin/xencons
dist/install/usr/bin/xen-detect
dist/install/usr/bin/xenstore
dist/install/usr/bin/xenstore-chmod
dist/install/usr/bin/xenstore-control
dist/install/usr/bin/xenstore-exists
dist/install/usr/bin/xenstore-list
dist/install/usr/bin/xenstore-ls
dist/install/usr/bin/xenstore-read
dist/install/usr/bin/xenstore-rm
dist/install/usr/bin/xenstore-watch
dist/install/usr/bin/xenstore-write
dist/install/usr/bin/xentrace
dist/install/usr/bin/xentrace_format
dist/install/usr/bin/xentrace_setsize
dist/install/usr/include
dist/install/usr/include/blktaplib.h
dist/install/usr/include/fsimage_grub.h
dist/install/usr/include/fsimage.h
dist/install/usr/include/fsimage_plugin.h
dist/install/usr/include/libxenvchan.h
dist/install/usr/include/libxl_event.h
dist/install/usr/include/libxl.h
dist/install/usr/include/libxl_json.h
dist/install/usr/include/_libxl_list.h
dist/install/usr/include/_libxl_types.h
dist/install/usr/include/_libxl_types_json.h
dist/install/usr/include/libxl_utils.h
dist/install/usr/include/libxl_uuid.h
dist/install/usr/include/xen
dist/install/usr/include/xen/arch-arm.h
dist/install/usr/include/xen/arch-ia64
dist/install/usr/include/xen/arch-ia64/debug_op.h
dist/install/usr/include/xen/arch-ia64.h
dist/install/usr/include/xen/arch-ia64/hvm
dist/install/usr/include/xen/arch-ia64/hvm/memmap.h
dist/install/usr/include/xen/arch-ia64/hvm/save.h
dist/install/usr/include/xen/arch-ia64/sioemu.h
dist/install/usr/include/xen/arch-x86
dist/install/usr/include/xen/arch-x86_32.h
dist/install/usr/include/xen/arch-x86_64.h
dist/install/usr/include/xen/arch-x86/cpuid.h
dist/install/usr/include/xen/arch-x86/hvm
dist/install/usr/include/xen/arch-x86/hvm/save.h
dist/install/usr/include/xen/arch-x86/xen.h
dist/install/usr/include/xen/arch-x86/xen-mca.h
dist/install/usr/include/xen/arch-x86/xen-x86_32.h
dist/install/usr/include/xen/arch-x86/xen-x86_64.h
dist/install/usr/include/xen/callback.h
dist/install/usr/include/xen/COPYING
dist/install/usr/include/xenctrl.h
dist/install/usr/include/xenctrlosdep.h
dist/install/usr/include/xen/dom0_ops.h
dist/install/usr/include/xen/domctl.h
dist/install/usr/include/xen/elfnote.h
dist/install/usr/include/xen/event_channel.h
dist/install/usr/include/xen/features.h
dist/install/usr/include/xen/foreign
dist/install/usr/include/xen/foreign/ia64.h
dist/install/usr/include/xen/foreign/x86_32.h
dist/install/usr/include/xen/foreign/x86_64.h
dist/install/usr/include/xen/grant_table.h
dist/install/usr/include/xenguest.h
dist/install/usr/include/xen/hvm
dist/install/usr/include/xen/hvm/e820.h
dist/install/usr/include/xen/hvm/hvm_info_table.h
dist/install/usr/include/xen/hvm/hvm_op.h
dist/install/usr/include/xen/hvm/ioreq.h
dist/install/usr/include/xen/hvm/params.h
dist/install/usr/include/xen/hvm/save.h
dist/install/usr/include/xen/io
dist/install/usr/include/xen/io/blkif.h
dist/install/usr/include/xen/io/console.h
dist/install/usr/include/xen/io/fbif.h
dist/install/usr/include/xen/io/fsif.h
dist/install/usr/include/xen/io/kbdif.h
dist/install/usr/include/xen/io/libxenvchan.h
dist/install/usr/include/xen/io/netif.h
dist/install/usr/include/xen/io/pciif.h
dist/install/usr/include/xen/io/protocols.h
dist/install/usr/include/xen/io/ring.h
dist/install/usr/include/xen/io/tpmif.h
dist/install/usr/include/xen/io/usbif.h
dist/install/usr/include/xen/io/vscsiif.h
dist/install/usr/include/xen/io/xenbus.h
dist/install/usr/include/xen/io/xs_wire.h
dist/install/usr/include/xen/kexec.h
dist/install/usr/include/xen/mem_event.h
dist/install/usr/include/xen/memory.h
dist/install/usr/include/xen/nmi.h
dist/install/usr/include/xen/physdev.h
dist/install/usr/include/xen/platform.h
dist/install/usr/include/xen/sched.h
dist/install/usr/include/xenstat.h
dist/install/usr/include/xenstore-compat
dist/install/usr/include/xenstore-compat/xs.h
dist/install/usr/include/xenstore-compat/xs_lib.h
dist/install/usr/include/xenstore.h
dist/install/usr/include/xenstore_lib.h
dist/install/usr/include/xen/sys
dist/install/usr/include/xen/sysctl.h
dist/install/usr/include/xen/sys/evtchn.h
dist/install/usr/include/xen/sys/gntalloc.h
dist/install/usr/include/xen/sys/gntdev.h
dist/install/usr/include/xen/sys/privcmd.h
dist/install/usr/include/xen/sys/xenbus_dev.h
dist/install/usr/include/xen/tmem.h
dist/install/usr/include/xentoollog.h
dist/install/usr/include/xen/trace.h
dist/install/usr/include/xen/vcpu.h
dist/install/usr/include/xen/version.h
dist/install/usr/include/xen/xencomm.h
dist/install/usr/include/xen/xen-compat.h
dist/install/usr/include/xen/xen.h
dist/install/usr/include/xen/xenoprof.h
dist/install/usr/include/xen/xsm
dist/install/usr/include/xen/xsm/flask_op.h
dist/install/usr/include/xs.h
dist/install/usr/include/xs_lib.h
dist/install/usr/lib
dist/install/usr/lib/fs
dist/install/usr/lib/fs/ext2fs
dist/install/usr/lib/fs/ext2fs/fsimage.so
dist/install/usr/lib/fs/fat
dist/install/usr/lib/fs/fat/fsimage.so
dist/install/usr/lib/fs/iso9660
dist/install/usr/lib/fs/iso9660/fsimage.so
dist/install/usr/lib/fs/reiserfs
dist/install/usr/lib/fs/reiserfs/fsimage.so
dist/install/usr/lib/fs/ufs
dist/install/usr/lib/fs/ufs/fsimage.so
dist/install/usr/lib/fs/xfs
dist/install/usr/lib/fs/xfs/fsimage.so
dist/install/usr/lib/fs/zfs
dist/install/usr/lib/fs/zfs/fsimage.so
dist/install/usr/lib/libblktap.a
dist/install/usr/lib/libblktapctl.a
dist/install/usr/lib/libblktapctl.so
dist/install/usr/lib/libblktapctl.so.1.0
dist/install/usr/lib/libblktapctl.so.1.0.0
dist/install/usr/lib/libblktap.so
dist/install/usr/lib/libblktap.so.3.0
dist/install/usr/lib/libblktap.so.3.0.0
dist/install/usr/lib/libfsimage.so
dist/install/usr/lib/libfsimage.so.1.0
dist/install/usr/lib/libfsimage.so.1.0.0
dist/install/usr/lib/libvhd.a
dist/install/usr/lib/libvhd.so
dist/install/usr/lib/libvhd.so.1.0
dist/install/usr/lib/libvhd.so.1.0.0
dist/install/usr/lib/libxenctrl.a
dist/install/usr/lib/libxenctrl.so
dist/install/usr/lib/libxenctrl.so.4.2
dist/install/usr/lib/libxenctrl.so.4.2.0
dist/install/usr/lib/libxenguest.a
dist/install/usr/lib/libxenguest.so
dist/install/usr/lib/libxenguest.so.4.2
dist/install/usr/lib/libxenguest.so.4.2.0
dist/install/usr/lib/libxenlight.a
dist/install/usr/lib/libxenlight.so
dist/install/usr/lib/libxenlight.so.2.0
dist/install/usr/lib/libxenlight.so.2.0.0
dist/install/usr/lib/libxenstat.a
dist/install/usr/lib/libxenstat.so
dist/install/usr/lib/libxenstat.so.0
dist/install/usr/lib/libxenstat.so.0.0
dist/install/usr/lib/libxenstore.a
dist/install/usr/lib/libxenstore.so
dist/install/usr/lib/libxenstore.so.3.0
dist/install/usr/lib/libxenstore.so.3.0.1
dist/install/usr/lib/libxenvchan.a
dist/install/usr/lib/libxenvchan.so
dist/install/usr/lib/libxenvchan.so.1.0
dist/install/usr/lib/libxenvchan.so.1.0.0
dist/install/usr/lib/libxlutil.a
dist/install/usr/lib/libxlutil.so
dist/install/usr/lib/libxlutil.so.1.0
dist/install/usr/lib/libxlutil.so.1.0.0
dist/install/usr/lib/python2.6
dist/install/usr/lib/python2.6/dist-packages
dist/install/usr/lib/python2.6/dist-packages/fsimage.so
dist/install/usr/lib/python2.6/dist-packages/grub
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.py
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.pyc
dist/install/usr/lib/python2.6/dist-packages/pygrub-0.3.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen
dist/install/usr/lib/python2.6/dist-packages/xen-3.0.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/checkpoint.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/flask.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/netlink.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/ptsname.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xc.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xs.so
dist/install/usr/lib/python2.6/dist-packages/xen/remus
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.pyc
dist/install/usr/lib/xen
dist/install/usr/lib/xen/bin
dist/install/usr/lib/xen/bin/libxl-save-helper
dist/install/usr/lib/xen/bin/lsevtchn
dist/install/usr/lib/xen/bin/pygrub
dist/install/usr/lib/xen/bin/qemu-dm
dist/install/usr/lib/xen/bin/qemu-ga
dist/install/usr/lib/xen/bin/qemu-img
dist/install/usr/lib/xen/bin/qemu-io
dist/install/usr/lib/xen/bin/qemu-nbd
dist/install/usr/lib/xen/bin/qemu-system-i386
dist/install/usr/lib/xen/bin/readnotes
dist/install/usr/lib/xen/bin/xc_restore
dist/install/usr/lib/xen/bin/xc_save
dist/install/usr/lib/xen/bin/xenconsole
dist/install/usr/lib/xen/bin/xenctx
dist/install/usr/lib/xen/bin/xenpaging
dist/install/usr/lib/xen/bin/xenpvnetboot
dist/install/usr/lib/xen/boot
dist/install/usr/lib/xen/boot/hvmloader
dist/install/usr/local
dist/install/usr/local/etc
dist/install/usr/local/etc/qemu
dist/install/usr/local/etc/qemu/target-x86_64.conf
dist/install/usr/local/lib
dist/install/usr/local/lib/ocaml
dist/install/usr/local/lib/ocaml/3.11.2
dist/install/usr/local/lib/ocaml/3.11.2/xenbus
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/dllxenbus_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/libxenbus_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/META
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/dllxenctrl_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/libxenctrl_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/META
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/dllxeneventchn_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/libxeneventchn_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/META
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cma
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenlight
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/dllxenlight_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/libxenlight_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/META
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/dllxenmmap_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/libxenmmap_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/META
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenstore
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/META
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.a
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmxa
dist/install/usr/local/share
dist/install/usr/local/share/doc
dist/install/usr/local/share/doc/qemu
dist/install/usr/local/share/doc/qemu/qemu-doc.html
dist/install/usr/local/share/doc/qemu/qemu-tech.html
dist/install/usr/local/share/man
dist/install/usr/local/share/man/man1
dist/install/usr/local/share/man/man1/qemu.1
dist/install/usr/local/share/man/man1/qemu-img.1
dist/install/usr/local/share/man/man8
dist/install/usr/local/share/man/man8/qemu-nbd.8
dist/install/usr/sbin
dist/install/usr/sbin/blktapctrl
dist/install/usr/sbin/flask-get-bool
dist/install/usr/sbin/flask-getenforce
dist/install/usr/sbin/flask-label-pci
dist/install/usr/sbin/flask-loadpolicy
dist/install/usr/sbin/flask-set-bool
dist/install/usr/sbin/flask-setenforce
dist/install/usr/sbin/gdbsx
dist/install/usr/sbin/gtracestat
dist/install/usr/sbin/gtraceview
dist/install/usr/sbin/img2qcow
dist/install/usr/sbin/kdd
dist/install/usr/sbin/lock-util
dist/install/usr/sbin/oxenstored
dist/install/usr/sbin/qcow2raw
dist/install/usr/sbin/qcow-create
dist/install/usr/sbin/tap-ctl
dist/install/usr/sbin/tapdisk
dist/install/usr/sbin/tapdisk2
dist/install/usr/sbin/tapdisk-client
dist/install/usr/sbin/tapdisk-diff
dist/install/usr/sbin/tapdisk-stream
dist/install/usr/sbin/td-util
dist/install/usr/sbin/vhd-update
dist/install/usr/sbin/vhd-util
dist/install/usr/sbin/xenbaked
dist/install/usr/sbin/xen-bugtool
dist/install/usr/sbin/xenconsoled
dist/install/usr/sbin/xend
dist/install/usr/sbin/xen-hptool
dist/install/usr/sbin/xen-hvmcrash
dist/install/usr/sbin/xen-hvmctx
dist/install/usr/sbin/xenlockprof
dist/install/usr/sbin/xen-lowmemd
dist/install/usr/sbin/xenmon.py
dist/install/usr/sbin/xenperf
dist/install/usr/sbin/xenpm
dist/install/usr/sbin/xenpmd
dist/install/usr/sbin/xen-python-path
dist/install/usr/sbin/xen-ringwatch
dist/install/usr/sbin/xenstored
dist/install/usr/sbin/xen-tmem-list-parse
dist/install/usr/sbin/xentop
dist/install/usr/sbin/xentrace_setmask
dist/install/usr/sbin/xenwatchdogd
dist/install/usr/sbin/xl
dist/install/usr/sbin/xm
dist/install/usr/sbin/xsview
dist/install/usr/share
dist/install/usr/share/doc
dist/install/usr/share/doc/xen
dist/install/usr/share/doc/xen/qemu
dist/install/usr/share/doc/xen/qemu/qemu-doc.html
dist/install/usr/share/doc/xen/qemu/qemu-tech.html
dist/install/usr/share/doc/xen/README.blktap
dist/install/usr/share/doc/xen/README.xenmon
dist/install/usr/share/man
dist/install/usr/share/man/man1
dist/install/usr/share/man/man1/xentop.1
dist/install/usr/share/man/man1/xentrace_format.1
dist/install/usr/share/man/man8
dist/install/usr/share/man/man8/xentrace.8
dist/install/usr/share/qemu-xen
dist/install/usr/share/qemu-xen/bamboo.dtb
dist/install/usr/share/qemu-xen/bios.bin
dist/install/usr/share/qemu-xen/keymaps
dist/install/usr/share/qemu-xen/keymaps/ar
dist/install/usr/share/qemu-xen/keymaps/common
dist/install/usr/share/qemu-xen/keymaps/da
dist/install/usr/share/qemu-xen/keymaps/de
dist/install/usr/share/qemu-xen/keymaps/de-ch
dist/install/usr/share/qemu-xen/keymaps/en-gb
dist/install/usr/share/qemu-xen/keymaps/en-us
dist/install/usr/share/qemu-xen/keymaps/es
dist/install/usr/share/qemu-xen/keymaps/et
dist/install/usr/share/qemu-xen/keymaps/fi
dist/install/usr/share/qemu-xen/keymaps/fo
dist/install/usr/share/qemu-xen/keymaps/fr
dist/install/usr/share/qemu-xen/keymaps/fr-be
dist/install/usr/share/qemu-xen/keymaps/fr-ca
dist/install/usr/share/qemu-xen/keymaps/fr-ch
dist/install/usr/share/qemu-xen/keymaps/hr
dist/install/usr/share/qemu-xen/keymaps/hu
dist/install/usr/share/qemu-xen/keymaps/is
dist/install/usr/share/qemu-xen/keymaps/it
dist/install/usr/share/qemu-xen/keymaps/ja
dist/install/usr/share/qemu-xen/keymaps/lt
dist/install/usr/share/qemu-xen/keymaps/lv
dist/install/usr/share/qemu-xen/keymaps/mk
dist/install/usr/share/qemu-xen/keymaps/modifiers
dist/install/usr/share/qemu-xen/keymaps/nl
dist/install/usr/share/qemu-xen/keymaps/nl-be
dist/install/usr/share/qemu-xen/keymaps/no
dist/install/usr/share/qemu-xen/keymaps/pl
dist/install/usr/share/qemu-xen/keymaps/pt
dist/install/usr/share/qemu-xen/keymaps/pt-br
dist/install/usr/share/qemu-xen/keymaps/ru
dist/install/usr/share/qemu-xen/keymaps/sl
dist/install/usr/share/qemu-xen/keymaps/sv
dist/install/usr/share/qemu-xen/keymaps/th
dist/install/usr/share/qemu-xen/keymaps/tr
dist/install/usr/share/qemu-xen/linuxboot.bin
dist/install/usr/share/qemu-xen/mpc8544ds.dtb
dist/install/usr/share/qemu-xen/multiboot.bin
dist/install/usr/share/qemu-xen/openbios-ppc
dist/install/usr/share/qemu-xen/openbios-sparc32
dist/install/usr/share/qemu-xen/openbios-sparc64
dist/install/usr/share/qemu-xen/palcode-clipper
dist/install/usr/share/qemu-xen/petalogix-ml605.dtb
dist/install/usr/share/qemu-xen/petalogix-s3adsp1800.dtb
dist/install/usr/share/qemu-xen/ppc_rom.bin
dist/install/usr/share/qemu-xen/pxe-e1000.rom
dist/install/usr/share/qemu-xen/pxe-eepro100.rom
dist/install/usr/share/qemu-xen/pxe-ne2k_pci.rom
dist/install/usr/share/qemu-xen/pxe-pcnet.rom
dist/install/usr/share/qemu-xen/pxe-rtl8139.rom
dist/install/usr/share/qemu-xen/pxe-virtio.rom
dist/install/usr/share/qemu-xen/s390-zipl.rom
dist/install/usr/share/qemu-xen/sgabios.bin
dist/install/usr/share/qemu-xen/slof.bin
dist/install/usr/share/qemu-xen/spapr-rtas.bin
dist/install/usr/share/qemu-xen/vgabios.bin
dist/install/usr/share/qemu-xen/vgabios-cirrus.bin
dist/install/usr/share/qemu-xen/vgabios-qxl.bin
dist/install/usr/share/qemu-xen/vgabios-stdvga.bin
dist/install/usr/share/qemu-xen/vgabios-vmware.bin
dist/install/usr/share/xen
dist/install/usr/share/xen/create.dtd
dist/install/usr/share/xen/man
dist/install/usr/share/xen/man/man1
dist/install/usr/share/xen/man/man1/qemu.1
dist/install/usr/share/xen/man/man1/qemu-img.1
dist/install/usr/share/xen/man/man8
dist/install/usr/share/xen/man/man8/qemu-nbd.8
dist/install/usr/share/xen/qemu
dist/install/usr/share/xen/qemu/bamboo.dtb
dist/install/usr/share/xen/qemu/bios.bin
dist/install/usr/share/xen/qemu/keymaps
dist/install/usr/share/xen/qemu/keymaps/ar
dist/install/usr/share/xen/qemu/keymaps/common
dist/install/usr/share/xen/qemu/keymaps/da
dist/install/usr/share/xen/qemu/keymaps/de
dist/install/usr/share/xen/qemu/keymaps/de-ch
dist/install/usr/share/xen/qemu/keymaps/en-gb
dist/install/usr/share/xen/qemu/keymaps/en-us
dist/install/usr/share/xen/qemu/keymaps/es
dist/install/usr/share/xen/qemu/keymaps/et
dist/install/usr/share/xen/qemu/keymaps/fi
dist/install/usr/share/xen/qemu/keymaps/fo
dist/install/usr/share/xen/qemu/keymaps/fr
dist/install/usr/share/xen/qemu/keymaps/fr-be
dist/install/usr/share/xen/qemu/keymaps/fr-ca
dist/install/usr/share/xen/qemu/keymaps/fr-ch
dist/install/usr/share/xen/qemu/keymaps/hr
dist/install/usr/share/xen/qemu/keymaps/hu
dist/install/usr/share/xen/qemu/keymaps/is
dist/install/usr/share/xen/qemu/keymaps/it
dist/install/usr/share/xen/qemu/keymaps/ja
dist/install/usr/share/xen/qemu/keymaps/lt
dist/install/usr/share/xen/qemu/keymaps/lv
dist/install/usr/share/xen/qemu/keymaps/mk
dist/install/usr/share/xen/qemu/keymaps/modifiers
dist/install/usr/share/xen/qemu/keymaps/nl
dist/install/usr/share/xen/qemu/keymaps/nl-be
dist/install/usr/share/xen/qemu/keymaps/no
dist/install/usr/share/xen/qemu/keymaps/pl
dist/install/usr/share/xen/qemu/keymaps/pt
dist/install/usr/share/xen/qemu/keymaps/pt-br
dist/install/usr/share/xen/qemu/keymaps/ru
dist/install/usr/share/xen/qemu/keymaps/sl
dist/install/usr/share/xen/qemu/keymaps/sv
dist/install/usr/share/xen/qemu/keymaps/th
dist/install/usr/share/xen/qemu/keymaps/tr
dist/install/usr/share/xen/qemu/openbios-ppc
dist/install/usr/share/xen/qemu/openbios-sparc32
dist/install/usr/share/xen/qemu/openbios-sparc64
dist/install/usr/share/xen/qemu/ppc_rom.bin
dist/install/usr/share/xen/qemu/pxe-e1000.bin
dist/install/usr/share/xen/qemu/pxe-ne2k_pci.bin
dist/install/usr/share/xen/qemu/pxe-pcnet.bin
dist/install/usr/share/xen/qemu/pxe-rtl8139.bin
dist/install/usr/share/xen/qemu/vgabios.bin
dist/install/usr/share/xen/qemu/vgabios-cirrus.bin
dist/install/usr/share/xen/qemu/video.x
dist/install/var
dist/install/var/lib
dist/install/var/lib/xen
dist/install/var/lib/xenstored
dist/install/var/lib/xen/xenpaging
dist/install/var/lock
dist/install/var/lock/subsys
dist/install/var/log
dist/install/var/log/xen
dist/install/var/run
dist/install/var/run/xen
dist/install/var/run/xend
dist/install/var/run/xend/boot
dist/install/var/run/xenstored
dist/install/var/xen
dist/install/var/xen/dump
[-- Attachment #3: uninstall.after --]
[-- Type: text/plain, Size: 39987 bytes --]
dist/
dist/install
dist/install/etc
dist/install/etc/bash_completion.d
dist/install/etc/bash_completion.d/xl.sh
dist/install/etc/default
dist/install/etc/hotplug
dist/install/etc/init.d
dist/install/etc/udev
dist/install/etc/udev/rules.d
dist/install/etc/xen.old-1345709784
dist/install/etc/xen.old-1345709784/auto
dist/install/etc/xen.old-1345709784/cpupool
dist/install/etc/xen.old-1345709784/oxenstored.conf
dist/install/etc/xen.old-1345709784/README
dist/install/etc/xen.old-1345709784/README.incompatibilities
dist/install/etc/xen.old-1345709784/scripts
dist/install/etc/xen.old-1345709784/scripts/blktap
dist/install/etc/xen.old-1345709784/scripts/block
dist/install/etc/xen.old-1345709784/scripts/block-common.sh
dist/install/etc/xen.old-1345709784/scripts/block-enbd
dist/install/etc/xen.old-1345709784/scripts/block-nbd
dist/install/etc/xen.old-1345709784/scripts/external-device-migrate
dist/install/etc/xen.old-1345709784/scripts/hotplugpath.sh
dist/install/etc/xen.old-1345709784/scripts/locking.sh
dist/install/etc/xen.old-1345709784/scripts/logging.sh
dist/install/etc/xen.old-1345709784/scripts/network-bridge
dist/install/etc/xen.old-1345709784/scripts/network-nat
dist/install/etc/xen.old-1345709784/scripts/network-route
dist/install/etc/xen.old-1345709784/scripts/qemu-ifup
dist/install/etc/xen.old-1345709784/scripts/vif2
dist/install/etc/xen.old-1345709784/scripts/vif-bridge
dist/install/etc/xen.old-1345709784/scripts/vif-common.sh
dist/install/etc/xen.old-1345709784/scripts/vif-nat
dist/install/etc/xen.old-1345709784/scripts/vif-route
dist/install/etc/xen.old-1345709784/scripts/vif-setup
dist/install/etc/xen.old-1345709784/scripts/vscsi
dist/install/etc/xen.old-1345709784/scripts/vtpm
dist/install/etc/xen.old-1345709784/scripts/vtpm-common.sh
dist/install/etc/xen.old-1345709784/scripts/vtpm-delete
dist/install/etc/xen.old-1345709784/scripts/vtpm-hotplug-common.sh
dist/install/etc/xen.old-1345709784/scripts/vtpm-impl
dist/install/etc/xen.old-1345709784/scripts/vtpm-migration.sh
dist/install/etc/xen.old-1345709784/scripts/xen-hotplug-cleanup
dist/install/etc/xen.old-1345709784/scripts/xen-hotplug-common.sh
dist/install/etc/xen.old-1345709784/scripts/xen-network-common.sh
dist/install/etc/xen.old-1345709784/scripts/xen-script-common.sh
dist/install/etc/xen.old-1345709784/xend-config.sxp
dist/install/etc/xen.old-1345709784/xend-pci-permissive.sxp
dist/install/etc/xen.old-1345709784/xend-pci-quirks.sxp
dist/install/etc/xen.old-1345709784/xl.conf
dist/install/etc/xen.old-1345709784/xlexample.hvm
dist/install/etc/xen.old-1345709784/xlexample.pvlinux
dist/install/etc/xen.old-1345709784/xm-config.xml
dist/install/etc/xen.old-1345709784/xmexample1
dist/install/etc/xen.old-1345709784/xmexample2
dist/install/etc/xen.old-1345709784/xmexample3
dist/install/etc/xen.old-1345709784/xmexample.hvm
dist/install/etc/xen.old-1345709784/xmexample.hvm-stubdom
dist/install/etc/xen.old-1345709784/xmexample.nbd
dist/install/etc/xen.old-1345709784/xmexample.pv-grub
dist/install/etc/xen.old-1345709784/xmexample.vti
dist/install/usr
dist/install/usr/bin
dist/install/usr/bin/remus
dist/install/usr/include
dist/install/usr/include/blktaplib.h
dist/install/usr/include/fsimage_grub.h
dist/install/usr/include/fsimage.h
dist/install/usr/include/fsimage_plugin.h
dist/install/usr/include/libxenvchan.h
dist/install/usr/include/xenstore-compat
dist/install/usr/lib
dist/install/usr/lib/fs
dist/install/usr/lib/fs/ext2fs
dist/install/usr/lib/fs/ext2fs/fsimage.so
dist/install/usr/lib/fs/fat
dist/install/usr/lib/fs/fat/fsimage.so
dist/install/usr/lib/fs/iso9660
dist/install/usr/lib/fs/iso9660/fsimage.so
dist/install/usr/lib/fs/reiserfs
dist/install/usr/lib/fs/reiserfs/fsimage.so
dist/install/usr/lib/fs/ufs
dist/install/usr/lib/fs/ufs/fsimage.so
dist/install/usr/lib/fs/xfs
dist/install/usr/lib/fs/xfs/fsimage.so
dist/install/usr/lib/fs/zfs
dist/install/usr/lib/fs/zfs/fsimage.so
dist/install/usr/lib/libblktap.a
dist/install/usr/lib/libblktapctl.a
dist/install/usr/lib/libblktapctl.so
dist/install/usr/lib/libblktapctl.so.1.0
dist/install/usr/lib/libblktapctl.so.1.0.0
dist/install/usr/lib/libblktap.so
dist/install/usr/lib/libblktap.so.3.0
dist/install/usr/lib/libblktap.so.3.0.0
dist/install/usr/lib/libfsimage.so
dist/install/usr/lib/libfsimage.so.1.0
dist/install/usr/lib/libfsimage.so.1.0.0
dist/install/usr/lib/libvhd.a
dist/install/usr/lib/libvhd.so
dist/install/usr/lib/libvhd.so.1.0
dist/install/usr/lib/libvhd.so.1.0.0
dist/install/usr/lib/libxenlight.a
dist/install/usr/lib/libxenlight.so
dist/install/usr/lib/libxenlight.so.2.0
dist/install/usr/lib/libxenlight.so.2.0.0
dist/install/usr/lib/libxenstat.a
dist/install/usr/lib/libxenstat.so
dist/install/usr/lib/libxenstat.so.0
dist/install/usr/lib/libxenstat.so.0.0
dist/install/usr/lib/libxenvchan.a
dist/install/usr/lib/libxenvchan.so
dist/install/usr/lib/libxenvchan.so.1.0
dist/install/usr/lib/libxenvchan.so.1.0.0
dist/install/usr/lib/python2.6
dist/install/usr/lib/python2.6/dist-packages
dist/install/usr/lib/python2.6/dist-packages/fsimage.so
dist/install/usr/lib/python2.6/dist-packages/grub
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.py
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.pyc
dist/install/usr/lib/python2.6/dist-packages/pygrub-0.3.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen
dist/install/usr/lib/python2.6/dist-packages/xen-3.0.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/checkpoint.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/flask.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/netlink.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/ptsname.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xc.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xs.so
dist/install/usr/lib/python2.6/dist-packages/xen/remus
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.pyc
dist/install/usr/local
dist/install/usr/local/etc
dist/install/usr/local/etc/qemu
dist/install/usr/local/etc/qemu/target-x86_64.conf
dist/install/usr/local/lib
dist/install/usr/local/lib/ocaml
dist/install/usr/local/lib/ocaml/3.11.2
dist/install/usr/local/lib/ocaml/3.11.2/xenbus
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/dllxenbus_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/libxenbus_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/META
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/dllxenctrl_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/libxenctrl_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/META
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/dllxeneventchn_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/libxeneventchn_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/META
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cma
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenlight
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/dllxenlight_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/libxenlight_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/META
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/dllxenmmap_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/libxenmmap_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/META
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenstore
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/META
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.a
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmxa
dist/install/usr/local/share
dist/install/usr/local/share/doc
dist/install/usr/local/share/doc/qemu
dist/install/usr/local/share/doc/qemu/qemu-doc.html
dist/install/usr/local/share/doc/qemu/qemu-tech.html
dist/install/usr/local/share/man
dist/install/usr/local/share/man/man1
dist/install/usr/local/share/man/man1/qemu.1
dist/install/usr/local/share/man/man1/qemu-img.1
dist/install/usr/local/share/man/man8
dist/install/usr/local/share/man/man8/qemu-nbd.8
dist/install/usr/sbin
dist/install/usr/sbin/blktapctrl
dist/install/usr/sbin/flask-get-bool
dist/install/usr/sbin/flask-getenforce
dist/install/usr/sbin/flask-label-pci
dist/install/usr/sbin/flask-loadpolicy
dist/install/usr/sbin/flask-set-bool
dist/install/usr/sbin/flask-setenforce
dist/install/usr/sbin/gdbsx
dist/install/usr/sbin/gtracestat
dist/install/usr/sbin/gtraceview
dist/install/usr/sbin/img2qcow
dist/install/usr/sbin/kdd
dist/install/usr/sbin/lock-util
dist/install/usr/sbin/oxenstored
dist/install/usr/sbin/qcow2raw
dist/install/usr/sbin/qcow-create
dist/install/usr/sbin/tap-ctl
dist/install/usr/sbin/tapdisk
dist/install/usr/sbin/tapdisk2
dist/install/usr/sbin/tapdisk-client
dist/install/usr/sbin/tapdisk-diff
dist/install/usr/sbin/tapdisk-stream
dist/install/usr/sbin/td-util
dist/install/usr/sbin/vhd-update
dist/install/usr/sbin/vhd-util
dist/install/usr/sbin/xl
dist/install/usr/sbin/xsview
dist/install/usr/share
dist/install/usr/share/doc
dist/install/usr/share/man
dist/install/usr/share/man/man1
dist/install/usr/share/man/man8
dist/install/var
dist/install/var/lib
dist/install/var/lock
dist/install/var/lock/subsys
dist/install/var/log
dist/install/var/log/xen
dist/install/var/run
dist/install/var/xen
dist/install/var/xen/dump
[-- Attachment #4: uninstall.before --]
[-- Type: text/plain, Size: 41181 bytes --]
dist/
dist/install
dist/install/etc
dist/install/etc/bash_completion.d
dist/install/etc/bash_completion.d/xl.sh
dist/install/etc/default
dist/install/etc/hotplug
dist/install/etc/init.d
dist/install/etc/udev
dist/install/etc/udev/rules.d
dist/install/etc/xen.old-1345709489
dist/install/etc/xen.old-1345709489/auto
dist/install/etc/xen.old-1345709489/cpupool
dist/install/etc/xen.old-1345709489/oxenstored.conf
dist/install/etc/xen.old-1345709489/README
dist/install/etc/xen.old-1345709489/README.incompatibilities
dist/install/etc/xen.old-1345709489/scripts
dist/install/etc/xen.old-1345709489/scripts/blktap
dist/install/etc/xen.old-1345709489/scripts/block
dist/install/etc/xen.old-1345709489/scripts/block-common.sh
dist/install/etc/xen.old-1345709489/scripts/block-enbd
dist/install/etc/xen.old-1345709489/scripts/block-nbd
dist/install/etc/xen.old-1345709489/scripts/external-device-migrate
dist/install/etc/xen.old-1345709489/scripts/hotplugpath.sh
dist/install/etc/xen.old-1345709489/scripts/locking.sh
dist/install/etc/xen.old-1345709489/scripts/logging.sh
dist/install/etc/xen.old-1345709489/scripts/network-bridge
dist/install/etc/xen.old-1345709489/scripts/network-nat
dist/install/etc/xen.old-1345709489/scripts/network-route
dist/install/etc/xen.old-1345709489/scripts/qemu-ifup
dist/install/etc/xen.old-1345709489/scripts/vif2
dist/install/etc/xen.old-1345709489/scripts/vif-bridge
dist/install/etc/xen.old-1345709489/scripts/vif-common.sh
dist/install/etc/xen.old-1345709489/scripts/vif-nat
dist/install/etc/xen.old-1345709489/scripts/vif-route
dist/install/etc/xen.old-1345709489/scripts/vif-setup
dist/install/etc/xen.old-1345709489/scripts/vscsi
dist/install/etc/xen.old-1345709489/scripts/vtpm
dist/install/etc/xen.old-1345709489/scripts/vtpm-common.sh
dist/install/etc/xen.old-1345709489/scripts/vtpm-delete
dist/install/etc/xen.old-1345709489/scripts/vtpm-hotplug-common.sh
dist/install/etc/xen.old-1345709489/scripts/vtpm-impl
dist/install/etc/xen.old-1345709489/scripts/vtpm-migration.sh
dist/install/etc/xen.old-1345709489/scripts/xen-hotplug-cleanup
dist/install/etc/xen.old-1345709489/scripts/xen-hotplug-common.sh
dist/install/etc/xen.old-1345709489/scripts/xen-network-common.sh
dist/install/etc/xen.old-1345709489/scripts/xen-script-common.sh
dist/install/etc/xen.old-1345709489/xend-config.sxp
dist/install/etc/xen.old-1345709489/xend-pci-permissive.sxp
dist/install/etc/xen.old-1345709489/xend-pci-quirks.sxp
dist/install/etc/xen.old-1345709489/xl.conf
dist/install/etc/xen.old-1345709489/xlexample.hvm
dist/install/etc/xen.old-1345709489/xlexample.pvlinux
dist/install/etc/xen.old-1345709489/xm-config.xml
dist/install/etc/xen.old-1345709489/xmexample1
dist/install/etc/xen.old-1345709489/xmexample2
dist/install/etc/xen.old-1345709489/xmexample3
dist/install/etc/xen.old-1345709489/xmexample.hvm
dist/install/etc/xen.old-1345709489/xmexample.hvm-stubdom
dist/install/etc/xen.old-1345709489/xmexample.nbd
dist/install/etc/xen.old-1345709489/xmexample.pv-grub
dist/install/etc/xen.old-1345709489/xmexample.vti
dist/install/usr
dist/install/usr/bin
dist/install/usr/bin/remus
dist/install/usr/include
dist/install/usr/include/blktaplib.h
dist/install/usr/include/fsimage_grub.h
dist/install/usr/include/fsimage.h
dist/install/usr/include/fsimage_plugin.h
dist/install/usr/include/libxenvchan.h
dist/install/usr/include/xenstore-compat
dist/install/usr/lib
dist/install/usr/lib/fs
dist/install/usr/lib/fs/ext2fs
dist/install/usr/lib/fs/ext2fs/fsimage.so
dist/install/usr/lib/fs/fat
dist/install/usr/lib/fs/fat/fsimage.so
dist/install/usr/lib/fs/iso9660
dist/install/usr/lib/fs/iso9660/fsimage.so
dist/install/usr/lib/fs/reiserfs
dist/install/usr/lib/fs/reiserfs/fsimage.so
dist/install/usr/lib/fs/ufs
dist/install/usr/lib/fs/ufs/fsimage.so
dist/install/usr/lib/fs/xfs
dist/install/usr/lib/fs/xfs/fsimage.so
dist/install/usr/lib/fs/zfs
dist/install/usr/lib/fs/zfs/fsimage.so
dist/install/usr/lib/libblktap.a
dist/install/usr/lib/libblktapctl.a
dist/install/usr/lib/libblktapctl.so
dist/install/usr/lib/libblktapctl.so.1.0
dist/install/usr/lib/libblktapctl.so.1.0.0
dist/install/usr/lib/libblktap.so
dist/install/usr/lib/libblktap.so.3.0
dist/install/usr/lib/libblktap.so.3.0.0
dist/install/usr/lib/libfsimage.so
dist/install/usr/lib/libfsimage.so.1.0
dist/install/usr/lib/libfsimage.so.1.0.0
dist/install/usr/lib/libvhd.a
dist/install/usr/lib/libvhd.so
dist/install/usr/lib/libvhd.so.1.0
dist/install/usr/lib/libvhd.so.1.0.0
dist/install/usr/lib/libxenctrl.a
dist/install/usr/lib/libxenctrl.so
dist/install/usr/lib/libxenctrl.so.4.2
dist/install/usr/lib/libxenctrl.so.4.2.0
dist/install/usr/lib/libxenguest.a
dist/install/usr/lib/libxenguest.so
dist/install/usr/lib/libxenguest.so.4.2
dist/install/usr/lib/libxenguest.so.4.2.0
dist/install/usr/lib/libxenlight.a
dist/install/usr/lib/libxenlight.so
dist/install/usr/lib/libxenlight.so.2.0
dist/install/usr/lib/libxenlight.so.2.0.0
dist/install/usr/lib/libxenstat.a
dist/install/usr/lib/libxenstat.so
dist/install/usr/lib/libxenstat.so.0
dist/install/usr/lib/libxenstat.so.0.0
dist/install/usr/lib/libxenstore.a
dist/install/usr/lib/libxenstore.so
dist/install/usr/lib/libxenstore.so.3.0
dist/install/usr/lib/libxenstore.so.3.0.1
dist/install/usr/lib/libxenvchan.a
dist/install/usr/lib/libxenvchan.so
dist/install/usr/lib/libxenvchan.so.1.0
dist/install/usr/lib/libxenvchan.so.1.0.0
dist/install/usr/lib/libxlutil.a
dist/install/usr/lib/libxlutil.so
dist/install/usr/lib/libxlutil.so.1.0
dist/install/usr/lib/libxlutil.so.1.0.0
dist/install/usr/lib/python2.6
dist/install/usr/lib/python2.6/dist-packages
dist/install/usr/lib/python2.6/dist-packages/fsimage.so
dist/install/usr/lib/python2.6/dist-packages/grub
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/ExtLinuxConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/GrubConf.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.py
dist/install/usr/lib/python2.6/dist-packages/grub/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.py
dist/install/usr/lib/python2.6/dist-packages/grub/LiloConf.pyc
dist/install/usr/lib/python2.6/dist-packages/pygrub-0.3.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen
dist/install/usr/lib/python2.6/dist-packages/xen-3.0.egg-info
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/checkpoint.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/flask.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/netlink.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/ptsname.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xc.so
dist/install/usr/lib/python2.6/dist-packages/xen/lowlevel/xs.so
dist/install/usr/lib/python2.6/dist-packages/xen/remus
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/blkdev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/device.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/netlink.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/profile.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/qdisc.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/save.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/tapdisk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vbd.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vdi.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.py
dist/install/usr/lib/python2.6/dist-packages/xen/remus/vm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/CreateDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/DomInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/GenTabbed.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/HTMLBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/NodeInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/RestoreDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.py
dist/install/usr/lib/python2.6/dist-packages/xen/sv/Wizard.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/acmpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/asserts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/auxbin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/Brctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/bugtool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/diagnose.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/dictio.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/fileuri.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/ip.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mac.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/mkdir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/oshelp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/path.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/pci.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/rwlock.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/SSHTransport.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/sxputils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/utils.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vscsi_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/vusb_util.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpcclient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xmlrpclib2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xpopen.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsconstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/acm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/acm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/dummy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/dummy/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/flask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/flask/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm_core.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xsm/xsm.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/util/xspolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/connection.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/http.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/httpserver.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/protocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/resource.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/SrvDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/static.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/tcp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.py
dist/install/usr/lib/python2.6/dist-packages/xen/web/unix.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/arch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Args.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/balloon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/encode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/image.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/MemoryPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/osdep.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/PrettyPrint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/blkif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/BlktapController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/ConsoleController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/DevController.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/iopif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/irqif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif2.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/netif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/params.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/pciquirk.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/relocate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDaemon.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomainDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvRoot.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvVnetDir.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SrvXendLog.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/SSLXMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tests/test_controllers.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/tpmif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/udevevent.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vfbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vscsiif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/vusbif.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/server/XMLRPCServer.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_sxp.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/tests/test_XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/uuid.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/Vifctl.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAPIVersion.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendAuthSessions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBase.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendBootloader.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendClient.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendConstants.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendCPUPool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDevices.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDmesg.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDomain.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendDSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendError.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLocalStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendLogging.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendMonitor.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNetwork.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendNode.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendOptions.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPBD.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIFMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPIF.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPPCI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendProtocol.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendPSCSI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendQCoWStorageRepo.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStateStore.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendStorageRepository.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendSXPDev.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTaskManager.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendTask.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVDI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVMMetrics.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendVnet.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicyAdmin.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/XendXSPolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/tests/stress_xs.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xsutil.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.py
dist/install/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xswatch.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/addlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/console.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool-new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/cpupool.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dry-run.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/dumppolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/getpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/help.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/labels.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/migrate.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/new.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/opts.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resetpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/resources.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/rmlabel.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setenforce.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/setpolicy.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/shutdown.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/tests/test_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/xenapi_create.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.py
dist/install/usr/lib/python2.6/dist-packages/xen/xm/XenAPI.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/__init__.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/main.pyc
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.py
dist/install/usr/lib/python2.6/dist-packages/xen/xsview/xsviewer.pyc
dist/install/usr/lib/xen
dist/install/usr/lib/xen/bin
dist/install/usr/lib/xen/bin/libxl-save-helper
dist/install/usr/lib/xen/bin/lsevtchn
dist/install/usr/lib/xen/bin/pygrub
dist/install/usr/lib/xen/bin/qemu-dm
dist/install/usr/lib/xen/bin/qemu-ga
dist/install/usr/lib/xen/bin/qemu-img
dist/install/usr/lib/xen/bin/qemu-io
dist/install/usr/lib/xen/bin/qemu-nbd
dist/install/usr/lib/xen/bin/qemu-system-i386
dist/install/usr/lib/xen/bin/readnotes
dist/install/usr/lib/xen/bin/xc_restore
dist/install/usr/lib/xen/bin/xc_save
dist/install/usr/lib/xen/boot
dist/install/usr/lib/xen/boot/hvmloader
dist/install/usr/local
dist/install/usr/local/etc
dist/install/usr/local/etc/qemu
dist/install/usr/local/etc/qemu/target-x86_64.conf
dist/install/usr/local/lib
dist/install/usr/local/lib/ocaml
dist/install/usr/local/lib/ocaml/3.11.2
dist/install/usr/local/lib/ocaml/3.11.2/xenbus
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/dllxenbus_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/libxenbus_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/META
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.a
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenbus/xenbus.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/dllxenctrl_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/libxenctrl_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/META
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.a
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenctrl/xenctrl.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/dllxeneventchn_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/libxeneventchn_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/META
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.a
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cma
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xeneventchn/xeneventchn.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenlight
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/dllxenlight_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/libxenlight_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/META
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.a
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenlight/xenlight.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/dllxenmmap_stubs.so
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/libxenmmap_stubs.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/META
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.a
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenmmap/xenmmap.cmxa
dist/install/usr/local/lib/ocaml/3.11.2/xenstore
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/META
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.a
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cma
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmi
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmo
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmx
dist/install/usr/local/lib/ocaml/3.11.2/xenstore/xenstore.cmxa
dist/install/usr/local/share
dist/install/usr/local/share/doc
dist/install/usr/local/share/doc/qemu
dist/install/usr/local/share/doc/qemu/qemu-doc.html
dist/install/usr/local/share/doc/qemu/qemu-tech.html
dist/install/usr/local/share/man
dist/install/usr/local/share/man/man1
dist/install/usr/local/share/man/man1/qemu.1
dist/install/usr/local/share/man/man1/qemu-img.1
dist/install/usr/local/share/man/man8
dist/install/usr/local/share/man/man8/qemu-nbd.8
dist/install/usr/sbin
dist/install/usr/sbin/blktapctrl
dist/install/usr/sbin/flask-get-bool
dist/install/usr/sbin/flask-getenforce
dist/install/usr/sbin/flask-label-pci
dist/install/usr/sbin/flask-loadpolicy
dist/install/usr/sbin/flask-set-bool
dist/install/usr/sbin/flask-setenforce
dist/install/usr/sbin/gdbsx
dist/install/usr/sbin/gtracestat
dist/install/usr/sbin/gtraceview
dist/install/usr/sbin/img2qcow
dist/install/usr/sbin/kdd
dist/install/usr/sbin/lock-util
dist/install/usr/sbin/oxenstored
dist/install/usr/sbin/qcow2raw
dist/install/usr/sbin/qcow-create
dist/install/usr/sbin/tap-ctl
dist/install/usr/sbin/tapdisk
dist/install/usr/sbin/tapdisk2
dist/install/usr/sbin/tapdisk-client
dist/install/usr/sbin/tapdisk-diff
dist/install/usr/sbin/tapdisk-stream
dist/install/usr/sbin/td-util
dist/install/usr/sbin/vhd-update
dist/install/usr/sbin/vhd-util
dist/install/usr/sbin/xl
dist/install/usr/sbin/xsview
dist/install/usr/share
dist/install/usr/share/doc
dist/install/usr/share/man
dist/install/usr/share/man/man1
dist/install/usr/share/man/man8
dist/install/var
dist/install/var/lib
dist/install/var/lock
dist/install/var/lock/subsys
dist/install/var/log
dist/install/var/log/xen
dist/install/var/run
dist/install/var/xen
dist/install/var/xen/dump
[-- Attachment #5: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 7:59 ` Ian Campbell
2012-08-23 8:23 ` Ian Campbell
2012-08-23 8:24 ` Ian Campbell
@ 2012-08-24 20:00 ` Jan Beulich
2 siblings, 0 replies; 10+ messages in thread
From: Jan Beulich @ 2012-08-24 20:00 UTC (permalink / raw)
To: Ian Campbell; +Cc: p.d@gmx.de, xen-devel@lists.xen.org
>>> On 23.08.12 at 09:59, Ian Campbell <Ian.Campbell@citrix.com> wrote:
> On Thu, 2012-08-23 at 08:31 +0100, Ian Campbell wrote:
>> On Thu, 2012-08-23 at 08:04 +0100, Jan Beulich wrote:
>> > >>> Ian Campbell <Ian.Campbell@citrix.com> 08/23/12 8:40 AM >>>
>> > >--- a/Makefile Wed Aug 22 17:32:37 2012 +0100
>> > >+++ b/Makefile Thu Aug 23 07:38:10 2012 +0100
>> > >@@ -228,8 +228,6 @@ uninstall:
>> > > rm -f $(D)$(SYSCONFIG_DIR)/xendomains
>> > > rm -f $(D)$(SYSCONFIG_DIR)/xencommons
>> > > rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
>> > >- rm -rf $(D)/boot/*xen*
>> >
>> > But removing this line without replacement isn't right either - we at least
>> > need to undo what "make install" did. That may imply adding an
>> > uninstall-xen sub-target,
>>
>> Right, I totally forgot about the hypervisor itself!
>>
>> Perhaps this target should include a
>> $(MAKE) -C xen uninstall
>> since that is the Makefile which knows how to undo its own install
>> target.
>
> Like this, which handles EFI too but not (yet) tools.
Looks good to me (also the tools one you sent later).
Thanks, Jan
> make dist-xen
> make DESTDIR=$(pwd)/dist/install uninstall
>
> Leaves just the dist/install/boot dir which I don't think we need to
> bother cleaning up (I don't think rmdir --ignore-fail-on-non-empty is
> portable).
>
> 8<------------------------------------
> # HG changeset patch
> # User Ian Campbell <ian.campbell@citrix.com>
> # Date 1345708184 -3600
> # Node ID 101956baa3469f5f338c661f1ceab23077bd432b
> # Parent 9cb256660bfcfdf20f869ea28881115d622ef1a4
> do not remove kernels or modules on uninstall.
>
> The pattern used is very broad and will delete any kernel with xen in
> its filename, likewise modules, including those which come packages
> from the distribution etc.
>
> I don't think this was ever the right thing to do but it is doubly
> wrong now that Xen does not even build or install a kernel by default.
>
> Push cleanup of the installed hypervisor down into xen/Makefile so that
> it can cleanup exactly what it actually installs.
>
> Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
>
> diff -r 9cb256660bfc -r 101956baa346 Makefile
> --- a/Makefile Thu Aug 23 08:28:42 2012 +0100
> +++ b/Makefile Thu Aug 23 08:49:44 2012 +0100
> @@ -220,6 +220,7 @@ help:
> uninstall: D=$(DESTDIR)
> uninstall:
> [ -d $(D)$(XEN_CONFIG_DIR) ] && mv -f $(D)$(XEN_CONFIG_DIR)
> $(D)$(XEN_CONFIG_DIR).old-`date +%s` || true
> + $(MAKE) -C xen uninstall
> rm -rf $(D)$(CONFIG_DIR)/init.d/xendomains $(D)$(CONFIG_DIR)/init.d/xend
> rm -rf $(D)$(CONFIG_DIR)/init.d/xencommons
> $(D)$(CONFIG_DIR)/init.d/xen-watchdog
> rm -rf $(D)$(CONFIG_DIR)/hotplug/xen-backend.agent
> @@ -228,8 +229,6 @@ uninstall:
> rm -f $(D)$(SYSCONFIG_DIR)/xendomains
> rm -f $(D)$(SYSCONFIG_DIR)/xencommons
> rm -rf $(D)/var/run/xen* $(D)/var/lib/xen*
> - rm -rf $(D)/boot/*xen*
> - rm -rf $(D)/lib/modules/*xen*
> rm -rf $(D)$(LIBDIR)/xen* $(D)$(BINDIR)/lomount
> rm -rf $(D)$(BINDIR)/cpuperf-perfcntr $(D)$(BINDIR)/cpuperf-xen
> rm -rf $(D)$(BINDIR)/xc_shadow
> diff -r 9cb256660bfc -r 101956baa346 xen/Makefile
> --- a/xen/Makefile Thu Aug 23 08:28:42 2012 +0100
> +++ b/xen/Makefile Thu Aug 23 08:49:44 2012 +0100
> @@ -20,8 +20,8 @@ default: build
> .PHONY: dist
> dist: install
>
> -.PHONY: build install clean distclean cscope TAGS tags MAP gtags
> -build install debug clean distclean cscope TAGS tags MAP gtags::
> +.PHONY: build install uninstall clean distclean cscope TAGS tags MAP gtags
> +build install uninstall debug clean distclean cscope TAGS tags MAP gtags::
> $(MAKE) -f Rules.mk _$@
>
> .PHONY: _build
> @@ -48,6 +48,21 @@ _install: $(TARGET).gz
> fi; \
> fi
>
> +.PHONY: _uninstall
> +_uninstall: D=$(DESTDIR)
> +_uninstall: T=$(notdir $(TARGET))
> +_uninstall:
> + rm -f $(D)/boot/$(T)-$(XEN_FULLVERSION).gz
> + rm -f $(D)/boot/$(T)-$(XEN_VERSION).$(XEN_SUBVERSION).gz
> + rm -f $(D)/boot/$(T)-$(XEN_VERSION).gz
> + rm -f $(D)/boot/$(T).gz
> + rm -f $(D)/boot/$(T)-syms-$(XEN_FULLVERSION)
> + rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_FULLVERSION).efi
> + rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_VERSION).$(XEN_SUBVERSION).efi
> + rm -f $(D)$(EFI_DIR)/$(T)-$(XEN_VERSION).efi
> + rm -f $(D)$(EFI_DIR)/$(T).efi
> + rm -f $(D)$(EFI_MOUNTPOINT)/efi/$(EFI_VENDOR)/$(T)-$(XEN_FULLVERSION).efi
> +
> .PHONY: _debug
> _debug:
> objdump -D -S $(TARGET)-syms > $(TARGET).s
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-23 8:23 ` Ian Campbell
@ 2012-08-30 15:31 ` Ian Jackson
2012-08-31 9:42 ` Ian Campbell
0 siblings, 1 reply; 10+ messages in thread
From: Ian Jackson @ 2012-08-30 15:31 UTC (permalink / raw)
To: Ian Campbell; +Cc: p.d@gmx.de, Jan Beulich, xen-devel@lists.xen.org
Ian Campbell writes ("Re: [Xen-devel] [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)"):
> That broader rework is certainly a post 4.2 thing IMHO. I'm in two minds
> about this patch as a 4.2 thing, but given that the regression happened
> due to the switch to autoconf in 4.2 I think it might be good to take,
> even though as a %age of what we install the delta is pretty
> insignificant.
I'm happy with both of these for 4.2.
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Ian.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)
2012-08-30 15:31 ` Ian Jackson
@ 2012-08-31 9:42 ` Ian Campbell
0 siblings, 0 replies; 10+ messages in thread
From: Ian Campbell @ 2012-08-31 9:42 UTC (permalink / raw)
To: Ian Jackson; +Cc: p.d@gmx.de, Jan Beulich, xen-devel@lists.xen.org
On Thu, 2012-08-30 at 16:31 +0100, Ian Jackson wrote:
> Ian Campbell writes ("Re: [Xen-devel] [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels)"):
> > That broader rework is certainly a post 4.2 thing IMHO. I'm in two minds
> > about this patch as a 4.2 thing, but given that the regression happened
> > due to the switch to autoconf in 4.2 I think it might be good to take,
> > even though as a %age of what we install the delta is pretty
> > insignificant.
>
> I'm happy with both of these for 4.2.
>
> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Thanks, applied with this and
Looks-good: Jan Beulich <jbeulich@suse.com>
Ian.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2012-08-31 9:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-22 21:47 make uninstall can delete xen-kernels p.d
2012-08-23 6:39 ` [PATCH] do not remove kernels or modules on uninstall. (Was: Re: make uninstall can delete xen-kernels) Ian Campbell
2012-08-23 7:04 ` Jan Beulich
2012-08-23 7:31 ` Ian Campbell
2012-08-23 7:59 ` Ian Campbell
2012-08-23 8:23 ` Ian Campbell
2012-08-30 15:31 ` Ian Jackson
2012-08-31 9:42 ` Ian Campbell
2012-08-23 8:24 ` Ian Campbell
2012-08-24 20:00 ` Jan Beulich
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).