firmex/python/matcher/__init__.py
nganhkhoa ae41d9ce41 python prototype
detection for
- zip
- ambarella
- flatten device tree
- squashfs
2024-08-27 13:16:45 +07:00

14 lines
286 B
Python

# common archive formats
from .zip import Zip
# special firmware formats
from .ambarella import Ambarella
from .esp32 import Esp32
# idk, common formats?
from .flatten_device_tree import FlattenDeviceTree
# file system formats
from .squashfs import SquashFS
from .ubifs import UbiFS