summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/scriptingprovider.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py
index e3ca09f6..3b7747bb 100644
--- a/python/scriptingprovider.py
+++ b/python/scriptingprovider.py
@@ -901,6 +901,8 @@ from binaryninja import *
settings = Settings()
if settings.contains('corePlugins.view.sharedCache') and settings.get_bool('corePlugins.view.sharedCache'):
from .sharedcache import SharedCacheController
+ if settings.contains('corePlugins.view.kernelCache') and settings.get_bool('corePlugins.view.kernelCache'):
+ from .kernelcache import KernelCacheController
if os.environ.get('BN_STANDALONE_DEBUGGER'):
# By the time this scriptingprovider.py file is imported, the user plugins are not loaded yet.
# So `from debugger import DebuggerController` would not work.