Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Oct 2020 10:33:41 +0200
From:      Emmanuel Vadot <manu@bidouilliste.com>
To:        Mateusz Guzik <mjguzik@gmail.com>
Cc:        Emmanuel Vadot <manu@freebsd.org>, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r366381 - head/sys/modules/pwm
Message-ID:  <20201003103341.51a1cd6bc175c73a7e60dc2c@bidouilliste.com>
In-Reply-To: <CAGudoHECuyebLK5197TBV4MXAHOhTWE0B5yNBMvWRPxy5zN7fQ@mail.gmail.com>
References:  <202010021956.092Jus8I080666@repo.freebsd.org> <CAGudoHECuyebLK5197TBV4MXAHOhTWE0B5yNBMvWRPxy5zN7fQ@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 3 Oct 2020 05:47:22 +0200
Mateusz Guzik <mjguzik@gmail.com> wrote:

> On 10/2/20, Emmanuel Vadot <manu@freebsd.org> wrote:
> > Author: manu
> > Date: Fri Oct  2 19:56:54 2020
> > New Revision: 366381
> > URL: https://svnweb.freebsd.org/changeset/base/366381
> >
> > Log:
> >   pwm_backlight: Restrict module to armv7 and aarch64
> >
> >   Both powerpc64 and riscv uses fdt but don't use EXT_RESOURCES.
> >
> >   Reported by:	jenkins
> >
> > Modified:
> >   head/sys/modules/pwm/Makefile
> >
> > Modified: head/sys/modules/pwm/Makefile
> > ==============================================================================
> > --- head/sys/modules/pwm/Makefile	Fri Oct  2 19:16:06 2020	(r366380)
> > +++ head/sys/modules/pwm/Makefile	Fri Oct  2 19:56:54 2020	(r366381)
> > @@ -6,8 +6,10 @@ SUBDIR = \
> >  	pwmbus \
> >  	pwmc \
> >
> > +.if ${MACHINE_ARCH} == "armv7" || ${MACHINE_ARCH} == "aarch64"
> >  .if !empty(OPT_FDT)
> >  SUBDIR += pwm_backlight
> > +.endif
> >  .endif
> >
> >  .include <bsd.subdir.mk>
> 
> I don't know which commits are to blame, but the following is broken
> in tinderbox:
> arm GENERIC kernel failed, check _.arm.GENERIC for details
> arm GENERIC-NODEBUG kernel failed, check _.arm.GENERIC-NODEBUG for details
> arm TEGRA124 kernel failed, check _.arm.TEGRA124 for details
> arm ARMADA38X kernel failed, check _.arm.ARMADA38X for details
> arm VYBRID kernel failed, check _.arm.VYBRID for details
> arm GENERIC-MMCCAM kernel failed, check _.arm.GENERIC-MMCCAM for details
> arm LINT kernel failed, check _.arm.LINT for details
> arm IMX53 kernel failed, check _.arm.IMX53 for details
> arm IMX6 kernel failed, check _.arm.IMX6 for details
> arm EFIKA_MX kernel failed, check _.arm.EFIKA_MX for details
> arm ZEDBOARD kernel failed, check _.arm.ZEDBOARD for details
> 
> -- 
> Mateusz Guzik <mjguzik gmail.com>

 This is fixed now, sorry.

-- 
Emmanuel Vadot <manu@bidouilliste.com> <manu@freebsd.org>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20201003103341.51a1cd6bc175c73a7e60dc2c>