From patchwork Sun Sep 29 17:43:35 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bas Mevissen X-Patchwork-Id: 1990635 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=bombadil.20210309 header.b=tkNhmbbq; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:3::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=patchwork.ozlabs.org) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4XGs8F3DyXz1xt8 for ; Mon, 30 Sep 2024 03:46:36 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type:List-Help: Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:From:List-Post:List-Id: Message-ID:MIME-Version:Subject:To:Date:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=GssdYQ/V+F7u3J/GZTtHVoJ/2qO/tmlkm/5kr5PyJ18=; b=tkNhmbbqX3mqIkZ7ctJ5ow8myx iAF2sE/TT5FHtjL2FPHTmYdZqqsGWHPfbMzz6zuCukdQT0Tp0daY6R1+CHPQMyMcNjvFHMD9S3p3t 1As0gwIoPh9j2LGVAnMeDMxxyTcgIcqg51o5hWIcfeQQq+yv6YHdPbz6njXFEm8eZ213QK+mbx7t1 6logJ/8qRT0+wmFGRnyoX7atrzM2VFdxOhCR6elbgG+ccN5fV92Y7bHdGdkO5GeV6KSOOpOiyQzEZ PqqT7ymRLYGz4VO2Uv0RRSiupJYCZUossf//vdHxcNNSDq6zMtBhhJ5hHgzoyeK7+GM1/2I+VOmyc /YCu/R5w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1suxxv-0000000F81K-1oB3; Sun, 29 Sep 2024 17:44:15 +0000 Date: Sun, 29 Sep 2024 19:43:35 +0200 To: OpenWrt Development List Subject: Commit "mt76: update to Git HEAD (2024-09-29)" causing warning on missing dependency on kmod-mt7996 MIME-Version: 1.0 Message-ID: List-Id: OpenWrt Development List List-Post: X-Patchwork-Original-From: Bas Mevissen via openwrt-devel From: Bas Mevissen Precedence: list X-Mailman-Version: 2.1.34 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: Bas Mevissen List-Help: Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software. Hi, The commit "mt76: update to Git HEAD (2024-09-29)" (2f7d22dc6fbb9532b82522c4a78434a07f9d8fb1) causes the following warning to be introduced: > WARNING: Makefile 'package/kernel/mt76/Makefile' has a dependency on 'kmod-mt7996', which does not exist This is due to the following snippet: diff --git a/package/kernel/mt76/Makefile b/package/kernel/mt76/Makefile index 4d808c96b3..872dec0e76 100644 --- a/package/kernel/mt76/Makefile +++ b/package/kernel/mt76/Makefile @@ -8,9 +8,9 @@ PKG_LICENSE_FILES:= PKG_SOURCE_URL:=https://github.com/openwrt/mt76 PKG_SOURCE_PROTO:=git -PKG_SOURCE_DATE:=2024-09-05 -PKG_SOURCE_VERSION:=65cc3daf2a332cc658e9f7438cdadde4392e672e -PKG_MIRROR_HASH:=c29c4f883051a6360119156a03e010ac11573011b23d9e873f83c720600970e7 +PKG_SOURCE_DATE:=2024-09-29 +PKG_SOURCE_VERSION:=680bc70f161fde0f167e2ae50c771be4775eb50a +PKG_MIRROR_HASH:=bcdb95e40cfceba56a565ad6b6d9f92a122e7230d0f7f950b3d39e4280723cca PKG_MAINTAINER:=Felix Fietkau PKG_USE_NINJA:=0 @@ -323,10 +323,34 @@ define KernelPackage/mt7996e AUTOLOAD:=$(call AutoProbe,mt7996e) endef +define KernelPackage/mt7992-firmware + $(KernelPackage/mt76-default) + TITLE:=MediaTek MT7992 firmware + DEPENDS+=+kmod-mt7996 +endef Shouldn't the second last line read "+ DEPENDS+=+kmod-mt7996e" instead? Best Regards, Bas.