Re: problem with LOCAL_MODULES

From: Warner Losh <imp_at_bsdimp.com>
Date: Fri, 30 Aug 2019 11:47:51 -0600
On Fri, Aug 30, 2019 at 11:42 AM Kyle Evans <kevans_at_freebsd.org> wrote:

> On Fri, Aug 16, 2019 at 7:38 PM John Baldwin <jhb_at_freebsd.org> wrote:
> >
> > On 8/16/19 3:05 AM, Gary Jennejohn wrote:
> > > I tried to build a kernel today and it failed in modules-all even
> > > though I had LOCAL_MODULES="" in /etc/src.conf, as recommended by
> > > jhb.
> > >
> > > That's wrong.  It has to be LOCAL_MODULES=, otherwise
> > > /sys/conf/kern.post.mk seems to conclude that there should be a
> > > module under /usr/local/sys/modules with the name "".
> >
> > I think this will permit both versions to work:
> >
> > Index: sys/conf/kern.post.mk
> > ===================================================================
> > --- kern.post.mk        (revision 351151)
> > +++ kern.post.mk        (working copy)
> > _at__at_ -76,6 +76,7 _at__at_ modules-${target}:
> >         cd $S/modules; ${MKMODULESENV} ${MAKE} \
> >             ${target:S/^reinstall$/install/:S/^clobber$/cleandir/}
> >  .endif
> > +.if !empty(LOCAL_MODULES)
> >  .for module in ${LOCAL_MODULES}
> >         _at_${ECHODIR} "===> ${module}
> (${target:S/^reinstall$/install/:S/^clobber$/cleandir/})"
> >         _at_cd ${LOCAL_MODULES_DIR}/${module}; ${MKMODULESENV} ${MAKE} \
> > _at__at_ -83,6 +84,7 _at__at_ modules-${target}:
> >             ${target:S/^reinstall$/install/:S/^clobber$/cleandir/}
> >  .endfor
> >  .endif
> > +.endif
> >  .endfor
> >
> >  # Handle ports (as defined by the user) that build kernel modules
> >
>
> I think I'd like to see this with !empty(LOCAL_MODULES) &&
> EXISTS(${LOCAL_MODULES_DIR}) or maybe just the latter condition to
> prevent accidental foot-shooting... I was testing a problem with doing
> this stuff in a poudriere build for swills_at_ and set LOCAL_MODULES=""
> only to get an error because LOCAL_MODULES_DIR doesn't yet exist on
> the machine I was testing with -- which we can trivially avoid.
>

There's also an unfortunate interaction with MODULES_OVERRIDE="" in that
the local modules are built / installed. This breaks the workflow I've used
in the past of 'make reinstallkernel MODULES_OVERRIDE=""' to get just the
kernel reinstalled w/o messing with the modules that I know are fine and
don't want to change. Not a huge deal, but still annoying.

Warner
Received on Fri Aug 30 2019 - 15:48:04 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:21 UTC