All of lore.kernel.org
 help / color / mirror / Atom feed
From: Trevor Woerner <twoerner@gmail.com>
To: Ross Burton <ross.burton@intel.com>,
	bitbake-devel@lists.openembedded.org
Subject: Re: [PATCH] bitbake: only check that /dev/shm is writable on Linux
Date: Wed, 21 Jan 2015 13:22:13 -0500	[thread overview]
Message-ID: <54BFEE55.5040402@gmail.com> (raw)
In-Reply-To: <1421849618-28332-1-git-send-email-ross.burton@intel.com>


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?


  reply	other threads:[~2015-01-21 18:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-21 14:13 [PATCH] bitbake: only check that /dev/shm is writable on Linux Ross Burton
2015-01-21 18:22 ` Trevor Woerner [this message]
2015-01-21 21:07   ` Burton, Ross

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54BFEE55.5040402@gmail.com \
    --to=twoerner@gmail.com \
    --cc=bitbake-devel@lists.openembedded.org \
    --cc=ross.burton@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.