]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2002-04-17 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Wed, 17 Apr 2002 09:41:54 +0000 (09:41 +0000)
committerokuji <okuji@localhost>
Wed, 17 Apr 2002 09:41:54 +0000 (09:41 +0000)
* stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set
COUNT_LINES to -1, to disable the pager.

ChangeLog
stage2/builtins.c

index 17a2c47b0df700d264fa42d69c40ab2236ac4566..273916fefca98df55ab6e73986da8bdd1f9dbcf1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-17  Yoshinori K. Okuji  <okuji@enbug.org>
+
+       * stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set
+       COUNT_LINES to -1, to disable the pager.
+       
 2002-04-16  Yoshinori K. Okuji  <okuji@enbug.org>
 
        * docs/grub.texi (Obtaining and Building GRUB): Update the link
index 8425f573850ef1cc32136a18922a28de594de22a..8ac6656fdcb96eaa500c615dc4d156daa73490fc 100644 (file)
@@ -4080,6 +4080,9 @@ terminal_func (char *arg, int flags)
   if (terminal & TERMINAL_SERIAL)
     {
       int time1, time2 = -1;
+
+      /* XXX: Disable the pager.  */
+      count_lines = -1;
       
       /* Get current time.  */
       while ((time1 = getrtsecs ()) == 0xFF)