All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] README: Add kernel-modules for SCTP
@ 2020-05-20 15:25 william.c.roberts
  2020-05-26 13:06 ` Ondrej Mosnacek
  0 siblings, 1 reply; 4+ messages in thread
From: william.c.roberts @ 2020-05-20 15:25 UTC (permalink / raw)
  To: selinux; +Cc: William Roberts

From: William Roberts <william.c.roberts@intel.com>

Some Fedora images, notably the Fedora 32 cloud image, do not have the
kernel modules package installed by default. Thus SCTP isn't available.
Add the proper kernel-modules package for the running kernel.

Note: This applies to selinux-testsuite.

Signed-off-by: William Roberts <william.c.roberts@intel.com>
---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 1bec9fe85c91..1a4c70c40d56 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,8 @@ following command:
 		kernel-devel-$(uname -r) \
 		quota \
 		xfsprogs-devel \
-		libuuid-devel
+		libuuid-devel \
+		kernel-modules-$(uname -r)
 
 #### Debian
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] README: Add kernel-modules for SCTP
  2020-05-20 15:25 [PATCH] README: Add kernel-modules for SCTP william.c.roberts
@ 2020-05-26 13:06 ` Ondrej Mosnacek
  2020-05-26 17:15   ` William Roberts
  0 siblings, 1 reply; 4+ messages in thread
From: Ondrej Mosnacek @ 2020-05-26 13:06 UTC (permalink / raw)
  To: Roberts, William C; +Cc: SElinux list

On Wed, May 20, 2020 at 5:26 PM <william.c.roberts@intel.com> wrote:
> From: William Roberts <william.c.roberts@intel.com>
>
> Some Fedora images, notably the Fedora 32 cloud image, do not have the
> kernel modules package installed by default. Thus SCTP isn't available.
> Add the proper kernel-modules package for the running kernel.

Hm, I thought it wasn't possible to remove the kernel-modules package
for the running kernel, but it really is...

>
> Note: This applies to selinux-testsuite.
>
> Signed-off-by: William Roberts <william.c.roberts@intel.com>
> ---
>  README.md | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/README.md b/README.md
> index 1bec9fe85c91..1a4c70c40d56 100644
> --- a/README.md
> +++ b/README.md
> @@ -77,7 +77,8 @@ following command:
>                 kernel-devel-$(uname -r) \
>                 quota \
>                 xfsprogs-devel \
> -               libuuid-devel
> +               libuuid-devel \
> +               kernel-modules-$(uname -r)

Can you please put both the kernel-* packages together? I think it
would be best to always have both at the end so that anyone who uses
locally built kernels can easily copy the command without the two. Or
I can just amend your patch when applying if you're OK with that.

>
>  #### Debian
>
> --
> 2.17.1
>

-- 
Ondrej Mosnacek
Software Engineer, Platform Security - SELinux kernel,
Red Hat, Inc.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] README: Add kernel-modules for SCTP
  2020-05-26 13:06 ` Ondrej Mosnacek
@ 2020-05-26 17:15   ` William Roberts
  2020-05-27  9:17     ` Ondrej Mosnacek
  0 siblings, 1 reply; 4+ messages in thread
From: William Roberts @ 2020-05-26 17:15 UTC (permalink / raw)
  To: Ondrej Mosnacek; +Cc: Roberts, William C, SElinux list

On Tue, May 26, 2020 at 8:17 AM Ondrej Mosnacek <omosnace@redhat.com> wrote:
>
> On Wed, May 20, 2020 at 5:26 PM <william.c.roberts@intel.com> wrote:
> > From: William Roberts <william.c.roberts@intel.com>
> >
> > Some Fedora images, notably the Fedora 32 cloud image, do not have the
> > kernel modules package installed by default. Thus SCTP isn't available.
> > Add the proper kernel-modules package for the running kernel.
>
> Hm, I thought it wasn't possible to remove the kernel-modules package
> for the running kernel, but it really is...
>
> >
> > Note: This applies to selinux-testsuite.
> >
> > Signed-off-by: William Roberts <william.c.roberts@intel.com>
> > ---
> >  README.md | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/README.md b/README.md
> > index 1bec9fe85c91..1a4c70c40d56 100644
> > --- a/README.md
> > +++ b/README.md
> > @@ -77,7 +77,8 @@ following command:
> >                 kernel-devel-$(uname -r) \
> >                 quota \
> >                 xfsprogs-devel \
> > -               libuuid-devel
> > +               libuuid-devel \
> > +               kernel-modules-$(uname -r)
>
> Can you please put both the kernel-* packages together? I think it
> would be best to always have both at the end so that anyone who uses
> locally built kernels can easily copy the command without the two. Or
> I can just amend your patch when applying if you're OK with that.

Thats fine by me, thanks.

>
> >
> >  #### Debian
> >
> > --
> > 2.17.1
> >
>
> --
> Ondrej Mosnacek
> Software Engineer, Platform Security - SELinux kernel,
> Red Hat, Inc.
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] README: Add kernel-modules for SCTP
  2020-05-26 17:15   ` William Roberts
@ 2020-05-27  9:17     ` Ondrej Mosnacek
  0 siblings, 0 replies; 4+ messages in thread
From: Ondrej Mosnacek @ 2020-05-27  9:17 UTC (permalink / raw)
  To: William Roberts; +Cc: Roberts, William C, SElinux list

On Tue, May 26, 2020 at 7:15 PM William Roberts
<bill.c.roberts@gmail.com> wrote:
>
> On Tue, May 26, 2020 at 8:17 AM Ondrej Mosnacek <omosnace@redhat.com> wrote:
> >
> > On Wed, May 20, 2020 at 5:26 PM <william.c.roberts@intel.com> wrote:
> > > From: William Roberts <william.c.roberts@intel.com>
> > >
> > > Some Fedora images, notably the Fedora 32 cloud image, do not have the
> > > kernel modules package installed by default. Thus SCTP isn't available.
> > > Add the proper kernel-modules package for the running kernel.
> >
> > Hm, I thought it wasn't possible to remove the kernel-modules package
> > for the running kernel, but it really is...
> >
> > >
> > > Note: This applies to selinux-testsuite.
> > >
> > > Signed-off-by: William Roberts <william.c.roberts@intel.com>
> > > ---
> > >  README.md | 3 ++-
> > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/README.md b/README.md
> > > index 1bec9fe85c91..1a4c70c40d56 100644
> > > --- a/README.md
> > > +++ b/README.md
> > > @@ -77,7 +77,8 @@ following command:
> > >                 kernel-devel-$(uname -r) \
> > >                 quota \
> > >                 xfsprogs-devel \
> > > -               libuuid-devel
> > > +               libuuid-devel \
> > > +               kernel-modules-$(uname -r)
> >
> > Can you please put both the kernel-* packages together? I think it
> > would be best to always have both at the end so that anyone who uses
> > locally built kernels can easily copy the command without the two. Or
> > I can just amend your patch when applying if you're OK with that.
>
> Thats fine by me, thanks.

OK, the patch is now applied.

-- 
Ondrej Mosnacek
Software Engineer, Platform Security - SELinux kernel,
Red Hat, Inc.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-27  9:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-20 15:25 [PATCH] README: Add kernel-modules for SCTP william.c.roberts
2020-05-26 13:06 ` Ondrej Mosnacek
2020-05-26 17:15   ` William Roberts
2020-05-27  9:17     ` Ondrej Mosnacek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.