From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] Interesting circular dependency, how to solve?
Date: Wed, 6 Jul 2016 17:56:17 +0200 [thread overview]
Message-ID: <20160706175617.67b0e1ea@free-electrons.com> (raw)
Hello all,
Today, Paul (in Cc) reported on IRC an interesting problem: on a
configuration with systemd enabled (and acting as udev provider),
pciutils would fail to build due to libudev.h being missing.
After some investigation, "make graph-depends" revealed the origin of
the problem: a very interesting circular dependency. Here is what make
graph-depends thinks of the situation:
Recursion detected for : systemd
which is a dependency of: udev
which is a dependency of: pciutils
which is a dependency of: linux
which is a dependency of: cryptodev-linux
which is a dependency of: openssl
which is a dependency of: libcurl
which is a dependency of: systemd
So, starting from the bottom:
- When libcurl is enabled, systemd depends on it
- When OpenSSL is enabled, obviously, libcurl will use it for SSL
support
- When cryptodev-linux is enabled, OpenSSL will depend on it to use
crypto accelerators supported in the kernel via cryptodev-linux.
- cryptodev-linux being a kernel module, it depends on linux
- linux by itself (the kernel) does not depend on pciutils, but the
linux tool "cpupower" (managed in linux-tool-cpupower) depends on
pciutils
- pciutils depends on udev when available
- udev is provided by systemd.
So we have a dependency loop. This was not detected in the autobuilders
because it requires the linux package to be enabled to trigger.
I'm not sure where to break the dependency loop here. The real problem
is that cryptodev-linux does *NOT* require cpupower, it only needs the
kernel itself. Does this means that our current architecture for
packaging "tools" whose source code is part of the kernel as part of
the "linux" package is wrong ?
Do you have some suggestions or ideas on how to solve this ? The only
two solutions that I can find is:
- Arbitrarily break this dependency loop by removing some
functionality (but I'm not sure where)
- Moving the cpupower build logic outside of the linux package.
The other question is how we can improve our autobuilder testing to
detect such situations.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next reply other threads:[~2016-07-06 15:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-06 15:56 Thomas Petazzoni [this message]
2016-07-06 17:54 ` [Buildroot] Interesting circular dependency, how to solve? ANDY KENNEDY
2016-07-06 18:20 ` Thomas Petazzoni
2016-07-06 19:25 ` ANDY KENNEDY
2016-07-07 17:00 ` Yann E. MORIN
2016-07-07 19:26 ` Thomas Petazzoni
2016-07-07 23:25 ` Yann E. MORIN
2016-07-07 16:33 ` Yann E. MORIN
2016-07-07 17:33 ` Yann E. MORIN
2016-07-07 19:31 ` Thomas Petazzoni
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=20160706175617.67b0e1ea@free-electrons.com \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox