From owner-svn-src-head@freebsd.org Sat Oct 3 05:54:48 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ECA953FC7F9; Sat, 3 Oct 2020 05:54:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C3GKN5xfNz3cXs; Sat, 3 Oct 2020 05:54:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from freefall.freebsd.org (pool-100-8-53-238.nwrknj.fios.verizon.net [100.8.53.238]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: jkim/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 974AF26F5A; Sat, 3 Oct 2020 05:54:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Subject: Re: svn commit: r366381 - head/sys/modules/pwm To: Cy Schubert , Mateusz Guzik Cc: Emmanuel Vadot , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <202010021956.092Jus8I080666@repo.freebsd.org> <202010030412.0934C1Mu015832@slippy.cwsent.com> From: Jung-uk Kim Organization: FreeBSD.org Message-ID: <50246694-58eb-0a68-7c9f-309ae2777e08@FreeBSD.org> Date: Sat, 3 Oct 2020 01:54:48 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 MIME-Version: 1.0 In-Reply-To: <202010030412.0934C1Mu015832@slippy.cwsent.com> Content-Language: en-US Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.33 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Oct 2020 05:54:49 -0000 On 20. 10. 3., Cy Schubert wrote: > In message om> > , Mateusz Guzik writes: >> On 10/2/20, Emmanuel Vadot 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 (r36638 >> 0) >>> +++ head/sys/modules/pwm/Makefile Fri Oct 2 19:56:54 2020 (r36638 >> 1) >>> @@ -6,8 +6,10 @@ SUBDIR = \ >>> pwmbus \ >>> pwmc \ >>> >>> +.if ${MACHINE_ARCH} == "armv7" || ${MACHINE_ARCH} == "aarch64" >>> .if !empty(OPT_FDT) >>> SUBDIR += pwm_backlight >>> +.endif >>> .endif >>> >>> .include >> >> 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 > > And on amd64 my laptop is useless now. > > Oct 2 18:23:58 slippy kernel: link_elf_obj: symbol > acpi_video_get_backlight_type undefined > Oct 2 18:23:58 slippy kernel: Warning: memory type debugfsint leaked > memory on destroy (2 allocations, 80 bytes leaked). > Oct 2 18:23:59 slippy kernel: linker_load_file: /boot/modules/i915kms.ko - > unsupported file type > > And this is also after updating drm-current-kmod. Create files directory, add the attached patch there, and try again. Jung-uk Kim