Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1][PULL] Fix udevd launch issue
@ 2011-06-09  1:08 Dongxiao Xu
  2011-06-09  1:08 ` [PATCH 1/1] udev: Fix udevd launch issue after system second boot Dongxiao Xu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dongxiao Xu @ 2011-06-09  1:08 UTC (permalink / raw)
  To: openembedded-core

Hi Saul,

This commit fixes the udevd launch issue after system second boot. [YOCTO #1146].
Without udevd daemon, device nodes will not be created if dynamically insert a kernel module.

Please help to review and pull.

The following changes since commit 5af197b55a4b779f1ec93186f0723026949ba2b5:

  cache: Implement multiple extra cache fields request support (2011-06-07 22:40:01 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib dxu4/bugfix
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/bugfix

Dongxiao Xu (1):
  udev: Fix udevd launch issue after system second boot

 meta/recipes-core/udev/udev-164/init |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)




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

* [PATCH 1/1] udev: Fix udevd launch issue after system second boot
  2011-06-09  1:08 [PATCH 0/1][PULL] Fix udevd launch issue Dongxiao Xu
@ 2011-06-09  1:08 ` Dongxiao Xu
  2011-06-09  6:15 ` [PATCH 0/1][PULL] Fix udevd launch issue Koen Kooi
  2011-06-09 18:42 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Dongxiao Xu @ 2011-06-09  1:08 UTC (permalink / raw)
  To: openembedded-core

"grep" command will return 1 if nothing is grepped, which will cause
the udevd daemon not working correctly.

This fixes [YOCTO #1146]

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
---
 meta/recipes-core/udev/udev-164/init |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/udev/udev-164/init b/meta/recipes-core/udev/udev-164/init
index 1a8fca5..9ce95ee 100644
--- a/meta/recipes-core/udev/udev-164/init
+++ b/meta/recipes-core/udev/udev-164/init
@@ -35,7 +35,7 @@ LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
 }
 
 if [ -e /etc/dev.tar ]; then
-	(cd /; tar xf /etc/dev.tar 2>&1 | grep -v 'time stamp')
+	(cd /; tar xf /etc/dev.tar 2>&1 | grep -v 'time stamp' || true)
 	not_first_boot=1
 fi
 
-- 
1.7.1




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

* Re: [PATCH 0/1][PULL] Fix udevd launch issue
  2011-06-09  1:08 [PATCH 0/1][PULL] Fix udevd launch issue Dongxiao Xu
  2011-06-09  1:08 ` [PATCH 1/1] udev: Fix udevd launch issue after system second boot Dongxiao Xu
@ 2011-06-09  6:15 ` Koen Kooi
  2011-06-09 18:42 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2011-06-09  6:15 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer
  Cc: openembedded-core@lists.openembedded.org

You're not getting new devicenodes even with devtmpfs mounted?

Op 9 jun. 2011 om 03:08 heeft Dongxiao Xu <dongxiao.xu@intel.com> het volgende geschreven:

> Hi Saul,
> 
> This commit fixes the udevd launch issue after system second boot. [YOCTO #1146].
> Without udevd daemon, device nodes will not be created if dynamically insert a kernel module.
> 
> Please help to review and pull.
> 
> The following changes since commit 5af197b55a4b779f1ec93186f0723026949ba2b5:
> 
>  cache: Implement multiple extra cache fields request support (2011-06-07 22:40:01 +0100)
> 
> are available in the git repository at:
>  git://git.pokylinux.org/poky-contrib dxu4/bugfix
>  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/bugfix
> 
> Dongxiao Xu (1):
>  udev: Fix udevd launch issue after system second boot
> 
> meta/recipes-core/udev/udev-164/init |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH 0/1][PULL] Fix udevd launch issue
  2011-06-09  1:08 [PATCH 0/1][PULL] Fix udevd launch issue Dongxiao Xu
  2011-06-09  1:08 ` [PATCH 1/1] udev: Fix udevd launch issue after system second boot Dongxiao Xu
  2011-06-09  6:15 ` [PATCH 0/1][PULL] Fix udevd launch issue Koen Kooi
@ 2011-06-09 18:42 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-06-09 18:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 06/08/2011 06:08 PM, Dongxiao Xu wrote:
> Hi Saul,
>
> This commit fixes the udevd launch issue after system second boot. [YOCTO #1146].
> Without udevd daemon, device nodes will not be created if dynamically insert a kernel module.
>
> Please help to review and pull.
>
> The following changes since commit 5af197b55a4b779f1ec93186f0723026949ba2b5:
>
>    cache: Implement multiple extra cache fields request support (2011-06-07 22:40:01 +0100)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib dxu4/bugfix
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/bugfix
>
> Dongxiao Xu (1):
>    udev: Fix udevd launch issue after system second boot
>
>   meta/recipes-core/udev/udev-164/init |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>


Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2011-06-09 18:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-09  1:08 [PATCH 0/1][PULL] Fix udevd launch issue Dongxiao Xu
2011-06-09  1:08 ` [PATCH 1/1] udev: Fix udevd launch issue after system second boot Dongxiao Xu
2011-06-09  6:15 ` [PATCH 0/1][PULL] Fix udevd launch issue Koen Kooi
2011-06-09 18:42 ` Saul Wold

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