[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 2/2] oss-test: add FreeBSD PVHVM installer
On 21/11/13 12:48, Roger Pau Monne wrote: > Signed-off-by: Roger Pau Monnà <roger.pau@xxxxxxxxxx> > Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> > Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> > --- > Images have to be placed in $freebsd_vm_repo, currently it expects to > find: > > ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/VM-IMAGES/10.0-BETA3/i386/20131103/FreeBSD-10.0-BETA3-i386-20131103-r257580.qcow2.xz > as > FreeBSD-10.0-BETA3-i386.qcow2.xz > and > ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/VM-IMAGES/10.0-BETA3/amd64/20131103/FreeBSD-10.0-BETA3-amd64-20131103-r257580.qcow2.xz > as > FreeBSD-10.0-BETA3-amd64.qcow2.xz > --- > ts-freebsd-install | 109 > ++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 files changed, 109 insertions(+), 0 deletions(-) > create mode 100644 ts-freebsd-install > > diff --git a/ts-freebsd-install b/ts-freebsd-install > new file mode 100644 > index 0000000..4e32b6c > --- /dev/null > +++ b/ts-freebsd-install > @@ -0,0 +1,109 @@ > +#!/usr/bin/perl -w > +# This is part of "osstest", an automated testing framework for Xen. > +# Copyright (C) 2009-2013 Citrix Inc. > +# > +# This program is free software: you can redistribute it and/or modify > +# it under the terms of the GNU Affero General Public License as published by > +# the Free Software Foundation, either version 3 of the License, or > +# (at your option) any later version. > +# > +# This program is distributed in the hope that it will be useful, > +# but WITHOUT ANY WARRANTY; without even the implied warranty of > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +# GNU Affero General Public License for more details. > +# > +# You should have received a copy of the GNU Affero General Public License > +# along with this program. If not, see <http://www.gnu.org/licenses/>. > + > +use strict qw(vars); > +use DBI; > +use Osstest; > +use Osstest::TestSupport; > + > +tsreadconfig(); > + > +our ($whhost,$gn) = @ARGV; > +$whhost ||= 'host'; > +$gn ||= 'freebsd'; > + > +our $ho= selecthost($whhost); > + > +our $ram_mb= 1024; > +our $disk_mb= 20480; > + > +our $guesthost= "$gn.guest.osstest"; > +our $gho; > + > +our $xl= toolstack()->{Command}; The line above is not needed at all, I've just used it for testing, could you remove it when committing Ian? Thanks. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |