From bd0dd4489e15700333185a6afc6ea53a397246fb Mon Sep 17 00:00:00 2001 From: Tom Zanussi Date: Fri, 8 Aug 2014 07:53:35 -0500 Subject: wic: Remove Mount object It doesn't do anything we need, so remove it and fix up callers/base classes. (From OE-Core rev: fb2a162d8756ab69c9c29a0715b033f18620341d) Signed-off-by: Tom Zanussi Signed-off-by: Richard Purdie --- scripts/lib/mic/utils/fs_related.py | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'scripts/lib/mic/utils/fs_related.py') diff --git a/scripts/lib/mic/utils/fs_related.py b/scripts/lib/mic/utils/fs_related.py index e6e362d0ba..07a5ff995d 100644 --- a/scripts/lib/mic/utils/fs_related.py +++ b/scripts/lib/mic/utils/fs_related.py @@ -112,19 +112,3 @@ class DiskImage(Disk): exec_cmd(dd_cmd) self.device = self.image_file - - -class Mount: - """A generic base class to deal with mounting things.""" - def __init__(self, mountdir): - self.mountdir = mountdir - - def cleanup(self): - self.unmount() - - def mount(self, options = None): - pass - - def unmount(self): - pass - -- cgit v1.2.3-54-g00ecf