diff options
| author | 2023-07-06 03:51:59 +0000 | |
|---|---|---|
| committer | 2023-07-06 03:56:33 +0000 | |
| commit | c2bc148c275e883d158fb382cf79544bf6b8dfdf (patch) | |
| tree | 262ab1bef54eb3221716522d8cce35cedf3c12f4 | |
| parent | a694149b9fba63811fca00b685257f006f381dd4 (diff) | |
Checksum.java: fix links to fsverity documentation
These links were linking to the unrendered fsverity documentation file
on the old fscrypt development branch (not fsverity, and not the
mainline kernel). This development branch was moved several months ago,
and therefore these links are dead now.
Fix these links to link to the rendered documentation for the mainline
kernel.
Test: comment only change
Change-Id: I3460caaf0efa235425cc1e1ae62e0bc2a4503177
| -rw-r--r-- | core/java/android/content/pm/Checksum.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/pm/Checksum.java b/core/java/android/content/pm/Checksum.java index ff17496c7457..20967274d0e4 100644 --- a/core/java/android/content/pm/Checksum.java +++ b/core/java/android/content/pm/Checksum.java @@ -40,11 +40,11 @@ public final class Checksum implements Parcelable { /** * Root SHA256 hash of a 4K Merkle tree computed over all file bytes. * <a href="https://source.android.com/security/apksigning/v4">See APK Signature Scheme V4</a>. - * <a href="https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git/tree/Documentation/filesystems/fsverity.rst">See fs-verity</a>. + * <a href="https://www.kernel.org/doc/html/latest/filesystems/fsverity.html">See fs-verity</a>. * * Recommended for all new applications. * Can be used by kernel to enforce authenticity and integrity of the APK. - * <a href="https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git/tree/Documentation/filesystems/fsverity.rst#">See fs-verity for details</a> + * <a href="https://www.kernel.org/doc/html/latest/filesystems/fsverity.html">See fs-verity for details</a> * * @see PackageManager#requestChecksums */ |