From: Ian Campbell <ian.campbell@citrix.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
George Dunlap <george.dunlap@eu.citrix.com>
Cc: Stefano Stabellini <stefano.stabellini@citrix.com>,
George Dunlap <george.dunlap@citrix.com>,
xen-devel@lists.xen.org
Subject: Re: [PATCH 2/5] raisin: Detect systemd
Date: Fri, 16 Oct 2015 15:02:02 +0100 [thread overview]
Message-ID: <1445004122.12442.83.camel@citrix.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1510161438131.27957@kaball.uk.xensource.com>
On Fri, 2015-10-16 at 14:39 +0100, Stefano Stabellini wrote:
> On Wed, 14 Oct 2015, George Dunlap wrote:
> > Add systemd development libraries if we detect systemd present on the
> > system
> >
> > Signed-off-by: George Dunlap <george.dunlap@citrix.com>
>
> Please use spaces for indentation
>
>
> > components/xen | 10 ++++++++++
> > 1 file changed, 10 insertions(+)
> >
> > diff --git a/components/xen b/components/xen
> > index 090cceb..93ed288 100644
> > --- a/components/xen
> > +++ b/components/xen
> > @@ -8,6 +8,11 @@ function xen_check_package() {
> > local DEP_Debian_common="build-essential python-dev gettext uuid
> > -dev \
> > libncurses5-dev libyajl-dev libaio-dev pkg-config
> > libglib2.0-dev \
> > libssl-dev libpixman-1-dev bridge-utils wget"
> > +
> > + if [[ -e "/usr/lib/systemd" ]]
>
> I don't know much about systemd but isn't there a better way to detect
> systemd? Check if it is running for example?
You might want to build with systemd support even if systemd isn't actually
the current init system the system was booted with?
>
>
> > + then
> > + DEP_Debian_common="$DEP_Debian_common libsystemd-daemon-dev"
> > + fi
> > local DEP_Debian_x86_32="$DEP_Debian_common bcc iasl bin86
> > texinfo"
> > local DEP_Debian_x86_64="$DEP_Debian_x86_32 libc6-dev-i386"
> > local DEP_Debian_arm32="$DEP_Debian_common libfdt-dev"
> > @@ -16,6 +21,10 @@ function xen_check_package() {
> > local DEP_Fedora_common="make gcc python-devel gettext libuuid
> > -devel \
> > ncurses-devel glib2-devel libaio-devel openssl-devel yajl
> > -devel \
> > patch pixman-devel glibc-devel bridge-utils grub2 wget
> > tar bzip2"
> > + if [[ -e "/usr/lib/systemd" ]]
> > + then
> > + DEP_Fedora_common="$DEP_Fedora_common systemd-devel|systemd
> > -container-devel"
> > + fi
> > local DEP_Fedora_x86_32="$DEP_Fedora_common dev86 acpica-tools
> > texinfo"
> > local DEP_Fedora_x86_64="$DEP_Fedora_x86_32 glibc-devel.i686"
> >
> > @@ -23,6 +32,7 @@ function xen_check_package() {
> > local DEP_CentOS_x86_32="$DEP_CentOS_common dev86 texinfo iasl"
> > local DEP_CentOS_x86_64="$DEP_CentOS_x86_32 glibc-devel.i686"
> >
> > +
>
> spurious change
>
>
> > verbose_echo Checking Xen dependencies
> > eval check-package \$DEP_"$DISTRO"_"$RAISIN_ARCH"
> > }
next prev parent reply other threads:[~2015-10-16 14:02 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-14 16:21 [PATCH 0/5] raisin: Miscelaneous improvements George Dunlap
2015-10-14 16:21 ` [PATCH 1/5] raisin: Handle aliases for packages, add pciutils-dev / libpci-dev alias George Dunlap
2015-10-16 13:37 ` Stefano Stabellini
2015-10-19 9:52 ` George Dunlap
2015-10-14 16:21 ` [PATCH 2/5] raisin: Detect systemd George Dunlap
2015-10-14 16:34 ` George Dunlap
2015-10-16 13:41 ` Stefano Stabellini
2015-10-19 9:54 ` George Dunlap
2015-10-19 11:09 ` Stefano Stabellini
2015-10-16 13:39 ` Stefano Stabellini
2015-10-16 14:02 ` Ian Campbell [this message]
2015-10-16 14:04 ` Stefano Stabellini
2015-10-19 10:01 ` George Dunlap
2015-10-19 11:15 ` Stefano Stabellini
2015-10-14 16:21 ` [PATCH 3/5] raisin: Allow iasl to alias acpica-tools, unify Fedora and CentOS deps for xen George Dunlap
2015-10-16 13:42 ` Stefano Stabellini
2015-10-14 16:21 ` [PATCH 4/5] raisin: Change update/release parsing OSes George Dunlap
2015-10-16 13:49 ` Stefano Stabellini
2015-10-19 9:16 ` George Dunlap
2015-10-19 11:26 ` Stefano Stabellini
2015-10-19 11:39 ` George Dunlap
2015-10-14 16:21 ` [PATCH 5/5] raisin: Add XEN_CONFIG_EXTRA to config file George Dunlap
2015-10-16 13:53 ` Stefano Stabellini
2015-10-19 9:24 ` George Dunlap
2015-10-19 11:37 ` Stefano Stabellini
2015-10-19 11:42 ` George Dunlap
2015-10-19 11:49 ` Stefano Stabellini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1445004122.12442.83.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=george.dunlap@citrix.com \
--cc=george.dunlap@eu.citrix.com \
--cc=stefano.stabellini@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.