17 lines
737 B
SYSTEMD
17 lines
737 B
SYSTEMD
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
||
|
|
# SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
# The Android persist partition. QTEE's own storage paths land here through
|
||
|
|
# the SFS root's persist-data/root3 symlinks, and the enrolled templates are
|
||
|
|
# the containers under data/ — the same place stock Android keeps them, which
|
||
|
|
# is not a choice: every container is sealed to a hardware anti-rollback
|
||
|
|
# counter, so a template cannot be relocated, copied or restored.
|
||
|
|
[Unit]
|
||
|
|
Description=Android persist partition
|
||
|
|
Documentation=https://forgejo.catcrafts.net/Catcrafts/fingerprintd
|
||
|
|
ConditionPathExists=/dev/disk/by-partlabel/persist
|
||
|
|
|
||
|
|
[Mount]
|
||
|
|
What=/dev/disk/by-partlabel/persist
|
||
|
|
Where=/mnt/persist
|
||
|
|
Type=ext4
|
||
|
|
Options=rw,nosuid,nodev,noexec
|