mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
d5bf46bbe8
OpenWRT's developer guide prefers having actual patches so they an be sent upstream more easily. However, in this case, Adding proper fields also allows for `git am` to properly function. Some of these patches are quite old, and lack much traceable history. This commit tries to rectify that, by digging in the history to find where and how it was first added. It is by no means perfect and also shows some patches that should have been long gone. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
52 lines
1.3 KiB
Diff
52 lines
1.3 KiB
Diff
From: Felix Fietkau <nbd@nbd.name>
|
|
Subject: fs: Add CDROM dependencies
|
|
|
|
Submitted-by: Felix Fietkau <nbd@nbd.name>
|
|
---
|
|
fs/hfs/Kconfig | 1 +
|
|
fs/hfsplus/Kconfig | 1 +
|
|
fs/isofs/Kconfig | 1 +
|
|
fs/udf/Kconfig | 1 +
|
|
4 files changed, 4 insertions(+)
|
|
|
|
--- a/fs/hfs/Kconfig
|
|
+++ b/fs/hfs/Kconfig
|
|
@@ -2,6 +2,7 @@
|
|
config HFS_FS
|
|
tristate "Apple Macintosh file system support"
|
|
depends on BLOCK
|
|
+ select CDROM
|
|
select NLS
|
|
help
|
|
If you say Y here, you will be able to mount Macintosh-formatted
|
|
--- a/fs/hfsplus/Kconfig
|
|
+++ b/fs/hfsplus/Kconfig
|
|
@@ -2,6 +2,7 @@
|
|
config HFSPLUS_FS
|
|
tristate "Apple Extended HFS file system support"
|
|
depends on BLOCK
|
|
+ select CDROM
|
|
select NLS
|
|
select NLS_UTF8
|
|
help
|
|
--- a/fs/isofs/Kconfig
|
|
+++ b/fs/isofs/Kconfig
|
|
@@ -1,6 +1,7 @@
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
config ISO9660_FS
|
|
tristate "ISO 9660 CDROM file system support"
|
|
+ select CDROM
|
|
help
|
|
This is the standard file system used on CD-ROMs. It was previously
|
|
known as "High Sierra File System" and is called "hsfs" on other
|
|
--- a/fs/udf/Kconfig
|
|
+++ b/fs/udf/Kconfig
|
|
@@ -1,6 +1,7 @@
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
config UDF_FS
|
|
tristate "UDF file system support"
|
|
+ select CDROM
|
|
select CRC_ITU_T
|
|
select NLS
|
|
help
|