Commit 7ee4572f by devttys0

Added minor comments to unjffs2 plugin

parent cdb59da1
......@@ -15,7 +15,10 @@ class JFFS2Entry(object):
setattr(self, k, v)
class UnJFFS2(object):
'''
User space JFFS2 extractor; just a simple Python wrapper around the jffs2dump
and jffs2reader utilities from mtd-utils. Not terribly efficient, but works.
'''
def __init__(self, image, directory, verbose=False):
self.image = image
self.verbose = verbose
......@@ -142,7 +145,9 @@ class UnJFFS2(object):
self.extract_entry(entry)
class UnJFFS2Plugin(binwalk.core.plugin.Plugin):
'''
Extrator plugin for JFFS2 file systems.
'''
MODULES = ['Signature']
def init(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment