[Bug 397503] Re: Shouldn't draw anything on screen during timeout

Loïc Minier lool at dooz.org
Thu Jul 9 16:55:30 UTC 2009


I had implemented this in GRUB 1 as Ubuntu specific patches in the bzr repo, but had a bug in the part preventing the clear screen.  The issue was fixed by Michael Terry in private emails:
Your patch looked like this:

-  cls ();
-  setcursor (1);
+  if (!clean_boot)
+    {
+      cls ();
+      setcursor (1);
+    }

I changed it to be like:

-  cls ();
-  setcursor (1);
+  if (show_menu || !clean_boot)
+    {
+      cls ();
+      setcursor (1);
+    }

-- 
Shouldn't draw anything on screen during early boot
https://bugs.launchpad.net/bugs/397503
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs at lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs




More information about the universe-bugs mailing list