diff options
author | 2021-06-02 19:21:12 +0300 | |
---|---|---|
committer | 2021-06-02 19:21:16 +0300 | |
commit | 29f8576ceddedbe21b1beb7bddea8a9606632bae (patch) | |
tree | 40d7f45a665b2f16cbabd66f4a340d5f4390fd7c | |
parent | 753e19905088396893c3b626a31fb5bb6d2c1319 (diff) | |
download | meta-qcom-29f8576ceddedbe21b1beb7bddea8a9606632bae.tar.gz meta-qcom-29f8576ceddedbe21b1beb7bddea8a9606632bae.tar.bz2 meta-qcom-29f8576ceddedbe21b1beb7bddea8a9606632bae.zip |
fastrpc: mount-dsp: modprobe socinfo
Modprobe socinfo module before trying to read machine id.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-rw-r--r-- | recipes-support/fastrpc/fastrpc/mount-dsp.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-support/fastrpc/fastrpc/mount-dsp.sh b/recipes-support/fastrpc/fastrpc/mount-dsp.sh index 2c84bc4..a76e485 100644 --- a/recipes-support/fastrpc/fastrpc/mount-dsp.sh +++ b/recipes-support/fastrpc/fastrpc/mount-dsp.sh @@ -2,6 +2,8 @@ set -e +modprobe socinfo || true + if [ -r /sys/devices/soc0/machine ] ; then MACHINE=`cat /sys/devices/soc0/machine` case $MACHINE in |