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.

84 lines
2.3 KiB

  1. if PACKAGE_docker-ce
  2. config DOCKER_KERNEL_OPTIONS
  3. bool "Enable Basic kernel support for Docker"
  4. default n
  5. select KERNEL_CGROUPS
  6. select KERNEL_CGROUP_CPUACCT
  7. select KERNEL_CGROUP_SCHED
  8. select KERNEL_NAMESPACES
  9. select KERNEL_CPUSETS
  10. select KERNEL_MEMCG
  11. select KERNEL_KEYS
  12. select KERNEL_LXC_MISC
  13. select KERNEL_POSIX_MQUEUE
  14. help
  15. Select needed kernel options for Docker. Options include
  16. cgroups, namespaces and other miscellaneous options.
  17. see also https://github.com/docker/engine/blob/master/contrib/check-config.sh
  18. config DOCKER_SECCOMP
  19. bool "Enable support for seccomp in Docker"
  20. default n
  21. select KERNEL_SECCOMP
  22. select PACKAGE_libseccomp
  23. help
  24. Build Docker with support for seccomp filters.
  25. Select libseccomp which also pulls-in the needed kernel features.
  26. config DOCKER_RES_SHAPE
  27. bool "Enables support for resource shaping"
  28. default n
  29. select KERNEL_MEMCG_SWAP
  30. select KERNEL_MEMCG_SWAP_ENABLED
  31. select KERNEL_BLK_DEV_THROTTLING
  32. select KERNEL_CGROUP_PERF
  33. select KERNEL_FAIR_GROUP_SCHED
  34. select KERNEL_CFS_BANDWIDTH
  35. select KERNEL_RT_GROUP_SCHED
  36. menu "Network"
  37. config DOCKER_NET_OVERLAY
  38. bool "Enables the Overlay network feature"
  39. default n
  40. select PACKAGE_kmod-udptunnel4
  41. help
  42. Selects kernel options for the Overlay network feature.
  43. Includes udptunnel4
  44. config DOCKER_NET_ENCRYPT
  45. bool "Enable encrypted networking kernel support"
  46. depends on DOCKER_NET_OVERLAY
  47. default n
  48. select PACKAGE_kmod-ipsec
  49. select PACKAGE_kmod-ipsec4
  50. select PACKAGE_kmod-crypto-gcm
  51. select PACKAGE_kmod-crypto-ghash
  52. help
  53. Select needed kernel options for encrypted networking support.
  54. config DOCKER_NET_MACVLAN
  55. bool "Enables macvlan kernel support"
  56. default n
  57. select PACKAGE_kmod-macvlan
  58. select PACKAGE_kmod-dummy
  59. config DOCKER_NET_TFTP
  60. bool "Enable ftp/tftp client kernel support"
  61. default n
  62. select PACKAGE_kmod-nf-nathelper
  63. select PACKAGE_kmod-nf-nathelper-extra
  64. endmenu
  65. menu "Storage"
  66. config DOCKER_STO_EXT4
  67. bool "Enables support for ext3 or ext4 as the backing filesystem"
  68. default n
  69. select KERNEL_EXT4_FS_POSIX_ACL
  70. config DOCKER_STO_BTRFS
  71. bool "Enables support for btrfs as the backing filesystem"
  72. default n
  73. select PACKAGE_kmod-fs-btrfs
  74. select KERNEL_BTRFS_FS_POSIX_ACL
  75. endmenu
  76. endif