Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Jason Plum <jplum@devonit.com>
To: <openembedded-core@lists.openembedded.org>
Subject: [PATCH v3] meta/oe/lib/path.py - check mount points, not device
Date: Mon, 20 Jan 2014 14:22:58 -0500	[thread overview]
Message-ID: <1390245778-9252-1-git-send-email-jplum@devonit.com> (raw)

Signed-off-by: Jason Plum <jplum@devonit.com>
---
 meta/lib/oe/path.py | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oe/path.py b/meta/lib/oe/path.py
index 46783f8..dab20fc 100644
--- a/meta/lib/oe/path.py
+++ b/meta/lib/oe/path.py
@@ -90,7 +90,7 @@ def copyhardlinktree(src, dst):
     if os.path.isdir(src) and not len(os.listdir(src)):
         return	
 
-    if (os.stat(src).st_dev ==  os.stat(dst).st_dev):
+    if (getmount(src) ==  getmount(dst)):
         # Need to copy directories only with tar first since cp will error if two 
         # writers try and create a directory at the same time
         cmd = 'cd %s; find . -type d -print | tar -cf - -C %s -p --files-from - --no-recursion | tar -xf - -C %s' % (src, src, dst)
@@ -257,3 +257,14 @@ def realpath(file, root, use_physdir = True, loop_cnt = 100, assume_dir = False)
         raise
 
     return file
+
+def getmount(path):
+    """ getmount takes a path parameter, uses os.path.realpath with os.path.abspath to
+    handle symlink resolution, and returns the path to the mount point of the input path
+    """
+    path = os.path.realpath(os.path.abspath(path))
+    while path != os.path.sep:
+        if os.path.ismount(path):
+            return path
+        path = os.path.abspath(os.path.join(path, os.pardir))
+    return path
\ No newline at end of file
-- 
1.8.5.3




             reply	other threads:[~2014-01-20 19:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-20 19:22 Jason Plum [this message]
2014-01-24 14:05 ` [PATCH v3] meta/oe/lib/path.py - check mount points, not device Jason Plum
2014-01-28 18:47 ` Saul Wold
2014-01-29 14:54   ` Jason Plum
2014-02-10  6:59     ` Saul Wold
2014-02-21  4:01       ` Saul Wold

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=1390245778-9252-1-git-send-email-jplum@devonit.com \
    --to=jplum@devonit.com \
    --cc=openembedded-core@lists.openembedded.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox