[bitbake-devel] [PATCH] bitbake: only check that /dev/shm is writable on Linux

Trevor Woerner twoerner at gmail.com
Wed Jan 21 18:22:13 UTC 2015


On 01/21/15 09:13, Ross Burton wrote:
> -# Python multiprocessing requires /dev/shm
> -if not os.access('/dev/shm', os.W_OK | os.X_OK):
> +# Python multiprocessing requires /dev/shm on Linux
> +if sys.platform.startswith('linux') and not os.access('/dev/shm', os.W_OK | os.X_OK):

Cool! On what other platforms does bitbake work?



More information about the bitbake-devel mailing list