Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Colin Walters
On Fri, May 9, 2014 at 4:35 PM, Mark Hatle wrote: Certain system configurations may require parts of the /run filesystem to not always be on tmpfs. (Some situations where you have a lot of disk, but limited ram for instance.. using tmpfs will potentially put your system into a low memory s

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Mark Hatle
On 5/9/14, 2:41 PM, Colin Walters wrote: On Fri, May 9, 2014 at 11:14 AM, Mark Hatle wrote: /run is not always a tmpfs... We've got configurations where it's persistent. What? Why? Certain system configurations may require parts of the /run filesystem to not always be on tmpfs. (Some

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Colin Walters
On Fri, May 9, 2014 at 11:14 AM, Mark Hatle wrote: /run is not always a tmpfs... We've got configurations where it's persistent. What? Why? -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Mark Hatle
On 5/9/14, 10:31 AM, Saul Wold wrote: On 05/09/2014 08:14 AM, Mark Hatle wrote: On 5/9/14, 4:16 AM, Burton, Ross wrote: On 9 May 2014 00:24, Mark Hatle wrote: The /run/lock directory was being dynamically created during package install, but should have been owned by the base-files package.

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Saul Wold
On 05/09/2014 08:14 AM, Mark Hatle wrote: On 5/9/14, 4:16 AM, Burton, Ross wrote: On 9 May 2014 00:24, Mark Hatle wrote: The /run/lock directory was being dynamically created during package install, but should have been owned by the base-files package. Doesn't do_install generate the /var/ru

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Mark Hatle
On 5/9/14, 4:16 AM, Burton, Ross wrote: On 9 May 2014 00:24, Mark Hatle wrote: The /run/lock directory was being dynamically created during package install, but should have been owned by the base-files package. Doesn't do_install generate the /var/run/lock -> /run/lock symlink, as /run is alw

Re: [OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-09 Thread Burton, Ross
On 9 May 2014 00:24, Mark Hatle wrote: > The /run/lock directory was being dynamically created during package install, > but should have been owned by the base-files package. Doesn't do_install generate the /var/run/lock -> /run/lock symlink, as /run is always a tmpfs so has to be populated on bo

[OE-core] [PATCH] base-files: Add /run/lock as a standard directory

2014-05-08 Thread Mark Hatle
rpm -V -qa Will report: Unsatisfied dependencies for base-files-3.0.14-r73.2.0.qemux86_64: /proc/mounts /run/lock The /run/lock directory was being dynamically created during package install, but should have been owned by the base-files package. (Note: /proc/mounts is a different issue) Signed