From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH v8 1/2] OSSTEST: introduce a raisin build test Date: Tue, 4 Aug 2015 09:35:52 +0100 Message-ID: <1438677352.31129.42.camel@citrix.com> References: <1437670366-29034-1-git-send-email-stefano.stabellini@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1437670366-29034-1-git-send-email-stefano.stabellini@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Stefano Stabellini , xen-devel@lists.xen.org Cc: wei.liu2@citrix.com, ian.jackson@eu.citrix.com List-Id: xen-devel@lists.xenproject.org On Thu, 2015-07-23 at 17:52 +0100, Stefano Stabellini wrote: > diff --git a/ts-xen-build b/ts-xen-build > index e757f68..10fc95b 100755 > --- a/ts-xen-build > +++ b/ts-xen-build > @@ -145,36 +145,6 @@ sub collectversions () { > store_revision($ho, 'ovmf', "$tools/firmware/ovmf-dir", 1); > } > > -sub divide () { FYI this needs rebasing over "Collect xen.efi into xendist and install in appropriate place". > - # Only move hv to xeninstall, so that we can have > - # xenpolicy in tools tarball. > - # > - # The files inside boot/ after `make dist' are > - # xen-$XEN_VERSION: Xen binary > - # xen.gz/xen: symlink to xen-$XEN_VERSION > - # xen-$MAJOR: symlink to xen-$XEN_VERSION > - # xen-$MAJOR.$MINOR: symlink to xen-$XEN_VERSION > - # xen-sym-$XEN_VERSION: Xen symbol > - # xenpolicy-$XEN_VERSION: flask policy binary if xsm is enabled > - # > - # So the following snippet will leave xenpolicy* in > - # install/boot and get packaged to tools tarball. > - target_cmd_build($ho, 100, $builddir, < - cd xen/dist > - mkdir xeninstall > - for f in *install; do > - mkdir -p \$f/lib > - done > - if test -d install/boot; then > - if test -f install/boot/xen.gz || test -f install/boot/xen; > then > - mkdir xeninstall/boot > - mvfiles=`find install/boot -name 'xen[a-z]*' -prune -o > -name 'xen*' -print` > - mv \$mvfiles xeninstall/boot/. > - fi > - fi > -END > -} > -