aboutsummaryrefslogblamecommitdiff
path: root/rootdir/bin/vendor_modprobe.sh
blob: 8f2da1f236cb79802a50c8426f93376b5d147414 (plain) (tree)
1
2
3
4
5
6
7
8






                                                                              
                                   



                                           






                                                           
#! /vendor/bin/sh
#=============================================================================
# Copyright (c) 2019-2020 Qualcomm Technologies, Inc.
# All Rights Reserved.
# Confidential and Proprietary - Qualcomm Technologies, Inc.
#=============================================================================

MODULES_PATH="/vendor/lib/modules/"

MODPROBE="/vendor/bin/modprobe"
MODULES=`${MODPROBE} -d ${MODULES_PATH} -l`

# Iterate over module list and modprobe them in background.
for MODULE in ${MODULES}; do
	${MODPROBE} -a -b -d ${MODULES_PATH} ${MODULE} &
done

# Wait until all the modprobes are finished
wait