19 lines
980 B
Text
19 lines
980 B
Text
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
||
|
|
# SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
# The SFS root. QTEE asks the normal world for absolute Android paths; the
|
||
|
|
# daemon maps each prefix onto one name below and refuses anything that
|
||
|
|
# escapes the root. The names are the mapping and cannot be renamed:
|
||
|
|
#
|
||
|
|
# /mnt/vendor/persist/data/ -> persist-data the templates
|
||
|
|
# /persist/data/ -> root3 the same directory
|
||
|
|
# /data/vendor/tzstorage/ -> tzstorage
|
||
|
|
# /data/misc/qsee/ -> misc
|
||
|
|
#
|
||
|
|
# persist-data and root3 are the same place on purpose: QTEE reaches the
|
||
|
|
# template store under both prefixes.
|
||
|
|
d /var/lib/fingerprintd 0700 root root -
|
||
|
|
d /var/lib/fingerprintd/sfs 0700 root root -
|
||
|
|
d /var/lib/fingerprintd/sfs/tzstorage 0700 root root -
|
||
|
|
d /var/lib/fingerprintd/sfs/misc 0700 root root -
|
||
|
|
L /var/lib/fingerprintd/sfs/persist-data - - - - /mnt/persist/data
|
||
|
|
L /var/lib/fingerprintd/sfs/root3 - - - - /mnt/persist/data
|