mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-09 17:34:25 +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>
44 lines
983 B
Plaintext
44 lines
983 B
Plaintext
# Enable a whole bunch of filesystem related items
|
|
|
|
CONFIG_BLK_DEV_INITRD=y
|
|
|
|
# Required for hotplug block devices into Kata, using SCSI
|
|
CONFIG_BLK_DEV_LOOP=y
|
|
CONFIG_BLK_DEV_BSG=y
|
|
CONFIG_BLK_DEV_SD=y
|
|
|
|
# support initial ramdisk
|
|
CONFIG_RD_GZIP=y
|
|
CONFIG_FS_IOMAP=y
|
|
CONFIG_EXT4_FS=y
|
|
CONFIG_EXT4_USE_FOR_EXT2=y
|
|
CONFIG_EXT4_FS_POSIX_ACL=y
|
|
CONFIG_EXT4_FS_SECURITY=y
|
|
# FIXME - do we need journalling support in the container?
|
|
# https://github.com/kata-containers/packaging/issues/483
|
|
CONFIG_JBD2=y
|
|
CONFIG_FS_MBCACHE=y
|
|
CONFIG_XFS_FS=y
|
|
CONFIG_FS_POSIX_ACL=y
|
|
CONFIG_EXPORTFS=y
|
|
CONFIG_EXPORTFS_BLOCK_OPS=y
|
|
CONFIG_FILE_LOCKING=y
|
|
CONFIG_MANDATORY_FILE_LOCKING=y
|
|
# A bunch of these are required for systemd at least.
|
|
CONFIG_FSNOTIFY=y
|
|
CONFIG_DNOTIFY=y
|
|
CONFIG_INOTIFY_USER=y
|
|
CONFIG_FANOTIFY=y
|
|
CONFIG_AUTOFS4_FS=y
|
|
CONFIG_AUTOFS_FS=y
|
|
CONFIG_TMPFS=y
|
|
CONFIG_DEVTMPFS=y
|
|
CONFIG_DEVTMPFS_MOUNT=y
|
|
CONFIG_SIGNALFD=y
|
|
CONFIG_TIMERFD=y
|
|
CONFIG_EPOLL=y
|
|
CONFIG_FHANDLE=y
|
|
|
|
# We should support Async IO.
|
|
CONFIG_AIO=y
|