Skip to content

Commit

Permalink
Merge pull request #1247 from Abyss-W4tcher/archs_spec_unification
Browse files Browse the repository at this point in the history
[core, constants] : add OS and framework supported architectures
  • Loading branch information
ikelos authored Sep 2, 2024
2 parents 3f5fce3 + 7a479d6 commit a40ac64
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions volatility3/framework/constants/architectures.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from volatility3.framework.layers import intel

WIN_ARCHS = ["Intel32", "Intel64"]
"""Windows supported architectures"""
WIN_ARCHS_LAYERS = [intel.Intel]
"""Windows supported architectures layers"""

LINUX_ARCHS = ["Intel32", "Intel64"]
"""Linux supported architectures"""
LINUX_ARCHS_LAYERS = [intel.Intel]
"""Linux supported architectures layers"""

MAC_ARCHS = ["Intel32", "Intel64"]
"""Mac supported architectures"""
MAC_ARCHS_LAYERS = [intel.Intel]
"""Mac supported architectures layers"""

FRAMEWORK_ARCHS = ["Intel32", "Intel64"]
"""Framework supported architectures"""
FRAMEWORK_ARCHS_LAYERS = [intel.Intel]
"""Framework supported architectures layers"""

0 comments on commit a40ac64

Please sign in to comment.