From nobody Thu Apr 9 14:09:21 2026 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E7F371531C1 for ; Sun, 8 Mar 2026 04:44:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772945047; cv=none; b=pKuThq1I4evMtovp2Nt0HDlMS0YAz5ukYf1ifw9BortgaiF662h0RJU6+6AvF+iIxCwNAt5C9LAu1K4hDufd0rJ7D2/HnLhz1fdTJEFPGcCakFBGJVcEVpAHuW1QqkOmRfKVDA3hAgzYW1tAOM5KWjHPZTX/kB4ZP524b/OuT4M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772945047; c=relaxed/simple; bh=BEPY31XRopedaqNS7+wBx1nQfYh0wICaNLCuQ20sGnQ=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=WHKFFRasL4DeG8DOdME+hq+DgWTl3M4KtocMsn2SR7qoI5xLOziF+Y7Rpbo+S3+k55V7WJ6aJgc5LGysGHXJJ+cpzUWBMjLWB73QMICsIdpw1fMJsY0GpoYIWhCeVSgr/S+kUQ1sjOKX9+0aolNa9p8ig8dxd0fexgkjk5B1IAw= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=N1f8wCWk; arc=none smtp.client-ip=170.10.129.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="N1f8wCWk" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1772945044; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=/tzKUblCF0tURXVep2oartxcy+yFAJCSL7GUTKu5zcA=; b=N1f8wCWkvyS5zOvrVDeSaJblDNTZfPn0rb9LuZ/y9Ns6a/NynHCkTh3wrdnVFdkvH9GlVk ZzQLJFfyDYtKvRdOI3VdKdEgtXp/Yf5pzvRxG8Il3JnfRk6ZGVeFzr7oAL5YYBs1ifiCTz TXS4LFTI8arM6Ixe0ymgR6igMH0xux4= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-571-MYFZZZJDPJqpiC_0NNJUBg-1; Sat, 07 Mar 2026 23:44:03 -0500 X-MC-Unique: MYFZZZJDPJqpiC_0NNJUBg-1 X-Mimecast-MFC-AGG-ID: MYFZZZJDPJqpiC_0NNJUBg_1772945041 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 91D1E1956089; Sun, 8 Mar 2026 04:44:01 +0000 (UTC) Received: from cmirabil.redhat.com (unknown [10.2.16.11]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 1E4DB30001BE; Sun, 8 Mar 2026 04:43:59 +0000 (UTC) From: Charles Mirabile To: linux-kernel@vger.kernel.org Cc: Charles Mirabile , linux-kbuild@vger.kernel.org, masahiroy@kernel.org, nathan@kernel.org, nicolas.schier@linux.dev, stable@vger.kernel.org Subject: [PATCH] Delete .builtin-dtbs.S when running make clean Date: Sat, 7 Mar 2026 23:43:30 -0500 Message-ID: <20260308044338.181403-1-cmirabil@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 Content-Type: text/plain; charset="utf-8" The makefile tries to delete a file named ".builtin-dtb.S" but the file created by scripts/Makefile.vmlinux is actually called ".builtin-dtbs.S". Fixes: 654102df2ac2a ("kbuild: add generic support for built-in boot DTBs") Cc: stable@vger.kernel.org Signed-off-by: Charles Mirabile Reviewed-by: Nicolas Schier --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d763c2c75cdbf..4d2a9d938f713 100644 --- a/Makefile +++ b/Makefile @@ -1578,7 +1578,7 @@ CLEAN_FILES +=3D vmlinux.symvers modules-only.symvers= \ modules.builtin.ranges vmlinux.o.map vmlinux.unstripped \ compile_commands.json rust/test \ rust-project.json .vmlinux.objs .vmlinux.export.c \ - .builtin-dtbs-list .builtin-dtb.S + .builtin-dtbs-list .builtin-dtbs.S =20 # Directories & files removed with 'make mrproper' MRPROPER_FILES +=3D include/config include/generated \ --=20 2.53.0