commit 1580c9ff7740e4672aea7028a2bf06b9f5dc7b0c
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Jun 8 23:03:22 2026 +0200

    getty: Ignore --noclear passed by sysvinit since version 2.95-5

diff --git a/daemons/getty.c b/daemons/getty.c
index a6b394c2d..121026f93 100644
--- a/daemons/getty.c
+++ b/daemons/getty.c
@@ -170,6 +170,18 @@ main (int argc, char **argv)
 
   openlog ("getty", LOG_ODELAY|LOG_CONS|LOG_PID, LOG_AUTH);
 
+  while (argc >= 2)
+    {
+      if (strcmp(argv[1], "--noclear") == 0)
+	{
+	  /* We don't actually clear anyway.  */
+	  argc--;
+	  argv++;
+	}
+      else
+	break;
+    }
+
   /* Nothing to do .... */
   if (argc != 3)
     {
