* [PATCH] systemd: remove usbutils dependancy
@ 2013-01-24 10:44 ml
2013-01-24 12:02 ` Burton, Ross
2013-01-24 12:26 ` Martin Jansa
0 siblings, 2 replies; 3+ messages in thread
From: ml @ 2013-01-24 10:44 UTC (permalink / raw)
To: openembedded-core; +Cc: Jack Mitchell
From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
No where in the systemd readme does it specify that usbutils
is a dependancy of systemd. I can only guess that it was added
due to an issue elsewhere in the chain or it was brought in
when udev was merged and the dependancies never checked.
I have build tested this with no issues.
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
---
meta/recipes-core/systemd/systemd_196.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-core/systemd/systemd_196.bb b/meta/recipes-core/systemd/systemd_196.bb
index a78a8a6..9eca25b 100644
--- a/meta/recipes-core/systemd/systemd_196.bb
+++ b/meta/recipes-core/systemd/systemd_196.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \
PROVIDES = "udev"
-DEPENDS = "xz kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers usbutils glib-2.0 libgcrypt"
+DEPENDS = "xz kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers glib-2.0 libgcrypt"
DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
SECTION = "base/shell"
--
1.8.1.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] systemd: remove usbutils dependancy
2013-01-24 10:44 [PATCH] systemd: remove usbutils dependancy ml
@ 2013-01-24 12:02 ` Burton, Ross
2013-01-24 12:26 ` Martin Jansa
1 sibling, 0 replies; 3+ messages in thread
From: Burton, Ross @ 2013-01-24 12:02 UTC (permalink / raw)
To: ml; +Cc: Jack Mitchell, openembedded-core
On 24 January 2013 10:44, <ml@communistcode.co.uk> wrote:
> No where in the systemd readme does it specify that usbutils
> is a dependancy of systemd. I can only guess that it was added
> due to an issue elsewhere in the chain or it was brought in
> when udev was merged and the dependancies never checked.
>
> I have build tested this with no issues.
Build-tested from a clean sysroot?
Ross
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] systemd: remove usbutils dependancy
2013-01-24 10:44 [PATCH] systemd: remove usbutils dependancy ml
2013-01-24 12:02 ` Burton, Ross
@ 2013-01-24 12:26 ` Martin Jansa
1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2013-01-24 12:26 UTC (permalink / raw)
To: ml; +Cc: Jack Mitchell, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2118 bytes --]
On Thu, Jan 24, 2013 at 10:44:38AM +0000, ml@communistcode.co.uk wrote:
> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
>
> No where in the systemd readme does it specify that usbutils
> is a dependancy of systemd. I can only guess that it was added
> due to an issue elsewhere in the chain or it was brought in
> when udev was merged and the dependancies never checked.
It was needed for older systemd revisions:
http://git.openembedded.org/meta-openembedded/commit/?id=ec2459251c68bb090c8b6f0d6cbf5ea0c2486337
http://cgit.freedesktop.org/systemd/systemd/tree/configure.ac?id=cd96b3b86abb4a88cac2722bdfb6e5d4413f6831
And removed between 195 and 196:
http://cgit.freedesktop.org/systemd/systemd/commit/configure.ac?id=796b06c21b62d13c9021e2fbd9c58a5c6edb2764
Please update commit message.
> I have build tested this with no issues.
>
> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
> ---
> meta/recipes-core/systemd/systemd_196.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/systemd/systemd_196.bb b/meta/recipes-core/systemd/systemd_196.bb
> index a78a8a6..9eca25b 100644
> --- a/meta/recipes-core/systemd/systemd_196.bb
> +++ b/meta/recipes-core/systemd/systemd_196.bb
> @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \
>
> PROVIDES = "udev"
>
> -DEPENDS = "xz kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers usbutils glib-2.0 libgcrypt"
> +DEPENDS = "xz kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers glib-2.0 libgcrypt"
> DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
>
> SECTION = "base/shell"
> --
> 1.8.1.1
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-01-24 12:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-24 10:44 [PATCH] systemd: remove usbutils dependancy ml
2013-01-24 12:02 ` Burton, Ross
2013-01-24 12:26 ` Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox