mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-27 18:24:26 +01:00
Add the base common fragments and x86_64 specific fragments for the 4.19.x kernel. Signed-off-by: Graham Whaley <graham.whaley@intel.com>
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
|