Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] udev: update init script for conditional probing of platform bus
@ 2014-06-19 22:53 Denys Dmytriyenko
  2014-06-19 22:53 ` [PATCH 2/2] udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default Denys Dmytriyenko
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-19 22:53 UTC (permalink / raw)
  To: openembedded-core; +Cc: Denys Dmytriyenko

From: Denys Dmytriyenko <denys@ti.com>

Make probing of "platform" bus conditional based on PROBE_PLATFORM_BUS
variable from /etc/default/udev-cache on subsequent boots when udev
cache is used. PROBE_PLATFORM_BUS has to be set to "yes" in order to
force probing on every boot, otherwise it uses the old default behaviour
of probing it just the first time.

This is helpful on modern SoCs where most of the low level peripheral
drivers are registered on the platform bus and need to be probed to load
the necessary modules and enable the connected buses and subsystems.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta/recipes-core/udev/udev/init | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
index 410a650..f2c84d5 100644
--- a/meta/recipes-core/udev/udev/init
+++ b/meta/recipes-core/udev/udev/init
@@ -102,7 +102,12 @@ case "$1" in
 
     udevadm control --env=STARTUP=1
     if [ "$not_first_boot" != "" ];then
-            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus  --subsystem-nomatch=graphics	 --subsystem-nomatch=backlight --subsystem-nomatch=video4linux	--subsystem-nomatch=platform
+            if [ "$PROBE_PLATFORM_BUS" != "yes" ]; then
+                PLATFORM_BUS_NOMATCH="--subsystem-nomatch=platform"
+            else
+                PLATFORM_BUS_NOMATCH=""
+            fi
+            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus --subsystem-nomatch=graphics --subsystem-nomatch=backlight --subsystem-nomatch=video4linux $PLATFORM_BUS_NOMATCH
             (udevadm settle --timeout=3; udevadm control --env=STARTUP=)&
     else
             udevadm trigger --action=add
-- 
2.0.0



^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 2/2] udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default
  2014-06-19 22:53 [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
@ 2014-06-19 22:53 ` Denys Dmytriyenko
  2014-06-20 17:13 ` [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
  2014-06-26 17:27 ` Otavio Salvador
  2 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-19 22:53 UTC (permalink / raw)
  To: openembedded-core; +Cc: Denys Dmytriyenko

From: Denys Dmytriyenko <denys@ti.com>

Force probing of "platform" bus by default.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta/recipes-core/udev/udev/udev-cache.default | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/udev/udev/udev-cache.default b/meta/recipes-core/udev/udev/udev-cache.default
index 5c4937a..2093336 100644
--- a/meta/recipes-core/udev/udev/udev-cache.default
+++ b/meta/recipes-core/udev/udev/udev-cache.default
@@ -2,3 +2,4 @@
 
 # Comment this out to disable device cache
 DEVCACHE="/etc/dev.tar"
+PROBE_PLATFORM_BUS="yes"
-- 
2.0.0



^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-19 22:53 [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
  2014-06-19 22:53 ` [PATCH 2/2] udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default Denys Dmytriyenko
@ 2014-06-20 17:13 ` Denys Dmytriyenko
  2014-06-25  0:52   ` Denys Dmytriyenko
  2014-06-26 17:27 ` Otavio Salvador
  2 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-20 17:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Denys Dmytriyenko

On Thu, Jun 19, 2014 at 06:53:22PM -0400, Denys Dmytriyenko wrote:
> From: Denys Dmytriyenko <denys@ti.com>
> 
> Make probing of "platform" bus conditional based on PROBE_PLATFORM_BUS
> variable from /etc/default/udev-cache on subsequent boots when udev
> cache is used. PROBE_PLATFORM_BUS has to be set to "yes" in order to
> force probing on every boot, otherwise it uses the old default behaviour
> of probing it just the first time.
> 
> This is helpful on modern SoCs where most of the low level peripheral
> drivers are registered on the platform bus and need to be probed to load
> the necessary modules and enable the connected buses and subsystems.

Any questions, comments? I would like to keep a dialog open on this one. 
Thanks.


> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
>  meta/recipes-core/udev/udev/init | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
> index 410a650..f2c84d5 100644
> --- a/meta/recipes-core/udev/udev/init
> +++ b/meta/recipes-core/udev/udev/init
> @@ -102,7 +102,12 @@ case "$1" in
>  
>      udevadm control --env=STARTUP=1
>      if [ "$not_first_boot" != "" ];then
> -            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus  --subsystem-nomatch=graphics	 --subsystem-nomatch=backlight --subsystem-nomatch=video4linux	--subsystem-nomatch=platform
> +            if [ "$PROBE_PLATFORM_BUS" != "yes" ]; then
> +                PLATFORM_BUS_NOMATCH="--subsystem-nomatch=platform"
> +            else
> +                PLATFORM_BUS_NOMATCH=""
> +            fi
> +            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus --subsystem-nomatch=graphics --subsystem-nomatch=backlight --subsystem-nomatch=video4linux $PLATFORM_BUS_NOMATCH
>              (udevadm settle --timeout=3; udevadm control --env=STARTUP=)&
>      else
>              udevadm trigger --action=add
> -- 
> 2.0.0
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-20 17:13 ` [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
@ 2014-06-25  0:52   ` Denys Dmytriyenko
  2014-06-25 16:20     ` Paul Eggleton
  0 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-25  0:52 UTC (permalink / raw)
  To: openembedded-core; +Cc: Denys Dmytriyenko

Ping? Any comments? Any better suggestions?


On Fri, Jun 20, 2014 at 01:13:38PM -0400, Denys Dmytriyenko wrote:
> On Thu, Jun 19, 2014 at 06:53:22PM -0400, Denys Dmytriyenko wrote:
> > From: Denys Dmytriyenko <denys@ti.com>
> > 
> > Make probing of "platform" bus conditional based on PROBE_PLATFORM_BUS
> > variable from /etc/default/udev-cache on subsequent boots when udev
> > cache is used. PROBE_PLATFORM_BUS has to be set to "yes" in order to
> > force probing on every boot, otherwise it uses the old default behaviour
> > of probing it just the first time.
> > 
> > This is helpful on modern SoCs where most of the low level peripheral
> > drivers are registered on the platform bus and need to be probed to load
> > the necessary modules and enable the connected buses and subsystems.
> 
> Any questions, comments? I would like to keep a dialog open on this one. 
> Thanks.
> 
> 
> > Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > ---
> >  meta/recipes-core/udev/udev/init | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> > 
> > diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
> > index 410a650..f2c84d5 100644
> > --- a/meta/recipes-core/udev/udev/init
> > +++ b/meta/recipes-core/udev/udev/init
> > @@ -102,7 +102,12 @@ case "$1" in
> >  
> >      udevadm control --env=STARTUP=1
> >      if [ "$not_first_boot" != "" ];then
> > -            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus  --subsystem-nomatch=graphics	 --subsystem-nomatch=backlight --subsystem-nomatch=video4linux	--subsystem-nomatch=platform
> > +            if [ "$PROBE_PLATFORM_BUS" != "yes" ]; then
> > +                PLATFORM_BUS_NOMATCH="--subsystem-nomatch=platform"
> > +            else
> > +                PLATFORM_BUS_NOMATCH=""
> > +            fi
> > +            udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus --subsystem-nomatch=graphics --subsystem-nomatch=backlight --subsystem-nomatch=video4linux $PLATFORM_BUS_NOMATCH
> >              (udevadm settle --timeout=3; udevadm control --env=STARTUP=)&
> >      else
> >              udevadm trigger --action=add
> > -- 
> > 2.0.0
> > 
> > -- 
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-25  0:52   ` Denys Dmytriyenko
@ 2014-06-25 16:20     ` Paul Eggleton
  2014-06-25 16:22       ` Denys Dmytriyenko
  0 siblings, 1 reply; 13+ messages in thread
From: Paul Eggleton @ 2014-06-25 16:20 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: openembedded-core, Denys Dmytriyenko

On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> Ping? Any comments? Any better suggestions?

Looks like Richard has merged this, FWIW.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-25 16:20     ` Paul Eggleton
@ 2014-06-25 16:22       ` Denys Dmytriyenko
  2014-06-25 22:41         ` Richard Purdie
  0 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-25 16:22 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-core, Denys Dmytriyenko

On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> > Ping? Any comments? Any better suggestions?
> 
> Looks like Richard has merged this, FWIW.

Yes, I saw it. Already submitted backport for daisy... :)

-- 
Denys


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-25 16:22       ` Denys Dmytriyenko
@ 2014-06-25 22:41         ` Richard Purdie
  2014-06-26 17:43           ` Denys Dmytriyenko
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Purdie @ 2014-06-25 22:41 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: Paul Eggleton, Denys Dmytriyenko, openembedded-core

On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
> On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> > On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> > > Ping? Any comments? Any better suggestions?
> > 
> > Looks like Richard has merged this, FWIW.
> 
> Yes, I saw it. Already submitted backport for daisy... :)

I'd like this to see some testing in master for a while before we
backport it...

Cheers,

Richard



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-19 22:53 [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
  2014-06-19 22:53 ` [PATCH 2/2] udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default Denys Dmytriyenko
  2014-06-20 17:13 ` [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
@ 2014-06-26 17:27 ` Otavio Salvador
  2 siblings, 0 replies; 13+ messages in thread
From: Otavio Salvador @ 2014-06-26 17:27 UTC (permalink / raw)
  To: Denys Dmytriyenko, John Weber
  Cc: Denys Dmytriyenko,
	Patches and discussions about the oe-core layer

On Thu, Jun 19, 2014 at 7:53 PM, Denys Dmytriyenko <denis@denix.org> wrote:
> From: Denys Dmytriyenko <denys@ti.com>
>
> Make probing of "platform" bus conditional based on PROBE_PLATFORM_BUS
> variable from /etc/default/udev-cache on subsequent boots when udev
> cache is used. PROBE_PLATFORM_BUS has to be set to "yes" in order to
> force probing on every boot, otherwise it uses the old default behaviour
> of probing it just the first time.
>
> This is helpful on modern SoCs where most of the low level peripheral
> drivers are registered on the platform bus and need to be probed to load
> the necessary modules and enable the connected buses and subsystems.
>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>

I second this as this fixes a issue in Wandboard in meta-fsl-arm as well.

John, this fix is equivalent to the one we had tested.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-25 22:41         ` Richard Purdie
@ 2014-06-26 17:43           ` Denys Dmytriyenko
  2014-07-15  2:41             ` Denys Dmytriyenko
  0 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-06-26 17:43 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Paul Eggleton, Denys Dmytriyenko, openembedded-core

On Wed, Jun 25, 2014 at 11:41:05PM +0100, Richard Purdie wrote:
> On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
> > On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> > > On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> > > > Ping? Any comments? Any better suggestions?
> > > 
> > > Looks like Richard has merged this, FWIW.
> > 
> > Yes, I saw it. Already submitted backport for daisy... :)
> 
> I'd like this to see some testing in master for a while before we
> backport it...

I'm Ok waiting a bit longer to test it in master. I'll ping on it later...

But this fixes a very common issue that affects different platforms from 
different BSP layers, including BeagleBone Black in meta-yocto-bsp. The goal 
is to be least intrusive and preserve the old udev cache behavior as much as 
possible. Alternative options were to disable udev cache completely or 
forcefully load necessary modules when they won't be probed on subsequent 
boots.

-- 
Denys


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-06-26 17:43           ` Denys Dmytriyenko
@ 2014-07-15  2:41             ` Denys Dmytriyenko
  2014-07-15 15:30               ` Saul Wold
  0 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-07-15  2:41 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Paul Eggleton, openembedded-core, Denys Dmytriyenko

On Thu, Jun 26, 2014 at 01:43:53PM -0400, Denys Dmytriyenko wrote:
> On Wed, Jun 25, 2014 at 11:41:05PM +0100, Richard Purdie wrote:
> > On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
> > > On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> > > > On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> > > > > Ping? Any comments? Any better suggestions?
> > > > 
> > > > Looks like Richard has merged this, FWIW.
> > > 
> > > Yes, I saw it. Already submitted backport for daisy... :)
> > 
> > I'd like this to see some testing in master for a while before we
> > backport it...
> 
> I'm Ok waiting a bit longer to test it in master. I'll ping on it later...
> 
> But this fixes a very common issue that affects different platforms from 
> different BSP layers, including BeagleBone Black in meta-yocto-bsp. The goal 
> is to be least intrusive and preserve the old udev cache behavior as much as 
> possible. Alternative options were to disable udev cache completely or 
> forcefully load necessary modules when they won't be probed on subsequent 
> boots.

Hi, Richard,

Was it enough wait time to get the change tested in master? Should I re-submit 
the patch for daisy one more time or you have it in the archives? Thanks!

-- 
Denys


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-07-15  2:41             ` Denys Dmytriyenko
@ 2014-07-15 15:30               ` Saul Wold
  2014-07-15 15:38                 ` Denys Dmytriyenko
  0 siblings, 1 reply; 13+ messages in thread
From: Saul Wold @ 2014-07-15 15:30 UTC (permalink / raw)
  To: Denys Dmytriyenko, Richard Purdie
  Cc: Paul Eggleton, Denys Dmytriyenko, openembedded-core

On 07/14/2014 07:41 PM, Denys Dmytriyenko wrote:
> On Thu, Jun 26, 2014 at 01:43:53PM -0400, Denys Dmytriyenko wrote:
>> On Wed, Jun 25, 2014 at 11:41:05PM +0100, Richard Purdie wrote:
>>> On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
>>>> On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
>>>>> On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
>>>>>> Ping? Any comments? Any better suggestions?
>>>>>
>>>>> Looks like Richard has merged this, FWIW.
>>>>
>>>> Yes, I saw it. Already submitted backport for daisy... :)
>>>
>>> I'd like this to see some testing in master for a while before we
>>> backport it...
>>
>> I'm Ok waiting a bit longer to test it in master. I'll ping on it later...
>>
>> But this fixes a very common issue that affects different platforms from
>> different BSP layers, including BeagleBone Black in meta-yocto-bsp. The goal
>> is to be least intrusive and preserve the old udev cache behavior as much as
>> possible. Alternative options were to disable udev cache completely or
>> forcefully load necessary modules when they won't be probed on subsequent
>> boots.
>
> Hi, Richard,
>
> Was it enough wait time to get the change tested in master? Should I re-submit
> the patch for daisy one more time or you have it in the archives? Thanks!
>
I have it in my daisy-next (1.6.2) branch (I know it's not in daisy yet).

Sau!



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-07-15 15:30               ` Saul Wold
@ 2014-07-15 15:38                 ` Denys Dmytriyenko
  2014-07-21 22:30                   ` Denys Dmytriyenko
  0 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-07-15 15:38 UTC (permalink / raw)
  To: Saul Wold; +Cc: Denys Dmytriyenko, Paul Eggleton, openembedded-core

On Tue, Jul 15, 2014 at 08:30:04AM -0700, Saul Wold wrote:
> On 07/14/2014 07:41 PM, Denys Dmytriyenko wrote:
> >On Thu, Jun 26, 2014 at 01:43:53PM -0400, Denys Dmytriyenko wrote:
> >>On Wed, Jun 25, 2014 at 11:41:05PM +0100, Richard Purdie wrote:
> >>>On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
> >>>>On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> >>>>>On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> >>>>>>Ping? Any comments? Any better suggestions?
> >>>>>
> >>>>>Looks like Richard has merged this, FWIW.
> >>>>
> >>>>Yes, I saw it. Already submitted backport for daisy... :)
> >>>
> >>>I'd like this to see some testing in master for a while before we
> >>>backport it...
> >>
> >>I'm Ok waiting a bit longer to test it in master. I'll ping on it later...
> >>
> >>But this fixes a very common issue that affects different platforms from
> >>different BSP layers, including BeagleBone Black in meta-yocto-bsp. The goal
> >>is to be least intrusive and preserve the old udev cache behavior as much as
> >>possible. Alternative options were to disable udev cache completely or
> >>forcefully load necessary modules when they won't be probed on subsequent
> >>boots.
> >
> >Hi, Richard,
> >
> >Was it enough wait time to get the change tested in master? Should I re-submit
> >the patch for daisy one more time or you have it in the archives? Thanks!
> >
> I have it in my daisy-next (1.6.2) branch (I know it's not in daisy yet).

Thanks!

-- 
Denys


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] udev: update init script for conditional probing of platform bus
  2014-07-15 15:38                 ` Denys Dmytriyenko
@ 2014-07-21 22:30                   ` Denys Dmytriyenko
  0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2014-07-21 22:30 UTC (permalink / raw)
  To: Saul Wold; +Cc: Paul Eggleton, openembedded-core, Denys Dmytriyenko

On Tue, Jul 15, 2014 at 11:38:41AM -0400, Denys Dmytriyenko wrote:
> On Tue, Jul 15, 2014 at 08:30:04AM -0700, Saul Wold wrote:
> > On 07/14/2014 07:41 PM, Denys Dmytriyenko wrote:
> > >On Thu, Jun 26, 2014 at 01:43:53PM -0400, Denys Dmytriyenko wrote:
> > >>On Wed, Jun 25, 2014 at 11:41:05PM +0100, Richard Purdie wrote:
> > >>>On Wed, 2014-06-25 at 12:22 -0400, Denys Dmytriyenko wrote:
> > >>>>On Wed, Jun 25, 2014 at 05:20:23PM +0100, Paul Eggleton wrote:
> > >>>>>On Tuesday 24 June 2014 20:52:55 Denys Dmytriyenko wrote:
> > >>>>>>Ping? Any comments? Any better suggestions?
> > >>>>>
> > >>>>>Looks like Richard has merged this, FWIW.
> > >>>>
> > >>>>Yes, I saw it. Already submitted backport for daisy... :)
> > >>>
> > >>>I'd like this to see some testing in master for a while before we
> > >>>backport it...
> > >>
> > >>I'm Ok waiting a bit longer to test it in master. I'll ping on it later...
> > >>
> > >>But this fixes a very common issue that affects different platforms from
> > >>different BSP layers, including BeagleBone Black in meta-yocto-bsp. The goal
> > >>is to be least intrusive and preserve the old udev cache behavior as much as
> > >>possible. Alternative options were to disable udev cache completely or
> > >>forcefully load necessary modules when they won't be probed on subsequent
> > >>boots.
> > >
> > >Hi, Richard,
> > >
> > >Was it enough wait time to get the change tested in master? Should I re-submit
> > >the patch for daisy one more time or you have it in the archives? Thanks!
> > >
> > I have it in my daisy-next (1.6.2) branch (I know it's not in daisy yet).
> 
> Thanks!

Saul,

Do you have any ETA on when daisy will be updated? Thanks.

-- 
Denys


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2014-07-21 22:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-19 22:53 [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
2014-06-19 22:53 ` [PATCH 2/2] udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default Denys Dmytriyenko
2014-06-20 17:13 ` [PATCH 1/2] udev: update init script for conditional probing of platform bus Denys Dmytriyenko
2014-06-25  0:52   ` Denys Dmytriyenko
2014-06-25 16:20     ` Paul Eggleton
2014-06-25 16:22       ` Denys Dmytriyenko
2014-06-25 22:41         ` Richard Purdie
2014-06-26 17:43           ` Denys Dmytriyenko
2014-07-15  2:41             ` Denys Dmytriyenko
2014-07-15 15:30               ` Saul Wold
2014-07-15 15:38                 ` Denys Dmytriyenko
2014-07-21 22:30                   ` Denys Dmytriyenko
2014-06-26 17:27 ` Otavio Salvador

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox