Simplify mount check

This commit is contained in:
Lukas Barth 2020-03-10 15:28:32 +01:00
parent 494da1a8dc
commit 93ce496efc
1 changed files with 1 additions and 2 deletions

View File

@ -541,8 +541,7 @@ if [ -c /dev/dsm ];then
chown system:system /data/sec_storage_data
chcon -R u:object_r:teecd_data_file:s0 /data/sec_storage_data
mount | grep " on /sec_storage " > /dev/null 2>&1
if [ "$?" -eq "0" ]; then
if mount | grep -q " on /sec_storage " ; then
# /sec_storage is already mounted by the vendor, don't try to create and mount it
# ourselves. However, some devices have /sec_storage owned by root, which means that
# the fingerprint daemon (running as system) cannot access it.