Message ID | 20230310165050.27749-1-stephen.smalley.work@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Ondrej Mosnáček |
Headers | show |
Series | [testsuite] defconfig: add FAT and GRE config options | expand |
On Fri, Mar 10, 2023 at 5:52 PM Stephen Smalley <stephen.smalley.work@gmail.com> wrote: > > These are required for some of the fat filesystem and sctp tests to run. > > Signed-off-by: Stephen Smalley <stephen.smalley.work@gmail.com> > --- > defconfig | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/defconfig b/defconfig > index ca7a877..2783c01 100644 > --- a/defconfig > +++ b/defconfig > @@ -42,6 +42,13 @@ CONFIG_IP_SCTP=m > CONFIG_BT=m > CONFIG_CRYPTO_USER_API=m > > +# Network protocol implementations. > +# These are enabled to run sctp ASCONF tests using a GRE tunnel > +CONFIG_NET_IPGRE_DEMUX=m > +CONFIG_NET_IPGRE=m > +CONFIG_NET_IPGRE_BROADCAST=y > +CONFIG_IPV6_GRE=m > + > # Netlink protocol implementations. > # These are enabled to test the netlink socket controls in > # tests/netlink_socket; they are not required for SELinux operation itself. > @@ -112,6 +119,7 @@ CONFIG_NFSD_V4_SECURITY_LABEL=y > CONFIG_XFS_FS=m > CONFIG_XFS_QUOTA=y > CONFIG_VFAT_FS=m > +CONFIG_FAT_DEFAULT_IOCHARSET="ascii" > > # watch_queue for key changes. > # They are not required for SELinux operation itself. > -- > 2.39.2 Applied, thanks! https://github.com/SELinuxProject/selinux-testsuite/commit/1c0b28e34eb7763190e3a87966cab82d9fcb50fa
diff --git a/defconfig b/defconfig index ca7a877..2783c01 100644 --- a/defconfig +++ b/defconfig @@ -42,6 +42,13 @@ CONFIG_IP_SCTP=m CONFIG_BT=m CONFIG_CRYPTO_USER_API=m +# Network protocol implementations. +# These are enabled to run sctp ASCONF tests using a GRE tunnel +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IPV6_GRE=m + # Netlink protocol implementations. # These are enabled to test the netlink socket controls in # tests/netlink_socket; they are not required for SELinux operation itself. @@ -112,6 +119,7 @@ CONFIG_NFSD_V4_SECURITY_LABEL=y CONFIG_XFS_FS=m CONFIG_XFS_QUOTA=y CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_IOCHARSET="ascii" # watch_queue for key changes. # They are not required for SELinux operation itself.
These are required for some of the fat filesystem and sctp tests to run. Signed-off-by: Stephen Smalley <stephen.smalley.work@gmail.com> --- defconfig | 8 ++++++++ 1 file changed, 8 insertions(+)