You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.0 KiB

  1. # These options are mostly specified by https://github.com/moby/moby/blob/master/contrib/check-config.sh
  2. config DOCKER_CGROUP_OPTIONS
  3. bool "Enable available kernel support for CGroupsV1"
  4. default n
  5. depends on PACKAGE_dockerd
  6. select KERNEL_CGROUP_DEVICE
  7. select KERNEL_CGROUP_FREEZER
  8. select KERNEL_NET_CLS_CGROUP
  9. select KERNEL_CGROUP_NET_PRIO
  10. select PACKAGE_cgroupfs-mount
  11. help
  12. Selects kernel options to enable CGroups V1.
  13. config DOCKER_OPTIONAL_FEATURES
  14. bool "Enable optional kernel support for Docker"
  15. default n
  16. depends on PACKAGE_dockerd
  17. select KERNEL_MEMCG_SWAP_ENABLED
  18. select KERNEL_CFQ_GROUP_IOSCHED
  19. select KERNEL_CGROUP_PERF
  20. select KERNEL_CGROUP_HUGETLB
  21. help
  22. Select 'Optional Features' kernel options for Docker that are unselected.
  23. See https://github.com/moby/moby/blob/master/contrib/check-config.sh
  24. menu "Network"
  25. depends on PACKAGE_dockerd
  26. config DOCKER_NET_OVERLAY
  27. bool "Includes the Overlay network feature"
  28. default n
  29. select PACKAGE_kmod-vxlan
  30. help
  31. Selects kmod-vxlan for the Overlay network feature.
  32. config DOCKER_NET_ENCRYPT
  33. bool "Includes encrypted networking kernel modules"
  34. depends on DOCKER_NET_OVERLAY
  35. default n
  36. select PACKAGE_kmod-crypto-gcm
  37. select PACKAGE_kmod-crypto-seqiv
  38. select PACKAGE_kmod-crypto-ghash
  39. select PACKAGE_kmod-ipsec
  40. help
  41. Select needed kernel modules for encrypted networking support.
  42. config DOCKER_NET_MACVLAN
  43. bool "Includes macvlan kernel modules"
  44. default n
  45. select PACKAGE_kmod-macvlan
  46. select PACKAGE_kmod-dummy
  47. config DOCKER_NET_TFTP
  48. bool "Includes ftp/tftp client kernel modules"
  49. default n
  50. select PACKAGE_kmod-nf-nathelper
  51. select PACKAGE_kmod-nf-nathelper-extra
  52. endmenu
  53. menu "Storage"
  54. depends on PACKAGE_dockerd
  55. config DOCKER_STO_EXT4
  56. bool "Enables support for ext3 or ext4 as the backing filesystem"
  57. default n
  58. select KERNEL_EXT4_FS_POSIX_ACL
  59. select KERNEL_EXT4_FS_SECURITY
  60. config DOCKER_STO_BTRFS
  61. bool "Enables support for btrfs as the backing filesystem"
  62. default n
  63. select KERNEL_BTRFS_FS_POSIX_ACL
  64. endmenu