vmtest: kbuild: enable Btrfs, ext4, and XFS

For some upcoming helpers (#218), we're going to want to test against a
few common filesystems.

Signed-off-by: Omar Sandoval <osandov@osandov.com>
This commit is contained in:
Omar Sandoval 2022-12-01 17:47:19 -08:00
parent 845ac5fceb
commit 7cb7ac0fc4

View File

@ -30,7 +30,7 @@ class KernelFlavor(NamedTuple):
config: str
def localversion(self) -> str:
localversion = "-vmtest14"
localversion = "-vmtest15"
# The default flavor should be the "latest" version.
localversion += ".1" if self.name == "default" else ".0"
localversion += self.name
@ -152,6 +152,11 @@ CONFIG_CGROUPS=y
CONFIG_IKCONFIG=m
CONFIG_IKCONFIG_PROC=y
# For filesystem tests.
CONFIG_BTRFS_FS=m
CONFIG_EXT4_FS=m
CONFIG_XFS_FS=m
# For net tests.
CONFIG_NAMESPACES=y