From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 9EA961898E0; Tue, 30 Jul 2024 17:13:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722359587; cv=none; b=epUZBoKeFwuCee3x7IO4YaPkvKI16HA5ZmSB+z6FLKY7/dtOhvyPelmB3t1l52uTVF7Lj+2GIvIh6ATok2hTesYvb2+OwJM8MAt++S0wEJXFg/6WHg2pRVtwwVengR/8BL6EjzdeNVXBeV4lt8sQ7zVaoue8s0vzFxDL6TatZuo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722359587; c=relaxed/simple; bh=qfxqXJ6FOtbg9NQY3D4HZbzdNH2LhIrj6YOLsZfgQN4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=n1ZthQ+RnSIvxfFU9LKpFC7ctAs8V6ALMxcOzyb1BrSOkQR1StA3oFiIJSKeX2+BWxhuzqifFrZMW4UBmY7lyhKZPxcq78j0W3Hyjv9qc+eUE5HAIiwLJS3t/tuaHhF8vR///v0cTy702FXZN/G2ghGev2B+kR3L/ZxgWbxHGxg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WNScDlSr; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="WNScDlSr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10DE8C32782; Tue, 30 Jul 2024 17:13:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1722359587; bh=qfxqXJ6FOtbg9NQY3D4HZbzdNH2LhIrj6YOLsZfgQN4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WNScDlSrpomihb8HO+ftJsaCUJyrZuKG3ZqH3q+jbkgfGpm9M3Ec7LLEx9mwRLg1v zQImU/NJxIzl6eTqtrXAvJNlP7yHxAH777Y13kl2m4nt+MRhgZ4XVwypYf8jnEtO5T x4tKAw+Ji9Uem3BMdvOhkHs95/lhPO/GlhKK3ErY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lucas Stach , Helge Deller , Fabio Estevam Subject: [PATCH 6.6 505/568] video: logo: Drop full path of the input filename in generated file Date: Tue, 30 Jul 2024 17:50:12 +0200 Message-ID: <20240730151659.765766964@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240730151639.792277039@linuxfoundation.org> References: <20240730151639.792277039@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lucas Stach commit fb3b9c2d217f1f51fffe19fc0f4eaf55e2d4ea4f upstream. Avoid this Yocto build warning to make build reproducible: WARNING: linux-foo-6.8-r0 do_package_qa: QA Issue: File /usr/src/debug/linux-foo/6.8-r0/drivers/video/logo/logo_linux_clut224.c in package linux-foo-src contains reference to TMPDIR Helge modified the patch to drop the whole line. Signed-off-by: Lucas Stach Signed-off-by: Helge Deller Cc: Fabio Estevam Signed-off-by: Greg Kroah-Hartman --- drivers/video/logo/pnmtologo.c | 2 -- 1 file changed, 2 deletions(-) --- a/drivers/video/logo/pnmtologo.c +++ b/drivers/video/logo/pnmtologo.c @@ -235,8 +235,6 @@ static void write_header(void) fputs("/*\n", out); fputs(" * DO NOT EDIT THIS FILE!\n", out); fputs(" *\n", out); - fprintf(out, " * It was automatically generated from %s\n", filename); - fputs(" *\n", out); fprintf(out, " * Linux logo %s\n", logoname); fputs(" */\n\n", out); fputs("#include \n\n", out);