2004-09-20 Yoshinori K. Okuji <okuji@enbug.org>
* docs/internals.texi (Internals): Changed to an appendix. * docs/grub.texi (@setchapternewpage): Changed to odd from off. (@contents): Moved to the beginning. (Future): Changed to an appendix.
This commit is contained in:
parent
8243a69201
commit
4022b1bcb5
5 changed files with 24 additions and 14 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2004-09-20 Yoshinori K. Okuji <okuji@enbug.org>
|
||||||
|
|
||||||
|
* docs/internals.texi (Internals): Changed to an appendix.
|
||||||
|
|
||||||
|
* docs/grub.texi (@setchapternewpage): Changed to odd from off.
|
||||||
|
(@contents): Moved to the beginning.
|
||||||
|
(Future): Changed to an appendix.
|
||||||
|
|
||||||
2004-08-17 Yoshinori K. Okuji <okuji@enbug.org>
|
2004-08-17 Yoshinori K. Okuji <okuji@enbug.org>
|
||||||
|
|
||||||
* stage2/cmdline.c (run_script): Fix a reversed conditional.
|
* stage2/cmdline.c (run_script): Fix a reversed conditional.
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
* mbchk: (grub)Invoking mbchk. Check for the format of a Multiboot kernel
|
* mbchk: (grub)Invoking mbchk. Check for the format of a Multiboot kernel
|
||||||
@end direntry
|
@end direntry
|
||||||
|
|
||||||
@setchapternewpage off
|
@setchapternewpage odd
|
||||||
|
|
||||||
@ifinfo
|
@ifinfo
|
||||||
Copyright @copyright{} 1999,2000,2001,2002,2004 Free Software Foundation, Inc.
|
Copyright @copyright{} 1999,2000,2001,2002,2004 Free Software Foundation, Inc.
|
||||||
|
@ -83,6 +83,9 @@ except that this permission notice may be stated in a translation approved
|
||||||
by Free Software Foundation.
|
by Free Software Foundation.
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
|
@c Output the table of contents at the beginning.
|
||||||
|
@contents
|
||||||
|
|
||||||
@finalout
|
@finalout
|
||||||
@headings double
|
@headings double
|
||||||
|
|
||||||
|
@ -1124,8 +1127,8 @@ try the new kernel only once and boot the old kernel after that.
|
||||||
|
|
||||||
First, modify your configuration file. Here is an example:
|
First, modify your configuration file. Here is an example:
|
||||||
|
|
||||||
@group
|
|
||||||
@example
|
@example
|
||||||
|
@group
|
||||||
default saved # This is important!!!
|
default saved # This is important!!!
|
||||||
timeout 10
|
timeout 10
|
||||||
|
|
||||||
|
@ -1138,8 +1141,8 @@ title the new kernel
|
||||||
root (hd0,0)
|
root (hd0,0)
|
||||||
kernel /new_kernel
|
kernel /new_kernel
|
||||||
savedefault 0 # This is important!!!
|
savedefault 0 # This is important!!!
|
||||||
@end example
|
|
||||||
@end group
|
@end group
|
||||||
|
@end example
|
||||||
|
|
||||||
Note that this configuration file uses @samp{default saved}
|
Note that this configuration file uses @samp{default saved}
|
||||||
(@pxref{default}) at the head and @samp{savedefault 0}
|
(@pxref{default}) at the head and @samp{savedefault 0}
|
||||||
|
@ -1186,8 +1189,8 @@ Then you may want GRUB to boot the first system which is bootable
|
||||||
among @samp{A}, @samp{B} and @samp{C}. A configuration file can be
|
among @samp{A}, @samp{B} and @samp{C}. A configuration file can be
|
||||||
written in this way:
|
written in this way:
|
||||||
|
|
||||||
@group
|
|
||||||
@example
|
@example
|
||||||
|
@group
|
||||||
default saved # This is important!!!
|
default saved # This is important!!!
|
||||||
timeout 10
|
timeout 10
|
||||||
fallback 1 2 # This is important!!!
|
fallback 1 2 # This is important!!!
|
||||||
|
@ -1206,8 +1209,8 @@ title C
|
||||||
root (hd2,0)
|
root (hd2,0)
|
||||||
kernel /kernel
|
kernel /kernel
|
||||||
savedefault
|
savedefault
|
||||||
@end example
|
|
||||||
@end group
|
@end group
|
||||||
|
@end example
|
||||||
|
|
||||||
Note that @samp{default saved} (@pxref{default}), @samp{fallback 1 2}
|
Note that @samp{default saved} (@pxref{default}), @samp{fallback 1 2}
|
||||||
and @samp{savedefault fallback} are used. GRUB will boot a saved entry
|
and @samp{savedefault fallback} are used. GRUB will boot a saved entry
|
||||||
|
@ -3783,8 +3786,8 @@ You must specify a single argument to @command{grub-set-default}. This
|
||||||
argument is normally the number of a default boot entry. For example,
|
argument is normally the number of a default boot entry. For example,
|
||||||
if you have this configuration file:
|
if you have this configuration file:
|
||||||
|
|
||||||
@group
|
|
||||||
@example
|
@example
|
||||||
|
@group
|
||||||
default saved
|
default saved
|
||||||
timeout 10
|
timeout 10
|
||||||
|
|
||||||
|
@ -3795,8 +3798,8 @@ root (hd0,0)
|
||||||
title GNU/Linux
|
title GNU/Linux
|
||||||
root (hd0,1)
|
root (hd0,1)
|
||||||
...
|
...
|
||||||
@end example
|
|
||||||
@end group
|
@end group
|
||||||
|
@end example
|
||||||
|
|
||||||
and if you want to set the next default boot entry to GNU/Linux, you
|
and if you want to set the next default boot entry to GNU/Linux, you
|
||||||
may execute this command:
|
may execute this command:
|
||||||
|
@ -3948,7 +3951,7 @@ Once we get your report, we will try to fix the bugs.
|
||||||
|
|
||||||
|
|
||||||
@node Future
|
@node Future
|
||||||
@chapter Where GRUB will go
|
@appendix Where GRUB will go
|
||||||
|
|
||||||
We started the next generation of GRUB, GRUB 2. This will include
|
We started the next generation of GRUB, GRUB 2. This will include
|
||||||
internationalization, dynamic module loading, real memory management,
|
internationalization, dynamic module loading, real memory management,
|
||||||
|
@ -3969,7 +3972,6 @@ homepage}.
|
||||||
@printindex cp
|
@printindex cp
|
||||||
|
|
||||||
|
|
||||||
@contents
|
|
||||||
@bye
|
@bye
|
||||||
|
|
||||||
Some notes:
|
Some notes:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@node Internals
|
@node Internals
|
||||||
@chapter Hacking GRUB
|
@appendix Hacking GRUB
|
||||||
|
|
||||||
This chapter documents the user-invisible aspect of GRUB.
|
This chapter documents the user-invisible aspect of GRUB.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@set UPDATED 16 July 2004
|
@set UPDATED 20 September 2004
|
||||||
@set UPDATED-MONTH July 2004
|
@set UPDATED-MONTH September 2004
|
||||||
@set EDITION 0.95
|
@set EDITION 0.95
|
||||||
@set VERSION 0.95
|
@set VERSION 0.95
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@set UPDATED 16 July 2004
|
@set UPDATED 20 September 2004
|
||||||
@set UPDATED-MONTH July 2004
|
@set UPDATED-MONTH September 2004
|
||||||
@set EDITION 0.95
|
@set EDITION 0.95
|
||||||
@set VERSION 0.95
|
@set VERSION 0.95
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue