You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/unblob/handlers/filesystem/squashfs.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -283,7 +283,7 @@ class SquashFSv3DDWRTHandler(SquashFSv3Handler):
283
283
]
284
284
285
285
DOC=HandlerDoc(
286
-
name="SquashFS (v3 - DDWRT)",
286
+
name="SquashFS (v3-DDWRT)",
287
287
description="SquashFS version 3 DD-WRT is a variant of the SquashFS v3 format used in DD-WRT firmware. It features a unique magic number and may include specific optimizations for embedded systems.",
288
288
handler_type=HandlerType.FILESYSTEM,
289
289
vendor="DDWRT",
@@ -329,7 +329,7 @@ class SquashFSv3BroadcomHandler(SquashFSv3Handler):
329
329
]
330
330
331
331
DOC=HandlerDoc(
332
-
name="SquashFS (v3 - Broadcom)",
332
+
name="SquashFS (v3-Broadcom)",
333
333
description="SquashFS version 3 Broadcom is a variant of the SquashFS v3 format used in Broadcom firmware. It features a unique magic number and may include specific optimizations for Broadcom devices.",
334
334
handler_type=HandlerType.FILESYSTEM,
335
335
vendor="Broadcom",
@@ -374,7 +374,7 @@ class SquashFSv3NSHandler(SquashFSv3Handler):
374
374
]
375
375
376
376
DOC=HandlerDoc(
377
-
name="SquashFS (v3 - non-standard)",
377
+
name="SquashFS (v3-non-standard)",
378
378
description="SquashFS version 3 is a compressed, read-only file system format designed for minimal storage usage. It is widely used in embedded systems and Linux distributions for efficient storage and fast access.",
379
379
handler_type=HandlerType.FILESYSTEM,
380
380
vendor="unknown",
@@ -433,7 +433,7 @@ class SquashFSv4LEHandler(_SquashFSBase):
433
433
HEADER_STRUCT="squashfs4_super_block_t"
434
434
435
435
DOC=HandlerDoc(
436
-
name="SquashFS (v4 - LE)",
436
+
name="SquashFS (v4-LE)",
437
437
description="SquashFS version 4 is a compressed, read-only file system format designed for minimal storage usage and fast access. It is widely used in embedded systems and Linux distributions for efficient storage management.",
438
438
handler_type=HandlerType.FILESYSTEM,
439
439
vendor=None,
@@ -504,7 +504,7 @@ class SquashFSv4BEHandler(SquashFSv4LEHandler):
504
504
EXTRACTOR=SquashFSv4BEExtractor()
505
505
506
506
DOC=HandlerDoc(
507
-
name="SquashFS (v4 - BE)",
507
+
name="SquashFS (v4-BE)",
508
508
description="SquashFS version 4 is a compressed, read-only file system format designed for minimal storage usage and fast access. It supports both big-endian and little-endian formats and is widely used in embedded systems and Linux distributions.",
0 commit comments