Skip to content

Commit efc6f84

Browse files
committed
Update kernel.org links to use CDN.
1 parent 30ede1b commit efc6f84

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ libtool --mode=execute gdb --args ./cryptsetup --debug $@
119119
This will ensure that a properly compiled libcryptsetup file is used.
120120

121121
### Coding style
122-
Cryptsetup uses [Linux kernel coding style](https://www.kernel.org/doc/html/latest/process/coding-style.html) for libcryptsetup and tools (where applicable) with some additional notes:
122+
Cryptsetup uses [Linux kernel coding style](https://cdn.kernel.org/doc/html/latest/process/coding-style.html) for libcryptsetup and tools (where applicable) with some additional notes:
123123
- Use tabulators for indentation; the line should not exceed 100 characters with an 8-character tabulator. Otherwise, use a tab of any length. :-).
124124
- The minimal C standard required is C99.
125125
- The ``goto`` use is allowed only for error path (``goto out`` for common code path, ``goto err`` for specific error code path).

FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
LUKS1 and LUKS2.
3939

4040
The LUKS1 on-disk format specification is at
41-
https://www.kernel.org/pub/linux/utils/cryptsetup/LUKS_docs/on-disk-format.pdf
41+
https://cdn.kernel.org/pub/linux/utils/cryptsetup/LUKS_docs/on-disk-format.pdf
4242
The LUKS2 on-disk format specification is at
4343
https://gitlab.com/cryptsetup/LUKS2-docs
4444

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,28 +30,28 @@ which enables users to transport or migrate data seamlessly.
3030
* The latest version of the
3131
[LUKS2 format specification](https://gitlab.com/cryptsetup/LUKS2-docs).
3232
* The latest version of the
33-
[LUKS1 format specification](https://www.kernel.org/pub/linux/utils/cryptsetup/LUKS_docs/on-disk-format.pdf).
33+
[LUKS1 format specification](https://cdn.kernel.org/pub/linux/utils/cryptsetup/LUKS_docs/on-disk-format.pdf).
3434
* [Project home page](https://gitlab.com/cryptsetup/cryptsetup/).
3535
* [Frequently asked questions (FAQ)](https://gitlab.com/cryptsetup/cryptsetup/wikis/FrequentlyAskedQuestions)
3636

3737
Download
3838
--------
3939
Release notes and tarballs are available at
40-
[kernel.org](https://www.kernel.org/pub/linux/utils/cryptsetup/).
40+
[kernel.org](https://cdn.kernel.org/pub/linux/utils/cryptsetup/).
4141

4242
**The latest stable cryptsetup release version is 2.7.5**
43-
* [cryptsetup-2.7.5.tar.xz](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.5.tar.xz)
44-
* Signature [cryptsetup-2.7.5.tar.sign](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.5.tar.sign)
43+
* [cryptsetup-2.7.5.tar.xz](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.5.tar.xz)
44+
* Signature [cryptsetup-2.7.5.tar.sign](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.5.tar.sign)
4545
_(You need to decompress file first to check signature.)_
46-
* [Cryptsetup 2.7.5 Release Notes](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/v2.7.5-ReleaseNotes).
46+
* [Cryptsetup 2.7.5 Release Notes](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.7/v2.7.5-ReleaseNotes).
4747

4848
Previous versions
49-
* [Version 2.6.1](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.xz) -
50-
[Signature](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.sign) -
51-
[Release Notes](https://www.kernel.org/pub/linux/utils/cryptsetup/v2.5/v2.5.0-ReleaseNotes).
52-
* [Version 1.7.5](https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-1.7.5.tar.xz) -
53-
[Signature](https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-1.7.5.tar.sign) -
54-
[Release Notes](https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/v1.7.5-ReleaseNotes).
49+
* [Version 2.6.1](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.xz) -
50+
[Signature](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.sign) -
51+
[Release Notes](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.5/v2.5.0-ReleaseNotes).
52+
* [Version 1.7.5](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-1.7.5.tar.xz) -
53+
[Signature](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-1.7.5.tar.sign) -
54+
[Release Notes](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v1.7/v1.7.5-ReleaseNotes).
5555

5656
Source and API documentation
5757
----------------------------

misc/fedora/cryptsetup.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Obsoletes: %{name}-reencrypt <= %{version}
1818
Provides: %{name}-reencrypt = %{version}
1919

2020
%global upstream_version %{version_no_tilde}
21-
Source0: https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-%{upstream_version}.tar.xz
21+
Source0: https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-%{upstream_version}.tar.xz
2222

2323
%description
2424
The cryptsetup package contains a utility for setting up

0 commit comments

Comments
 (0)