aboutsummaryrefslogtreecommitdiff
path: root/rootdir/bin/vendor_modprobe.sh
diff options
context:
space:
mode:
authorCosmin Tanislav <demonsingur@gmail.com>2021-09-20 06:46:02 +0300
committersinanmohd <pcmsinan@gmail.com>2023-01-05 21:27:38 +0530
commit9beed958f7112c2876cab55a69bea2db8cf07dfd (patch)
treed62420a4bf7425daadbed5eb8c83bd9f06950349 /rootdir/bin/vendor_modprobe.sh
parentf9d1de35dbf04d59e778683e4e5e03a23d016517 (diff)
veux: remove module loading from 5.4 gki directory
Change-Id: I591b4ae4bc0adaa5f57e19ccb5d06dd5f1a42fcd
Diffstat (limited to 'rootdir/bin/vendor_modprobe.sh')
-rwxr-xr-xrootdir/bin/vendor_modprobe.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/rootdir/bin/vendor_modprobe.sh b/rootdir/bin/vendor_modprobe.sh
index cb54050..8f2da1f 100755
--- a/rootdir/bin/vendor_modprobe.sh
+++ b/rootdir/bin/vendor_modprobe.sh
@@ -5,30 +5,11 @@
# Confidential and Proprietary - Qualcomm Technologies, Inc.
#=============================================================================
-#default to /vendor/lib/modules
MODULES_PATH="/vendor/lib/modules/"
-GKI_MOD_PATH="/vendor/lib/modules/5.4-gki"
MODPROBE="/vendor/bin/modprobe"
MODULES=`${MODPROBE} -d ${MODULES_PATH} -l`
-# Find the first non-blacklisted module and try
-# inserting it. If insertion fails the module is not
-# compatible with the current kernel. Change the modules
-# directory to gki.
-for MODULE in ${MODULES}; do
- cat ${MODULES_PATH}/modules.blocklist | grep $MODULE
- if [ $? -ne 0 ]; then
- break
- fi
-done
-
-${MODPROBE} -a -b -d ${MODULES_PATH} ${MODULE}
-if [ $? -ne 0 ];then
- MODULES_PATH=$GKI_MOD_PATH
- MODULES=`${MODPROBE} -d ${MODULES_PATH} -l`
-fi
-
# Iterate over module list and modprobe them in background.
for MODULE in ${MODULES}; do
${MODPROBE} -a -b -d ${MODULES_PATH} ${MODULE} &