From nobody Thu Dec 18 09:49:01 2025 Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) (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 E5EFD19D07B for ; Wed, 18 Dec 2024 12:37:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.67.36.66 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734525447; cv=none; b=IlGYfNbIWJOs8h8UDyAhGIFJIwEvlJYpql7PlLyiSV0ysR2ZF6eOldfsKeJ6S0+5yqTcthdFuu5DnA4L7q/JDq2/ohAMC/jsLxkZIGr7rqwz0G9A473suqGcH49oJhuRLNZshth5NizMCN2C6zQcBlCIM0Y6jUSAApsTnFBZBd0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734525447; c=relaxed/simple; bh=wCQBynCyxVvDiHyjIJpBaMp9Cod7heoO661ni8HplGA=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=GjqlwrYsbqIkmQr75YyY7W77bG9uzwYGPoUz+fYg0Cu1xpiFvxB+Fv5Qlt47Wydib8Dt0wiPuqpqZTXQPUi654emq1t+M5HfS6EekMwd1WC0Uj3izvlFS8td6vmOLR9jEaqrYnAZmIS4WclepV2UNWNuZkDdh5PVoSlZ4GvYg0Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=posteo.de; spf=pass smtp.mailfrom=posteo.de; dkim=pass (2048-bit key) header.d=posteo.de header.i=@posteo.de header.b=LxwluTSx; arc=none smtp.client-ip=185.67.36.66 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=posteo.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=posteo.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=posteo.de header.i=@posteo.de header.b="LxwluTSx" Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 25B05240104 for ; Wed, 18 Dec 2024 13:37:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1734525437; bh=wCQBynCyxVvDiHyjIJpBaMp9Cod7heoO661ni8HplGA=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:From; b=LxwluTSxNgsmFgLdfQqAv0HOeuFK7SdBsBB01qZGSxWIU4d+/HYyDhsD4Z0Yj2+EE NWJf2ex8gVH3KLByP7rhk+T93fSqNsWv+cDfD1ng+98jNXYOKi3MpMThyIUyXtEUgN N3ADXqOmU6JswKuFPifno6EDvPA2lHnIJ4XOeQK90XiSL1KzyMjKkBAdZfnr98Wljg PMcNrCmPBnrdZX5GY8OiG8fH8fTzqy42x4eCuefFItzQlKQtV+gRwVePapgYWSwn2e vu3bQP4FpaCUP5P6GXdbOEMs6t2STfqfwgzOEYIHldd8Bhewfe1VoOfOEU9UnRX9kh NmxY/D3JQGKqg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4YCtVN31Kcz6tyl; Wed, 18 Dec 2024 13:37:16 +0100 (CET) From: Martin Kepplinger To: joel.granados@kernel.org, akpm@linux-foundation.org Cc: linux-kernel@vger.kernel.org, Martin Kepplinger Subject: [PATCH] init: fix removal warning for deprecated initrd loading Date: Wed, 18 Dec 2024 12:36:38 +0000 Message-Id: <20241218123638.34907-1-martink@posteo.de> 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 Content-Type: text/plain; charset="utf-8" This won't be removed in 2021, no matter how hard we try. Signed-off-by: Martin Kepplinger --- init/do_mounts_initrd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c index 22c7f41ff642..f86ef92a6c46 100644 --- a/init/do_mounts_initrd.c +++ b/init/do_mounts_initrd.c @@ -89,7 +89,7 @@ static void __init handle_initrd(char *root_device_name) extern char *envp_init[]; int error; =20 - pr_warn("using deprecated initrd support, will be removed in 2021.\n"); + pr_warn("using deprecated initrd support, will be removed soon.\n"); =20 real_root_dev =3D new_encode_dev(ROOT_DEV); create_dev("/dev/root.old", Root_RAM0); --=20 2.39.5