Re: [OE-core] [PATCH 1/1] base-passwd.preinst:fix creating passwd and group error

2013-03-01 Thread Burton, Ross
On 28 February 2013 15:25, Javier Viguera wrote: > I was bite by this one [YOCTO #3917] in *danny* branch not allowing me to > create a rootfs based in DEB packages. Sometimes happens, sometimes not, > depending on whether 'base-files' is installed in the rootfs before or after > 'base-passwd'. >

Re: [OE-core] [PATCH 1/1] base-passwd.preinst:fix creating passwd and group error

2013-02-28 Thread Javier Viguera
Hi all, I was bite by this one [YOCTO #3917] in *danny* branch not allowing me to create a rootfs based in DEB packages. Sometimes happens, sometimes not, depending on whether 'base-files' is installed in the rootfs before or after 'base-passwd'. Cherry-picking this commit from master fixes

[OE-core] [PATCH 1/1] base-passwd.preinst:fix creating passwd and group error

2013-02-20 Thread Hongxu Jia
Create files `passwd' and `group' in `$D${sysconfdir}', if `$D${sysconfdir}' does not exist, there is an error: ... cannot create $D${sysconfdir}/passwd: Directory nonexistent cannot create $D${sysconfdir}/group: Directory nonexistent ... Attampt to create dir before file creation. [YOCTO #3917]