[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Some documentation updates
From: |
Colin Watson |
Subject: |
[PATCH] Some documentation updates |
Date: |
Wed, 2 Sep 2009 10:06:52 +0100 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
I'm afraid I temporarily ran out of steam at this point, so there are
still lots of commands to go, but here's a start. Does this look OK?
2009-09-02 Colin Watson <address@hidden>
* docs/grub.texi: Describe one-based partition numbering.
Document acpi, blocklist, crc, export, insmod, keystatus, ls,
set, and unset commands.
Index: docs/grub.texi
===================================================================
--- docs/grub.texi (revision 2557)
+++ docs/grub.texi (working copy)
@@ -20,7 +20,7 @@
This manual is for GNU GRUB (version @value{VERSION},
@value{UPDATED}).
-Copyright @copyright{} 1999,2000,2001,2002,2004,2006,2008 Free Software
Foundation, Inc.
+Copyright @copyright{} 1999,2000,2001,2002,2004,2006,2008,2009 Free Software
Foundation, Inc.
@quotation
Permission is granted to copy, distribute and/or modify this document
@@ -356,25 +356,25 @@
disk.
@example
-(hd0,1)
+(hd0,2)
@end example
Here, @samp{hd} means it is a hard disk drive. The first integer
@samp{0} indicates the drive number, that is, the first hard disk, while
the second integer, @samp{1}, indicates the partition number (or the
address@hidden slice number in the BSD terminology). Once again, please note
-that the partition numbers are counted from @emph{zero}, not from
-one. This expression means the second partition of the first hard disk
-drive. In this case, GRUB uses one partition of the disk, instead of the
-whole disk.
address@hidden slice number in the BSD terminology). The partition numbers are
+counted from @emph{one}, not from zero (as was the case in previous
+versions of GRUB). This expression means the second partition of the
+first hard disk drive. In this case, GRUB uses one partition of the
+disk, instead of the whole disk.
@example
-(hd0,4)
+(hd0,5)
@end example
This specifies the first @dfn{extended partition} of the first hard disk
drive. Note that the partition numbers for extended partitions are
-counted from @samp{4}, regardless of the actual number of primary
+counted from @samp{5}, regardless of the actual number of primary
partitions on your hard disk.
@example
@@ -383,13 +383,13 @@
This means the BSD @samp{a} partition of the second hard disk. If you
need to specify which @sc{pc} slice number should be used, use something
-like this: @samp{(hd1,0,a)}. If the @sc{pc} slice number is omitted,
+like this: @samp{(hd1,1,a)}. If the @sc{pc} slice number is omitted,
GRUB searches for the first @sc{pc} slice which has a BSD @samp{a}
partition.
Of course, to actually access the disks or partitions with GRUB, you
need to use the device specification in a command, like @samp{root
-(fd0)} or @samp{unhide (hd0,2)}. To help you find out which number
+(fd0)} or @samp{unhide (hd0,3)}. To help you find out which number
specifies a partition you want, the GRUB command-line
(@pxref{Command-line interface}) options have argument
completion. This means that, for example, you only need to type
@@ -413,7 +413,7 @@
example:
@example
-(hd0,0)/vmlinuz
+(hd0,1)/vmlinuz
@end example
This specifies the file named @samp{vmlinuz}, found on the first
@@ -786,7 +786,7 @@
@end example
@var{part-num} represents the partition number of @var{device}, starting
-from zero for primary partitions and from four for extended partitions,
+from one for primary partitions and from five for extended partitions,
and @var{bsd-subpart-letter} represents the BSD disklabel subpartition,
such as @samp{a} or @samp{e}.
@@ -800,7 +800,7 @@
@end example
The syntax @samp{(hd0)} represents using the entire disk (or the
-MBR when installing GRUB), while the syntax @samp{(hd0,0)}
+MBR when installing GRUB), while the syntax @samp{(hd0,1)}
represents using the first partition of the disk (or the boot sector
of the partition when installing GRUB).
@@ -820,12 +820,12 @@
An absolute file name resembles a Unix absolute file name, using
@samp{/} for the directory separator (not @samp{\} as in DOS). One
-example is @samp{(hd0,0)/boot/grub/menu.lst}. This means the file
+example is @samp{(hd0,1)/boot/grub/menu.lst}. This means the file
@file{/boot/grub/menu.lst} in the first partition of the first hard
disk. If you omit the device name in an absolute file name, GRUB uses
GRUB's @dfn{root device} implicitly. So if you set the root device to,
-say, @samp{(hd1,0)} by the command @command{root} (@pxref{root}), then
address@hidden/boot/kernel} is the same as @code{(hd1,0)/boot/kernel}.
+say, @samp{(hd1,1)} by the command @command{root} (@pxref{root}), then
address@hidden/boot/kernel} is the same as @code{(hd1,1)/boot/kernel}.
@node Block list syntax
@@ -846,8 +846,8 @@
Like the file name syntax (@pxref{File name syntax}), if a blocklist
does not contain a device name, then GRUB uses GRUB's @dfn{root
-device}. So @code{(hd0,1)+1} is the same as @code{+1} when the root
-device is @samp{(hd0,1)}.
+device}. So @code{(hd0,2)+1} is the same as @code{+1} when the root
+device is @samp{(hd0,2)}.
@node Interface
@@ -1110,17 +1110,56 @@
(@pxref{help}).
@menu
+* acpi:: Load ACPI tables
+* blocklist:: Print a block list
* boot:: Start up your operating system
* cat:: Show the contents of a file
* chainloader:: Chain-load another boot loader
* cmp:: Compare two files
* configfile:: Load a configuration file
+* crc:: Calculate CRC32 checksums
+* export:: Export an environment variable
* halt:: Shut down your computer
* help:: Show help messages
+* insmod:: Insert a module
+* keystatus:: Check key modifier status
+* ls:: List devices or files
* reboot:: Reboot your computer
+* set:: Set an environment variable
+* unset:: Unset an environment variable
@end menu
address@hidden acpi
address@hidden acpi
+
address@hidden Command acpi address@hidden|@option{-2}] @
+ address@hidden,@dots{}}|@option{--load-only=table1,@dots{}}] @
+ address@hidden address@hidden @
+ address@hidden address@hidden @
+ address@hidden address@hidden @
+ filename @dots{}
+Modern BIOS systems normally implement the Advanced Configuration and Power
+Interface (ACPI), and define various tables that describe the interface
+between an ACPI-compliant operating system and the firmware. In some cases,
+the tables provided by default only work well with certain operating
+systems, and it may be necessary to replace some of them.
+
+Normally, this command will replace the Root System Description Pointer
+(RSDP) in the Extended BIOS Data Area to point to the new tables. If the
address@hidden option is used, the new tables will be known only to
+GRUB, but may be used by GRUB's EFI emulation.
address@hidden deffn
+
+
address@hidden blocklist
address@hidden blocklist
+
address@hidden Command blocklist file
+Print a block list (@pxref{Block list syntax}) for @var{file}.
address@hidden deffn
+
+
@node boot
@subsection boot
@@ -1187,6 +1226,23 @@
@end deffn
address@hidden crc
address@hidden crc
+
address@hidden Command crc file
+Display the CRC32 checksum of @var{file}.
address@hidden deffn
+
+
address@hidden export
address@hidden export
+
address@hidden Command export envvar
+Export the environment variable @var{envvar}. Exported variables are visible
+to subsidiary configuration files loaded using @command{configfile}.
address@hidden deffn
+
+
@node halt
@subsection halt
@@ -1212,6 +1268,44 @@
@end deffn
address@hidden insmod
address@hidden insmod
+
address@hidden Command insmod module
+Insert the dynamic GRUB module called @var{module}.
address@hidden deffn
+
+
address@hidden keystatus
address@hidden keystatus
+
address@hidden Command keystatus address@hidden address@hidden address@hidden
+Return true if the Shift, Control, or Alt modifier keys are held down, as
+requested by options. This is useful in scripting, to allow some user
+control over behaviour without having to wait for a keypress.
+
+Checking key modifier status is only supported on some platforms. If invoked
+without any options, the @command{keystatus} command returns true if and
+only if checking key modifier status is supported.
address@hidden deffn
+
+
address@hidden ls
address@hidden ls
+
address@hidden Command ls [arg]
+List devices or files.
+
+With no arguments, print all devices known to GRUB.
+
+If the argument is a device name enclosed in parentheses (@pxref{Device
+syntax}), then list all files at the root directory of that device.
+
+If the argument is a directory given as an absolute file name (@pxref{File
+name syntax}), then list the contents of that directory.
address@hidden deffn
+
+
@node reboot
@subsection reboot
@@ -1220,6 +1314,23 @@
@end deffn
address@hidden set
address@hidden set
+
address@hidden Command set [envvar=value]
+Set the environment variable @var{envvar} to @var{value}. If invoked with no
+arguments, print all environment variables with their values.
address@hidden deffn
+
+
address@hidden unset
address@hidden unset
+
address@hidden Command unset envvar
+Unset the environment variable @var{envvar}.
address@hidden deffn
+
+
@node Invoking grub-install
@chapter Invoking grub-install
--
Colin Watson address@hidden
- [PATCH] Some documentation updates,
Colin Watson <=