bitbake: bin/bitbake: only check that /dev/shm is writable on Linux

(Bitbake rev: 7a87ca9518f7239a2dfeb4576c59ea7b1f8d3071)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2015-01-21 14:13:38 +00:00 committed by Richard Purdie
parent a67b855df6
commit f0d5edc91e
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ from bb import cookerdata
__version__ = "1.25.0"
logger = logging.getLogger("BitBake")
# 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):
sys.exit("FATAL: /dev/shm does not exist or is not writable")
# Unbuffer stdout to avoid log truncation in the event