[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH RFC 3/4] osstest: prepare FreeBSD host for Xen build
Install pkg (the binary package management tool) and the dependencies needed to build Xen. Signed-off-by: Roger Pau Monnà <roger.pau@xxxxxxxxxx> Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- ts-xen-build-prep-freebsd | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) create mode 100755 ts-xen-build-prep-freebsd diff --git a/ts-xen-build-prep-freebsd b/ts-xen-build-prep-freebsd new file mode 100755 index 0000000..326b194 --- /dev/null +++ b/ts-xen-build-prep-freebsd @@ -0,0 +1,44 @@ +#!/usr/bin/perl -w +# This is part of "osstest", an automated testing framework for Xen. +# Copyright (C) 2009-2014 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 POSIX; + +use Osstest; +use Osstest::TestSupport; +use Osstest::Logtailer; + +tsreadconfig(); + +our ($whhost) = @ARGV; +$whhost ||= 'host'; +our $ho= selecthost($whhost); +exit 0 if $ho->{SharedReady}; + +#TODO: should be a runvar +our $compiler = 'gcc47'; + +sub install_depends () { + logm('Installing Xen build dependencies'); + target_cmd_root($ho, <<END, 2400); + setenv ASSUME_ALWAYS_YES "YES" + pkg install -y mercurial git bash python bcc glib pkgconf yajl gmake pixman $compiler +END +} + +install_depends(); -- 1.7.7.5 (Apple Git-26) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |