Re: [OE-core] [PATCH 1/8] udev: fix dependency and location of udevadm

2013-11-11 Thread ChenQi
On 11/11/2013 06:53 PM, Phil Blundell wrote: On Mon, 2013-11-11 at 10:18 +0800, ChenQi wrote: On 11/10/2013 06:54 AM, Phil Blundell wrote: On Sat, 2013-11-09 at 13:28 +0800, qi.c...@windriver.com wrote: + install -d ${D}${base_bindir} + mv ${D}${bindir}/udevadm

Re: [OE-core] [PATCH 1/8] udev: fix dependency and location of udevadm

2013-11-10 Thread ChenQi
On 11/10/2013 06:54 AM, Phil Blundell wrote: On Sat, 2013-11-09 at 13:28 +0800, qi.c...@windriver.com wrote: + install -d ${D}${base_bindir} + mv ${D}${bindir}/udevadm ${D}${base_bindir}/udevadm + rmdir ${D}${bindir} This will fail if ${bindir} and ${base_bindir} are the

Re: [OE-core] [PATCH 1/8] udev: fix dependency and location of udevadm

2013-11-09 Thread Phil Blundell
On Sat, 2013-11-09 at 13:28 +0800, qi.c...@windriver.com wrote: + install -d ${D}${base_bindir} + mv ${D}${bindir}/udevadm ${D}${base_bindir}/udevadm + rmdir ${D}${bindir} This will fail if ${bindir} and ${base_bindir} are the same. p.

[OE-core] [PATCH 1/8] udev: fix dependency and location of udevadm

2013-11-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com As udev's init script needs udevadm, we should make udev RDEPEND on udev-utils instead of just recommends it. Also, move udevadm from /usr/bin to /bin. The purpose is to make udev start correctly even if /usr is missing. Signed-off-by: Chen Qi