500-fs_cdrom_dependencies.patch 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. From af7b91bcecce0eae24e90acd35d96ecee73e1407 Mon Sep 17 00:00:00 2001
  2. From: OpenWrt community <[email protected]>
  3. Date: Wed, 13 Jul 2022 12:21:15 +0200
  4. Subject: [PATCH] fs: add cdrom dependency
  5. ---
  6. fs/hfs/Kconfig | 1 +
  7. fs/hfsplus/Kconfig | 1 +
  8. fs/isofs/Kconfig | 1 +
  9. fs/udf/Kconfig | 1 +
  10. 4 files changed, 4 insertions(+)
  11. --- a/fs/hfs/Kconfig
  12. +++ b/fs/hfs/Kconfig
  13. @@ -2,6 +2,7 @@
  14. config HFS_FS
  15. tristate "Apple Macintosh file system support"
  16. depends on BLOCK
  17. + select CDROM
  18. select NLS
  19. help
  20. If you say Y here, you will be able to mount Macintosh-formatted
  21. --- a/fs/hfsplus/Kconfig
  22. +++ b/fs/hfsplus/Kconfig
  23. @@ -2,6 +2,7 @@
  24. config HFSPLUS_FS
  25. tristate "Apple Extended HFS file system support"
  26. depends on BLOCK
  27. + select CDROM
  28. select NLS
  29. select NLS_UTF8
  30. help
  31. --- a/fs/isofs/Kconfig
  32. +++ b/fs/isofs/Kconfig
  33. @@ -1,6 +1,7 @@
  34. # SPDX-License-Identifier: GPL-2.0-only
  35. config ISO9660_FS
  36. tristate "ISO 9660 CDROM file system support"
  37. + select CDROM
  38. help
  39. This is the standard file system used on CD-ROMs. It was previously
  40. known as "High Sierra File System" and is called "hsfs" on other
  41. --- a/fs/udf/Kconfig
  42. +++ b/fs/udf/Kconfig
  43. @@ -1,6 +1,7 @@
  44. # SPDX-License-Identifier: GPL-2.0-only
  45. config UDF_FS
  46. tristate "UDF file system support"
  47. + select CDROM
  48. select CRC_ITU_T
  49. select NLS
  50. help