* [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
@ 2013-04-14 13:55 Koen Kooi
2013-04-14 14:05 ` Martin Jansa
2013-04-15 10:03 ` Burton, Ross
0 siblings, 2 replies; 6+ messages in thread
From: Koen Kooi @ 2013-04-14 13:55 UTC (permalink / raw)
To: openembedded-core; +Cc: Koen Kooi
In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
Change it back to opt-in for images/packagegroups.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
Since udev-extraconf is persona non grata in angstrom I have no idea what depends on it, so please tell me what needs to get fixed after removing this.
meta/recipes-core/systemd/systemd_199.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-core/systemd/systemd_199.bb b/meta/recipes-core/systemd/systemd_199.bb
index 0d07f85..fbf2a2f 100644
--- a/meta/recipes-core/systemd/systemd_199.bb
+++ b/meta/recipes-core/systemd/systemd_199.bb
@@ -202,7 +202,7 @@ FILES_udev-dbg += "/lib/udev/.debug"
RDEPENDS_udev += "udev-utils"
RPROVIDES_udev = "hotplug"
-RRECOMMENDS_udev += "udev-extraconf udev-hwdb"
+RRECOMMENDS_udev += "udev-hwdb"
FILES_udev += "${base_sbindir}/udevd \
${base_libdir}/systemd/systemd-udevd \
--
1.8.1.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
2013-04-14 13:55 [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS Koen Kooi
@ 2013-04-14 14:05 ` Martin Jansa
2013-04-14 14:21 ` Koen Kooi
2013-04-15 10:03 ` Burton, Ross
1 sibling, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2013-04-14 14:05 UTC (permalink / raw)
To: Koen Kooi; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1641 bytes --]
On Sun, Apr 14, 2013 at 03:55:22PM +0200, Koen Kooi wrote:
> In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
>
> Change it back to opt-in for images/packagegroups.
Maybe RSUGGESTS?
Cheers,
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
>
> Since udev-extraconf is persona non grata in angstrom I have no idea what depends on it, so please tell me what needs to get fixed after removing this.
>
> meta/recipes-core/systemd/systemd_199.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/systemd/systemd_199.bb b/meta/recipes-core/systemd/systemd_199.bb
> index 0d07f85..fbf2a2f 100644
> --- a/meta/recipes-core/systemd/systemd_199.bb
> +++ b/meta/recipes-core/systemd/systemd_199.bb
> @@ -202,7 +202,7 @@ FILES_udev-dbg += "/lib/udev/.debug"
>
> RDEPENDS_udev += "udev-utils"
> RPROVIDES_udev = "hotplug"
> -RRECOMMENDS_udev += "udev-extraconf udev-hwdb"
> +RRECOMMENDS_udev += "udev-hwdb"
>
> FILES_udev += "${base_sbindir}/udevd \
> ${base_libdir}/systemd/systemd-udevd \
> --
> 1.8.1.4
>
>
> _______________________________________________
> 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] 6+ messages in thread* Re: [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
2013-04-14 14:05 ` Martin Jansa
@ 2013-04-14 14:21 ` Koen Kooi
2013-04-14 14:59 ` Martin Jansa
0 siblings, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2013-04-14 14:21 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-core
Op 14 apr. 2013, om 16:05 heeft Martin Jansa <martin.jansa@gmail.com> het volgende geschreven:
> On Sun, Apr 14, 2013 at 03:55:22PM +0200, Koen Kooi wrote:
>> In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
>>
>> Change it back to opt-in for images/packagegroups.
>
> Maybe RSUGGESTS?
Not sure if that fixes the case where people do want it. I explicitly don't want this ending up in my rootfs (BAD_RRECOMMENDS might work here), but that doesn't work when doing 'opkg upgrade'.
I'm just trying to fix regressions compared to the meta-oe udev/systemd state in 1.3 :)
regards,
Koen
>
> Cheers,
>
>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> ---
>>
>> Since udev-extraconf is persona non grata in angstrom I have no idea what depends on it, so please tell me what needs to get fixed after removing this.
>>
>> meta/recipes-core/systemd/systemd_199.bb | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-core/systemd/systemd_199.bb b/meta/recipes-core/systemd/systemd_199.bb
>> index 0d07f85..fbf2a2f 100644
>> --- a/meta/recipes-core/systemd/systemd_199.bb
>> +++ b/meta/recipes-core/systemd/systemd_199.bb
>> @@ -202,7 +202,7 @@ FILES_udev-dbg += "/lib/udev/.debug"
>>
>> RDEPENDS_udev += "udev-utils"
>> RPROVIDES_udev = "hotplug"
>> -RRECOMMENDS_udev += "udev-extraconf udev-hwdb"
>> +RRECOMMENDS_udev += "udev-hwdb"
>>
>> FILES_udev += "${base_sbindir}/udevd \
>> ${base_libdir}/systemd/systemd-udevd \
>> --
>> 1.8.1.4
>>
>>
>> _______________________________________________
>> 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
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
2013-04-14 14:21 ` Koen Kooi
@ 2013-04-14 14:59 ` Martin Jansa
0 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2013-04-14 14:59 UTC (permalink / raw)
To: Koen Kooi; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2385 bytes --]
On Sun, Apr 14, 2013 at 04:21:15PM +0200, Koen Kooi wrote:
>
> Op 14 apr. 2013, om 16:05 heeft Martin Jansa <martin.jansa@gmail.com> het volgende geschreven:
>
> > On Sun, Apr 14, 2013 at 03:55:22PM +0200, Koen Kooi wrote:
> >> In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
> >>
> >> Change it back to opt-in for images/packagegroups.
> >
> > Maybe RSUGGESTS?
>
> Not sure if that fixes the case where people do want it. I explicitly don't want this ending up in my rootfs (BAD_RRECOMMENDS might work here), but that doesn't work when doing 'opkg upgrade'.
It does not, but it will build udev-extraconf in feed and notify user
that there is "more" in case he decides to install udev-extraconf
manually.
> I'm just trying to fix regressions compared to the meta-oe udev/systemd state in 1.3 :)
I guess we all are :)
> >> ---
> >>
> >> Since udev-extraconf is persona non grata in angstrom I have no idea what depends on it, so please tell me what needs to get fixed after removing this.
> >>
> >> meta/recipes-core/systemd/systemd_199.bb | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/meta/recipes-core/systemd/systemd_199.bb b/meta/recipes-core/systemd/systemd_199.bb
> >> index 0d07f85..fbf2a2f 100644
> >> --- a/meta/recipes-core/systemd/systemd_199.bb
> >> +++ b/meta/recipes-core/systemd/systemd_199.bb
> >> @@ -202,7 +202,7 @@ FILES_udev-dbg += "/lib/udev/.debug"
> >>
> >> RDEPENDS_udev += "udev-utils"
> >> RPROVIDES_udev = "hotplug"
> >> -RRECOMMENDS_udev += "udev-extraconf udev-hwdb"
> >> +RRECOMMENDS_udev += "udev-hwdb"
> >>
> >> FILES_udev += "${base_sbindir}/udevd \
> >> ${base_libdir}/systemd/systemd-udevd \
> >> --
> >> 1.8.1.4
> >>
> >>
> >> _______________________________________________
> >> 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
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
2013-04-14 13:55 [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS Koen Kooi
2013-04-14 14:05 ` Martin Jansa
@ 2013-04-15 10:03 ` Burton, Ross
2013-04-15 10:12 ` Koen Kooi
1 sibling, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2013-04-15 10:03 UTC (permalink / raw)
To: Koen Kooi; +Cc: openembedded-core
On 14 April 2013 14:55, Koen Kooi <koen@dominion.thruhere.net> wrote:
> In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
If this is a concern then you should do it for udev too, as udev.inc has:
RRECOMMENDS_${PN} += "udev-extraconf usbutils-ids pciutils-ids"
Ross
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS
2013-04-15 10:03 ` Burton, Ross
@ 2013-04-15 10:12 ` Koen Kooi
0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2013-04-15 10:12 UTC (permalink / raw)
To: Burton, Ross; +Cc: openembedded-core
Op 15 apr. 2013, om 12:03 heeft "Burton, Ross" <ross.burton@intel.com> het volgende geschreven:
> On 14 April 2013 14:55, Koen Kooi <koen@dominion.thruhere.net> wrote:
>> In the original udev and systemd updates these extra conf rules and scripts where removed and moved to a different recipe to avoid pulling them in by default, making them opt-in. The systemd merge into oe-core regressed this into making it impossible to opt out of it when using package feeds for upgrades.
>
>
> If this is a concern then you should do it for udev too, as udev.inc has:
>
> RRECOMMENDS_${PN} += "udev-extraconf usbutils-ids pciutils-ids"
I haven't run into that, because I don't use standalone udev :) Good catch, seperate patch sent for that.
regards,
Koen
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-04-15 10:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-14 13:55 [RFC][PATCH] systemd: remove udev-extraconf from RRECOMMENDS Koen Kooi
2013-04-14 14:05 ` Martin Jansa
2013-04-14 14:21 ` Koen Kooi
2013-04-14 14:59 ` Martin Jansa
2013-04-15 10:03 ` Burton, Ross
2013-04-15 10:12 ` Koen Kooi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox