From 4fcc589cbf06083290adb87c2ce2d53bb04e3ab5 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Thu, 12 Jan 2017 21:22:59 +0000 Subject: [PATCH] Update insmod_platform() for new module paths. --- .../all/vendor-config-onl/src/python/onl/platform/base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/base/all/vendor-config-onl/src/python/onl/platform/base.py b/packages/base/all/vendor-config-onl/src/python/onl/platform/base.py index 9e080044..ff7f0249 100644 --- a/packages/base/all/vendor-config-onl/src/python/onl/platform/base.py +++ b/packages/base/all/vendor-config-onl/src/python/onl/platform/base.py @@ -243,7 +243,9 @@ class OnlPlatformBase(object): '-'.join(self.PLATFORM.split('-')[:-1]) ] for subdir in directories: - d = "/lib/modules/%s/%s" % (kv, subdir) + d = "/lib/modules/%s/onl/%s/%s" % (kv, + self.MANUFACTURER.lower(), + subdir) if os.path.isdir(d): for f in os.listdir(d): if f.endswith(".ko"):