linux/generic/pending-5.15: add missing patch headers
[openwrt/staging/robimarko.git] / target / linux / generic / pending-5.15 / 500-fs_cdrom_dependencies.patch
1 From af7b91bcecce0eae24e90acd35d96ecee73e1407 Mon Sep 17 00:00:00 2001
2 From: OpenWrt community <openwrt-devel@lists.openwrt.org>
3 Date: Wed, 13 Jul 2022 12:21:15 +0200
4 Subject: [PATCH] fs: add cdrom dependency
5
6 ---
7 fs/hfs/Kconfig | 1 +
8 fs/hfsplus/Kconfig | 1 +
9 fs/isofs/Kconfig | 1 +
10 fs/udf/Kconfig | 1 +
11 4 files changed, 4 insertions(+)
12
13 diff --git a/fs/hfs/Kconfig b/fs/hfs/Kconfig
14 index 129926b5142d..e0d2c647aa07 100644
15 --- a/fs/hfs/Kconfig
16 +++ b/fs/hfs/Kconfig
17 @@ -2,6 +2,7 @@
18 config HFS_FS
19 tristate "Apple Macintosh file system support"
20 depends on BLOCK
21 + select CDROM
22 select NLS
23 help
24 If you say Y here, you will be able to mount Macintosh-formatted
25 diff --git a/fs/hfsplus/Kconfig b/fs/hfsplus/Kconfig
26 index 7d4229aecec0..648d91d1881f 100644
27 --- a/fs/hfsplus/Kconfig
28 +++ b/fs/hfsplus/Kconfig
29 @@ -2,6 +2,7 @@
30 config HFSPLUS_FS
31 tristate "Apple Extended HFS file system support"
32 depends on BLOCK
33 + select CDROM
34 select NLS
35 select NLS_UTF8
36 help
37 diff --git a/fs/isofs/Kconfig b/fs/isofs/Kconfig
38 index 08ffd37b9bb8..f74680379207 100644
39 --- a/fs/isofs/Kconfig
40 +++ b/fs/isofs/Kconfig
41 @@ -1,6 +1,7 @@
42 # SPDX-License-Identifier: GPL-2.0-only
43 config ISO9660_FS
44 tristate "ISO 9660 CDROM file system support"
45 + select CDROM
46 help
47 This is the standard file system used on CD-ROMs. It was previously
48 known as "High Sierra File System" and is called "hsfs" on other
49 diff --git a/fs/udf/Kconfig b/fs/udf/Kconfig
50 index 26e1a49f3ba7..3f85a084d2b5 100644
51 --- a/fs/udf/Kconfig
52 +++ b/fs/udf/Kconfig
53 @@ -1,6 +1,7 @@
54 # SPDX-License-Identifier: GPL-2.0-only
55 config UDF_FS
56 tristate "UDF file system support"
57 + select CDROM
58 select CRC_ITU_T
59 select NLS
60 help
61 --
62