diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-08-08 15:24:46 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-11 10:52:19 +0100 |
commit | d39c76f24a50c9359840c0959fb50fc6da0960cd (patch) | |
tree | 4612f7836170b3487c4631210067bd36431cfd4c /scripts/lib | |
parent | e1edee656fc9c0a791c0eb62796d1afa483be34e (diff) | |
download | openembedded-core-d39c76f24a50c9359840c0959fb50fc6da0960cd.tar.gz openembedded-core-d39c76f24a50c9359840c0959fb50fc6da0960cd.tar.bz2 openembedded-core-d39c76f24a50c9359840c0959fb50fc6da0960cd.zip |
wic: Update Disk description
Remove obsolete comment.
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/mic/utils/fs_related.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/lib/mic/utils/fs_related.py b/scripts/lib/mic/utils/fs_related.py index 07a5ff995d..cf2a759a06 100644 --- a/scripts/lib/mic/utils/fs_related.py +++ b/scripts/lib/mic/utils/fs_related.py @@ -60,11 +60,8 @@ def makedirs(dirname): raise class Disk: - """Generic base object for a disk - - The 'create' method must make the disk visible as a block device - eg - by calling losetup. For RawDisk, this is obviously a no-op. The 'cleanup' - method must undo the 'create' operation. + """ + Generic base object for a disk. """ def __init__(self, size, device = None): self._device = device |