mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-30 19:54:28 +01:00
git-subtree-dir: tools/packaging git-subtree-mainline:f818b46a41git-subtree-split:1f22d72d5dSigned-off-by: Peng Tao <bergwolf@hyper.sh>
18 lines
641 B
Plaintext
18 lines
641 B
Plaintext
# Enable 9p(fs) support - required for Kata to mount filesystems into the workload
|
|
|
|
CONFIG_NET_9P=y
|
|
CONFIG_NET_9P_VIRTIO=y
|
|
CONFIG_9P_FS=y
|
|
# NOTE - 9p client cacheing turned off?
|
|
# FIXME: check if that is right?
|
|
# https://github.com/kata-containers/packaging/issues/483
|
|
#CONFIG_9P_FSCACHE=y
|
|
CONFIG_NETWORK_FILESYSTEMS=y
|
|
# Q. Do we use the POSIX_ACL over 9p?
|
|
# FIXME: https://github.com/kata-containers/packaging/issues/483
|
|
CONFIG_9P_FS_POSIX_ACL=y
|
|
# NOTE - this adds security labels, such as used by SELinux - we may be able to
|
|
# disable this, for now.
|
|
# FIXME: https://github.com/kata-containers/packaging/issues/483
|
|
CONFIG_9P_FS_SECURITY=y
|